mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-01 01:53:23 -05:00
26 lines
404 B
C
26 lines
404 B
C
|
|
#ifndef __HTTPD_DAAP_H__
|
|
#define __HTTPD_DAAP_H__
|
|
|
|
#include "httpd.h"
|
|
|
|
int
|
|
daap_init(void);
|
|
|
|
void
|
|
daap_deinit(void);
|
|
|
|
void
|
|
daap_request(struct evhttp_request *req, struct httpd_uri_parsed *uri_parsed);
|
|
|
|
int
|
|
daap_is_request(const char *path);
|
|
|
|
int
|
|
daap_session_is_valid(int id);
|
|
|
|
struct evbuffer *
|
|
daap_reply_build(const char *uri, const char *user_agent, int is_remote);
|
|
|
|
#endif /* !__HTTPD_DAAP_H__ */
|