summaryrefslogtreecommitdiff
path: root/src/protocol_decoder/http/http.cpp
diff options
context:
space:
mode:
authorluwenpeng <[email protected]>2022-11-18 18:49:41 +0800
committerluwenpeng <[email protected]>2022-11-18 18:49:52 +0800
commit54375f7139e1585e66ace05184f56080529717c8 (patch)
tree30a73f2292a80a1a94cc51663f438515979250ba /src/protocol_decoder/http/http.cpp
parent7aa1710ed0ecb3ed480ae5c02f31d7f7dcbd5c23 (diff)
暂存HTTP decoder的代码,代码结构待整合dev-lwp
TSG-11629 stellar protocol decoder支持HTTP decoder TSG-11932 stellar http decoder支持mutil request/response in one packet TSG-11933 llhttp解析request时获取精确的http version TSG-12021 stellar http decoder支持decompress body data TSG-12022 stellar http decoder支持chunk模式
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)
-{
-}