diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2008-12-20 23:46:06 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2008-12-20 23:46:06 +0100 |
commit | 022e339b4417b119cc75fcb2cef057bfce41f8e8 (patch) | |
tree | 3fdb96c920a290556f83d0fe6ca0f9a810d9fb80 /src/auth.h | |
parent | 25e1cd690f1f9c939060294d092313481d5d06cd (diff) | |
parent | 9b532026d3fc5c379827351c4da8b219012cb1c7 (diff) |
merge with main
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__ */ |