diff options
Diffstat (limited to 'src/auth.h')
-rw-r--r-- | src/auth.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/auth.h b/src/auth.h new file mode 100644 index 00000000..8813fc37 --- /dev/null +++ b/src/auth.h @@ -0,0 +1,19 @@ +#ifndef __AUTH_H__ +#define __AUTH_H__ + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +#include "url.h" + + +char *a_Auth_get_auth_str(const DilloUrl *request_url); +int a_Auth_do_auth(Dlist *auth_string, const DilloUrl *url); +void a_Auth_init(void); + + +#ifdef __cplusplus +} +#endif /* __cplusplus */ +#endif /* !__AUTH_H__ */ |