mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-28 08:05:56 -05:00
709d99d4c4
Make it easier to add new parameters later, get rid of redundant code, clean up, align between httpd_xxx modules and introduce new bugs. Yes, the refactor got a bit out of hand.
20 lines
275 B
C
20 lines
275 B
C
|
|
#ifndef __HTTPD_DACP_H__
|
|
#define __HTTPD_DACP_H__
|
|
|
|
#include "httpd.h"
|
|
|
|
int
|
|
dacp_init(void);
|
|
|
|
void
|
|
dacp_deinit(void);
|
|
|
|
void
|
|
dacp_request(struct evhttp_request *req, struct httpd_uri_parsed *uri_parsed);
|
|
|
|
int
|
|
dacp_is_request(const char *path);
|
|
|
|
#endif /* !__HTTPD_DACP_H__ */
|