summaryrefslogtreecommitdiff
path: root/apps/include/netutils
diff options
context:
space:
mode:
Diffstat (limited to 'apps/include/netutils')
-rw-r--r--apps/include/netutils/httpd.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/include/netutils/httpd.h b/apps/include/netutils/httpd.h
index 031840802..20ddff278 100644
--- a/apps/include/netutils/httpd.h
+++ b/apps/include/netutils/httpd.h
@@ -109,6 +109,9 @@ struct httpd_state
{
char ht_buffer[HTTPD_IOBUFFER_SIZE]; /* recv() buffer */
char ht_filename[HTTPD_MAX_FILENAME]; /* filename from GET command */
+#ifndef CONFIG_NETUTILS_HTTPD_KEEPALIVE_DISABLE
+ bool ht_keepalive; /* Connection: keep-alive */
+#endif
struct httpd_fs_file ht_file; /* Fake file data to send */
int ht_sockfd; /* The socket descriptor from accept() */
char *ht_scriptptr;