aboutsummaryrefslogtreecommitdiff
path: root/src/http_Steer.h
diff options
context:
space:
mode:
authorgoodale <goodale@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2000-09-15 12:45:27 +0000
committergoodale <goodale@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2000-09-15 12:45:27 +0000
commit9ca8518895939d3ae82c937bed7f2b545a9f9e39 (patch)
tree6a4f12a4f4c472bffac1dbffb2b5a877bf2c0beb /src/http_Steer.h
parent3c4f4b1e6a1de4d6e16a70af4d11fc11ddb11da9 (diff)
Made parallel aware.
Added stuff for parameter steering. See doc/Steering.txt. Added stuff for HTTP Basic authentication. See doc/Auth.txt. Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPD/trunk@9 1faa4e14-9dd3-4be0-9f0e-ffe519881164
Diffstat (limited to 'src/http_Steer.h')
-rw-r--r--src/http_Steer.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/http_Steer.h b/src/http_Steer.h
new file mode 100644
index 0000000..3c02842
--- /dev/null
+++ b/src/http_Steer.h
@@ -0,0 +1,27 @@
+ /*@@
+ @header http_Steer.h
+ @date Fri Sep 15 11:31:04 2000
+ @author Tom Goodale
+ @desc
+ Webserver parameter steering routines.
+ @enddesc
+ @version $Header$
+ @@*/
+
+#ifndef __HTTP_STEER_H__
+#define __HTTP_STEER_H__ 1
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+int HTTP_SteerQueue(const char *thorn, const char *parameter, const char *value);
+
+int HTTP_SteerDispatch(void);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __HTTP_STEER_H__ */