diff options
Diffstat (limited to 'blog.h')
-rw-r--r-- | blog.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,10 +1,12 @@ #ifndef BLOG_H #define BLOG_H +#define PASSWORD_FILE "/blog/password" + void read_post_data(void); char *find_post_data(char *key); -int verify_creds(const char *username, const char *password); +int authenticate(const char *username, const char *password); int handle_post(void); |