diff options
author | Stef Walter <stef@memberwebs.com> | 2004-05-07 17:52:22 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2004-05-07 17:52:22 +0000 |
commit | 0bc8575dbfb281f5f5e9fb530247d29ba1f296fc (patch) | |
tree | 4e0eda73d880c01e9434b4f1ebb52f513119269b /daemon/misc.c | |
parent | c9b851b3194bf4bff6059e9ff471d125afc39c0f (diff) |
Protocol:
- version added to initial Ready
- Added SET command
- Added 202 Accept response
Some structure changes
Diffstat (limited to 'daemon/misc.c')
-rw-r--r-- | daemon/misc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/daemon/misc.c b/daemon/misc.c index a38eda9..8e361be 100644 --- a/daemon/misc.c +++ b/daemon/misc.c @@ -81,7 +81,7 @@ void ha_message(int level, const char* msg, ...) * Header Functionality */ -ha_header_t* ha_findheader(ha_request_t* req, const char* name) +const ha_header_t* ha_findheader(const ha_request_t* req, const char* name) { int i; @@ -99,7 +99,7 @@ ha_header_t* ha_findheader(ha_request_t* req, const char* name) return NULL; } -const char* ha_getheader(ha_request_t* req, const char* name, const char* prefix) +const char* ha_getheader(const ha_request_t* req, const char* name, const char* prefix) { int i, l; |