mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-02 10:33:23 -05:00
23 lines
334 B
C
23 lines
334 B
C
|
|
#ifndef __HTTPD_DAAP_H__
|
|
#define __HTTPD_DAAP_H__
|
|
|
|
#include <event2/http.h>
|
|
|
|
int
|
|
daap_init(void);
|
|
|
|
void
|
|
daap_deinit(void);
|
|
|
|
void
|
|
daap_request(struct evhttp_request *req);
|
|
|
|
int
|
|
daap_is_request(struct evhttp_request *req, char *uri);
|
|
|
|
struct evbuffer *
|
|
daap_reply_build(char *full_uri, const char *ua);
|
|
|
|
#endif /* !__HTTPD_DAAP_H__ */
|