aboutsummaryrefslogtreecommitdiff
path: root/src/http.c
diff options
context:
space:
mode:
authorswhite <swhite@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2004-05-05 23:02:46 +0000
committerswhite <swhite@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2004-05-05 23:02:46 +0000
commit1eb98693ddf874f97953aaf17ce933f34a6f0ead (patch)
treee1f8a2e76e0049afe31550695b0c949b65081cb5 /src/http.c
parent4ef6de9fdeb4efdbc3630fdfd31682b8fcdd741d (diff)
Changed HTTPD function names in exported header files to be in better
conformance with Cactus standards: From To ---- -- HTTP_Send_OK_Header HTTP_SendOKHeader HTTP_Send_OK_Refresh_Header HTTP_SendOKRefreshHeader HTTP_Major_Version HTTP_MajorVersion HTTP_Minor_Version HTTP_MinorVersion HTTP_Arg_Name HTTP_ArgName git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPD/trunk@200 1faa4e14-9dd3-4be0-9f0e-ffe519881164
Diffstat (limited to 'src/http.c')
-rw-r--r--src/http.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/http.c b/src/http.c
index c9cdd4d..a2e2ff1 100644
--- a/src/http.c
+++ b/src/http.c
@@ -93,17 +93,17 @@ typedef struct httpRequestTag
#define BLANK_HTTPREQUEST {NULL, 0, NULL, NULL, NULL, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL }
/* Accessors for the httpRequest structure */
-unsigned int HTTP_Major_Version( const httpRequest *request )
+unsigned int HTTP_MajorVersion( const httpRequest *request )
{
return request->http_major_version;
}
-unsigned int HTTP_Minor_Version( const httpRequest *request )
+unsigned int HTTP_MinorVersion( const httpRequest *request )
{
return request->http_minor_version;
}
-unsigned int HTTP_Num_Arguments( const httpRequest *request )
+unsigned int HTTP_NumArguments( const httpRequest *request )
{
return request->n_arguments;
}
@@ -123,12 +123,12 @@ void HTTP_SetResidual( httpRequest *request, const char *residual )
request->residual = residual;
}
-const char * HTTP_Arg_Value( const httpArg *arg )
+const char * HTTP_ArgValue( const httpArg *arg )
{
return arg->value;
}
-const char * HTTP_Arg_Name( const httpArg *arg )
+const char * HTTP_ArgName( const httpArg *arg )
{
return arg->arg;
}