Use embedded evhttp

This commit is contained in:
Julien BLACHE
2009-05-02 17:58:38 +02:00
parent 6bce4e08ca
commit e4fe084619
10 changed files with 14 additions and 12 deletions

View File

@@ -20,6 +20,8 @@ mt_daapd_SOURCES = main.c daapd.h webserver.c \
filescanner.c filescanner.h \
filescanner_ffmpeg.c filescanner_urlfile.c filescanner_m3u.c \
mdns_avahi.c mdns_avahi.h \
evhttp/http.c evhttp/evhttp.h evhttp/strlcpy.c evhttp/log.c \
evhttp/http-internal.h evhttp/log.h evhttp/strlcpy-internal.h \
httpd.c httpd.h \
httpd_rsp.c httpd_rsp.h \
httpd_daap.c httpd_daap.h \

View File

@@ -32,7 +32,7 @@
#include <sys/queue.h>
#include <event.h>
#include <evhttp.h>
#include "evhttp/evhttp.h"
#include "daapd.h"
#include "err.h"

View File

@@ -3,7 +3,7 @@
#define __HTTPD_H__
#include <event.h>
#include <evhttp.h>
#include "evhttp/evhttp.h"
void

View File

@@ -35,7 +35,7 @@
#include <stdint.h>
#include <event.h>
#include <evhttp.h>
#include "evhttp/evhttp.h"
#include <avl.h>
#include "daapd.h"

View File

@@ -3,7 +3,7 @@
#define __HTTPD_DAAP_H__
#include <event.h>
#include <evhttp.h>
#include "evhttp/evhttp.h"
int
daap_init(void);

View File

@@ -33,7 +33,7 @@
#include <limits.h>
#include <event.h>
#include <evhttp.h>
#include "evhttp/evhttp.h"
#include <mxml.h>

View File

@@ -3,7 +3,7 @@
#define __HTTPD_RSP_H__
#include <event.h>
#include <evhttp.h>
#include "evhttp/evhttp.h"
int
rsp_init(void);

View File

@@ -34,7 +34,7 @@
#include <stdint.h>
#include <event.h>
#include <evhttp.h>
#include "evhttp/evhttp.h"
#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>

View File

@@ -2,7 +2,7 @@
#ifndef __TRANSCODE_H__
#define __TRANSCODE_H__
#include <evhttp.h>
#include "evhttp/evhttp.h"
struct transcode_ctx;