2016-08-31 21:46:36 -05:00
|
|
|
# Copyright (c) 2016 Intel Corporation
|
|
|
|
#
|
2017-01-18 17:01:01 -08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2016-08-31 21:46:36 -05:00
|
|
|
#
|
|
|
|
|
2017-02-21 15:02:00 -06:00
|
|
|
config HTTP
|
2017-04-25 17:58:18 +03:00
|
|
|
bool "HTTP support"
|
2017-02-21 15:02:00 -06:00
|
|
|
default n
|
|
|
|
help
|
|
|
|
This option enables the HTTP library
|
|
|
|
|
|
|
|
config HTTP_SERVER
|
2017-04-25 17:58:18 +03:00
|
|
|
bool "HTTP server support"
|
2017-02-21 15:02:00 -06:00
|
|
|
default n
|
2017-03-14 11:02:00 -07:00
|
|
|
select HTTP
|
2017-02-21 15:02:00 -06:00
|
|
|
help
|
|
|
|
Enables HTTP server routines
|
|
|
|
|
|
|
|
config HTTP_HEADER_FIELD_ITEMS
|
2017-04-25 17:58:18 +03:00
|
|
|
int "HTTP header field max number of items"
|
2017-02-21 15:02:00 -06:00
|
|
|
depends on HTTP_SERVER
|
|
|
|
default 8
|
|
|
|
help
|
|
|
|
Number of HTTP header field items that an HTTP server
|
|
|
|
application will handle
|
|
|
|
|
|
|
|
config HTTP_CLIENT
|
2017-04-25 17:58:18 +03:00
|
|
|
bool "HTTP client support"
|
2017-02-21 15:02:00 -06:00
|
|
|
default n
|
2017-04-25 17:58:18 +03:00
|
|
|
select HTTP_PARSER
|
2017-03-14 11:02:00 -07:00
|
|
|
select HTTP
|
2017-02-21 15:02:00 -06:00
|
|
|
help
|
|
|
|
Enables HTTP client routines
|
|
|
|
|
2016-08-31 21:46:36 -05:00
|
|
|
config HTTP_PARSER
|
2017-04-25 17:58:18 +03:00
|
|
|
bool "HTTP Parser support"
|
2016-08-31 21:46:36 -05:00
|
|
|
default n
|
2017-03-14 11:02:00 -07:00
|
|
|
select HTTP
|
2016-08-31 21:46:36 -05:00
|
|
|
help
|
|
|
|
This option enables the http_parser library from nodejs.
|
|
|
|
This parser requires some string-related routines commonly
|
2016-12-15 11:16:55 -05:00
|
|
|
provided by a libc implementation.
|
2016-08-31 21:46:36 -05:00
|
|
|
|
|
|
|
config HTTP_PARSER_STRICT
|
2017-04-25 17:58:18 +03:00
|
|
|
bool "HTTP strict parsing"
|
2016-08-31 21:46:36 -05:00
|
|
|
default n
|
|
|
|
depends on HTTP_PARSER
|
|
|
|
help
|
|
|
|
This option enables the strict parsing option
|
2017-04-25 17:58:18 +03:00
|
|
|
|
|
|
|
config NET_DEBUG_HTTP
|
|
|
|
bool "Debug HTTP"
|
|
|
|
default n
|
|
|
|
depends on HTTP && NET_LOG
|
|
|
|
help
|
|
|
|
Enables HTTP output debug messages
|