summaryrefslogtreecommitdiff
path: root/src/protocol_decoder/http/http.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/protocol_decoder/http/http.cpp')
-rw-r--r--src/protocol_decoder/http/http.cpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/protocol_decoder/http/http.cpp b/src/protocol_decoder/http/http.cpp
deleted file mode 100644
index 9ff4166..0000000
--- a/src/protocol_decoder/http/http.cpp
+++ /dev/null
@@ -1,26 +0,0 @@
-#include <stddef.h>
-
-#include "session.h"
-#include "http.h"
-
-void http_entry(struct stellar_session *session, enum session_state state, int thread_id, void **ctx)
-{
-}
-
-struct http_decoder *http_session_get_decoder(struct stellar_session *http_session)
-{
- return NULL;
-}
-
-enum http_event http_decoder_get_event(struct http_decoder *decoder)
-{
- return HTTP_EVENT_NONE;
-}
-
-void http_decoder_fetch_request_line(struct http_decoder *decoder, struct http_request_line *request_line)
-{
-}
-
-void http_decoder_fetch_status_line(struct http_decoder *decoder, struct http_status_line *status_line)
-{
-}