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