2009-04-28 17:48:57 +02:00
|
|
|
|
|
|
|
#ifndef __HTTPD_DAAP_H__
|
|
|
|
#define __HTTPD_DAAP_H__
|
|
|
|
|
2017-11-04 21:24:42 +01:00
|
|
|
#include "httpd.h"
|
2009-04-28 17:48:57 +02:00
|
|
|
|
|
|
|
int
|
|
|
|
daap_init(void);
|
|
|
|
|
|
|
|
void
|
|
|
|
daap_deinit(void);
|
|
|
|
|
|
|
|
void
|
2017-11-04 21:24:42 +01:00
|
|
|
daap_request(struct evhttp_request *req, struct httpd_uri_parsed *uri_parsed);
|
2009-04-28 17:48:57 +02:00
|
|
|
|
|
|
|
int
|
2017-11-04 21:24:42 +01:00
|
|
|
daap_is_request(const char *path);
|
2009-04-28 17:48:57 +02:00
|
|
|
|
2017-10-26 23:01:07 +02:00
|
|
|
int
|
|
|
|
daap_session_is_valid(int id);
|
|
|
|
|
2014-08-20 00:21:48 +02:00
|
|
|
struct evbuffer *
|
2017-11-08 00:32:03 +01:00
|
|
|
daap_reply_build(const char *uri, const char *user_agent, int is_remote);
|
2014-08-20 00:21:48 +02:00
|
|
|
|
2009-04-28 17:48:57 +02:00
|
|
|
#endif /* !__HTTPD_DAAP_H__ */
|