[MINOR] declare process_session in session.h, not proto_http.h
diff --git a/include/proto/proto_http.h b/include/proto/proto_http.h
index 04e68a8..c723651 100644
--- a/include/proto/proto_http.h
+++ b/include/proto/proto_http.h
@@ -58,7 +58,6 @@
 #define HTTP_IS_VER_TOKEN(x) (http_is_ver_token[(unsigned char)(x)])
 
 int event_accept(int fd);
-void process_session(struct task *t, int *next);
 int process_cli(struct session *t);
 int process_srv_data(struct session *t);
 int process_srv_conn(struct session *t);
diff --git a/include/proto/session.h b/include/proto/session.h
index 0357757..ad0a57e 100644
--- a/include/proto/session.h
+++ b/include/proto/session.h
@@ -36,6 +36,7 @@
 
 void session_process_counters(struct session *s);
 void sess_change_server(struct session *sess, struct server *newsrv);
+void process_session(struct task *t, int *next);
 
 static void inline trace_term(struct session *s, unsigned int code)
 {