summaryrefslogtreecommitdiff
path: root/src/plugin.h
diff options
context:
space:
mode:
authorJan Kneschke <jan@kneschke.de>2005-08-15 09:46:23 +0000
committerJan Kneschke <jan@kneschke.de>2005-08-15 09:46:23 +0000
commitf926c361f9a436e4c0bd7d2eb2588f8d61264b15 (patch)
tree51c6e21ec1aed6c57b00ebc6c83a9c2010761060 /src/plugin.h
parent9238cad69ec65112d73d34da866fb6795c44b005 (diff)
downloadlighttpd-git-f926c361f9a436e4c0bd7d2eb2588f8d61264b15.tar.gz
..physical_path is gone and has ben replaced by subrequest_start
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-merge-1.4.x@532 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'src/plugin.h')
-rw-r--r--src/plugin.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/plugin.h b/src/plugin.h
index dd2b59a9..b43129a1 100644
--- a/src/plugin.h
+++ b/src/plugin.h
@@ -41,7 +41,6 @@ typedef struct {
handler_t (* handle_uri_raw) (server *srv, connection *con, void *p_d); /* after uri_raw is set */
handler_t (* handle_uri_clean) (server *srv, connection *con, void *p_d); /* after uri is set */
handler_t (* handle_docroot) (server *srv, connection *con, void *p_d); /* getting the document-root */
- handler_t (* handle_physical_path) (server *srv, connection *con, void *p_d); /* after the physical path is set */
handler_t (* handle_physical) (server *srv, connection *con, void *p_d); /* mapping url to physical path */
handler_t (* handle_request_done) (server *srv, connection *con, void *p_d); /* at the end of a request */
handler_t (* handle_connection_close)(server *srv, connection *con, void *p_d); /* at the end of a connection */
@@ -74,7 +73,6 @@ handler_t plugins_call_handle_docroot(server *srv, connection *con);
handler_t plugins_call_handle_physical(server *srv, connection *con);
handler_t plugins_call_handle_connection_close(server *srv, connection *con);
handler_t plugins_call_handle_joblist(server *srv, connection *con);
-handler_t plugins_call_handle_physical_path(server *srv, connection *con);
handler_t plugins_call_connection_reset(server *srv, connection *con);
handler_t plugins_call_handle_trigger(server *srv);