aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/internal.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/internal.c')
-rw-r--r--src/microhttpd/internal.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/microhttpd/internal.c b/src/microhttpd/internal.c
index dee21e9e..6f80b984 100644
--- a/src/microhttpd/internal.c
+++ b/src/microhttpd/internal.c
@@ -1,6 +1,7 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2007 Daniel Pittman and Christian Grothoff 3 Copyright (C) 2007 Daniel Pittman and Christian Grothoff
4 Copyright (C) 2015-2021 Evgeny Grin (Karlson2k)
4 5
5 This library is free software; you can redistribute it and/or 6 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 7 modify it under the terms of the GNU Lesser General Public
@@ -22,6 +23,7 @@
22 * @brief internal shared structures 23 * @brief internal shared structures
23 * @author Daniel Pittman 24 * @author Daniel Pittman
24 * @author Christian Grothoff 25 * @author Christian Grothoff
26 * @author Karlson2k (Evgeny Grin)
25 */ 27 */
26 28
27#include "internal.h" 29#include "internal.h"
@@ -51,8 +53,8 @@ MHD_state_to_string (enum MHD_CONNECTION_STATE state)
51 return "headers processed"; 53 return "headers processed";
52 case MHD_CONNECTION_CONTINUE_SENDING: 54 case MHD_CONNECTION_CONTINUE_SENDING:
53 return "continue sending"; 55 return "continue sending";
54 case MHD_CONNECTION_CONTINUE_SENT: 56 case MHD_CONNECTION_BODY_RECEIVING:
55 return "continue sent"; 57 return "body receiving";
56 case MHD_CONNECTION_BODY_RECEIVED: 58 case MHD_CONNECTION_BODY_RECEIVED:
57 return "body received"; 59 return "body received";
58 case MHD_CONNECTION_FOOTER_PART_RECEIVED: 60 case MHD_CONNECTION_FOOTER_PART_RECEIVED: