mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-27 15:45:56 -05:00
9ed810d9df
- move stuff around and clean up - put oauth out in own module like the other modules
19 lines
281 B
C
19 lines
281 B
C
#ifndef __HTTPD_OAUTH_H__
|
|
#define __HTTPD_OAUTH_H__
|
|
|
|
#include "httpd.h"
|
|
|
|
void
|
|
oauth_request(struct evhttp_request *req, struct httpd_uri_parsed *uri_parsed);
|
|
|
|
int
|
|
oauth_is_request(const char *path);
|
|
|
|
int
|
|
oauth_init(void);
|
|
|
|
void
|
|
oauth_deinit(void);
|
|
|
|
#endif /* !__HTTPD_OAUTH_H__ */
|