diff options
-rw-r--r-- | src/plugins/http/http.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/http/http.h b/src/plugins/http/http.h index d61ac0b08c7..d1e81ab0617 100644 --- a/src/plugins/http/http.h +++ b/src/plugins/http/http.h @@ -72,12 +72,12 @@ typedef struct #define http_token_lit(s) (s), sizeof (s) - 1 #define foreach_http_conn_state \ - _ (LISTEN, "listen") \ - _ (CONNECTING, "connecting") \ - _ (ESTABLISHED, "established") \ - _ (TRANSPORT_CLOSED, "transport-closed") \ - _ (APP_CLOSED, "app-closed") \ - _ (CLOSED, "closed") + _ (LISTEN, "LISTEN") \ + _ (CONNECTING, "CONNECTING") \ + _ (ESTABLISHED, "ESTABLISHED") \ + _ (TRANSPORT_CLOSED, "TRANSPORT-CLOSED") \ + _ (APP_CLOSED, "APP-CLOSED") \ + _ (CLOSED, "CLOSED") typedef enum http_conn_state_ { |