Zephyr API Documentation
4.2.0-rc3
A Scalable Open Source RTOS
4.2.0-rc3
Toggle main menu visibility
Main Page
Related Pages
Topics
Data Structures
Data Structures
Data Structure Index
Data Fields
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
Enumerator
Files
File List
Globals
All
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
$
a
b
c
d
f
g
h
i
k
l
m
n
o
p
r
s
t
u
x
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Macros
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Zephyr API Documentation
Introduction
Deprecated List
Topics
Data Structures
Files
File List
doc
kernel
lib
modules
subsys
zephyr
acpi
app_memory
arch
audio
bluetooth
canbus
console
crypto
data
debug
devicetree
dfu
display
drivers
dsp
dt-bindings
fs
input
internal
ipc
kernel
linker
llext
logging
lorawan
math
mem_mgmt
mgmt
misc
modbus
modem
multi_heap
net
conn_mgr
hdlc_rcp_if
http
client.h
frame.h
hpack.h
method.h
parser.h
parser_state.h
parser_url.h
server.h
service.h
status.h
prometheus
canbus.h
capture.h
coap.h
coap_client.h
coap_link_format.h
coap_mgmt.h
coap_service.h
conn_mgr_connectivity.h
conn_mgr_connectivity_impl.h
conn_mgr_monitor.h
dhcpv4.h
dhcpv4_server.h
dhcpv6.h
dns_resolve.h
dns_sd.h
dsa.h
dsa_core.h
dummy.h
ethernet.h
ethernet_bridge.h
ethernet_mgmt.h
ethernet_vlan.h
gptp.h
hostname.h
icmp.h
ieee802154.h
ieee802154_ie.h
ieee802154_mgmt.h
ieee802154_pkt.h
ieee802154_radio.h
ieee802154_radio_openthread.h
igmp.h
ipv4_autoconf.h
lldp.h
loopback.h
lwm2m.h
lwm2m_path.h
mdio.h
mdns_responder.h
mii.h
mld.h
mqtt.h
mqtt_sn.h
net_config.h
net_context.h
net_core.h
net_event.h
net_if.h
net_ip.h
net_l2.h
net_linkaddr.h
net_mgmt.h
net_offload.h
net_pkt.h
net_pkt_filter.h
net_stats.h
net_time.h
net_timeout.h
offloaded_netdev.h
openthread.h
phy.h
ppp.h
promiscuous.h
ptp.h
ptp_time.h
sntp.h
socket.h
socket_net_mgmt.h
socket_offload.h
socket_poll.h
socket_select.h
socket_service.h
socket_types.h
socketcan.h
socketcan_utils.h
socketutils.h
tftp.h
tls_credentials.h
trickle.h
udp.h
virtual.h
virtual_mgmt.h
websocket.h
wifi.h
wifi_credentials.h
wifi_mgmt.h
wifi_nm.h
wifi_utils.h
zperf.h
platform
pm
pmci
portability
posix
psa
random
retention
rtio
sd
sensing
settings
shell
sip_svc
stats
storage
sys
task_wdt
timing
toolchain
tracing
usb
usb_c
xen
zbus
zvfs
bindesc.h
cache.h
device.h
devicetree.h
fatal.h
fatal_types.h
init.h
irq.h
irq_multilevel.h
irq_nextlevel.h
irq_offload.h
kernel.h
kernel_includes.h
kernel_structs.h
kernel_version.h
net_buf.h
shared_irq.h
smf.h
spinlock.h
sw_isr_table.h
sys_clock.h
syscall.h
toolchain.h
types.h
Globals
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
Loading...
Searching...
No Matches
method.h
Go to the documentation of this file.
1
4
5
/*
6
* Copyright (c) 2022 Meta
7
*
8
* SPDX-License-Identifier: Apache-2.0
9
*/
10
11
#ifndef ZEPHYR_INCLUDE_NET_HTTP_METHOD_H_
12
#define ZEPHYR_INCLUDE_NET_HTTP_METHOD_H_
13
22
23
#ifdef __cplusplus
24
extern
"C"
{
25
#endif
26
28
enum
http_method
{
29
HTTP_DELETE
= 0,
30
HTTP_GET
= 1,
31
HTTP_HEAD
= 2,
32
HTTP_POST
= 3,
33
HTTP_PUT
= 4,
34
HTTP_CONNECT
= 5,
35
HTTP_OPTIONS
= 6,
36
HTTP_TRACE
= 7,
37
HTTP_COPY
= 8,
38
HTTP_LOCK
= 9,
39
HTTP_MKCOL
= 10,
40
HTTP_MOVE
= 11,
41
HTTP_PROPFIND
= 12,
42
HTTP_PROPPATCH
= 13,
43
HTTP_SEARCH
= 14,
44
HTTP_UNLOCK
= 15,
45
HTTP_BIND
= 16,
46
HTTP_REBIND
= 17,
47
HTTP_UNBIND
= 18,
48
HTTP_ACL
= 19,
49
HTTP_REPORT
= 20,
50
HTTP_MKACTIVITY
= 21,
51
HTTP_CHECKOUT
= 22,
52
HTTP_MERGE
= 23,
53
HTTP_MSEARCH
= 24,
54
HTTP_NOTIFY
= 25,
55
HTTP_SUBSCRIBE
= 26,
56
HTTP_UNSUBSCRIBE
= 27,
57
HTTP_PATCH
= 28,
58
HTTP_PURGE
= 29,
59
HTTP_MKCALENDAR
= 30,
60
HTTP_LINK
= 31,
61
HTTP_UNLINK
= 32,
62
64
HTTP_METHOD_END_VALUE
/* keep this the last value */
66
};
28
enum
http_method
{
…
};
67
68
#ifdef __cplusplus
69
}
70
#endif
71
75
76
#endif
http_method
http_method
HTTP Request Methods.
Definition
method.h:28
HTTP_PROPPATCH
@ HTTP_PROPPATCH
PROPPATCH.
Definition
method.h:42
HTTP_MSEARCH
@ HTTP_MSEARCH
MSEARCH.
Definition
method.h:53
HTTP_PUT
@ HTTP_PUT
PUT.
Definition
method.h:33
HTTP_MKACTIVITY
@ HTTP_MKACTIVITY
MKACTIVITY.
Definition
method.h:50
HTTP_MKCALENDAR
@ HTTP_MKCALENDAR
MKCALENDAR.
Definition
method.h:59
HTTP_BIND
@ HTTP_BIND
BIND.
Definition
method.h:45
HTTP_PURGE
@ HTTP_PURGE
PURGE.
Definition
method.h:58
HTTP_NOTIFY
@ HTTP_NOTIFY
NOTIFY.
Definition
method.h:54
HTTP_PROPFIND
@ HTTP_PROPFIND
PROPFIND.
Definition
method.h:41
HTTP_DELETE
@ HTTP_DELETE
DELETE.
Definition
method.h:29
HTTP_MERGE
@ HTTP_MERGE
MERGE.
Definition
method.h:52
HTTP_GET
@ HTTP_GET
GET.
Definition
method.h:30
HTTP_REPORT
@ HTTP_REPORT
REPORT.
Definition
method.h:49
HTTP_SUBSCRIBE
@ HTTP_SUBSCRIBE
SUBSCRIBE.
Definition
method.h:55
HTTP_UNBIND
@ HTTP_UNBIND
UNBIND.
Definition
method.h:47
HTTP_CONNECT
@ HTTP_CONNECT
CONNECT.
Definition
method.h:34
HTTP_UNLOCK
@ HTTP_UNLOCK
UNLOCK.
Definition
method.h:44
HTTP_MKCOL
@ HTTP_MKCOL
MKCOL.
Definition
method.h:39
HTTP_OPTIONS
@ HTTP_OPTIONS
OPTIONS.
Definition
method.h:35
HTTP_LINK
@ HTTP_LINK
LINK.
Definition
method.h:60
HTTP_UNSUBSCRIBE
@ HTTP_UNSUBSCRIBE
UNSUBSCRIBE.
Definition
method.h:56
HTTP_REBIND
@ HTTP_REBIND
REBIND.
Definition
method.h:46
HTTP_LOCK
@ HTTP_LOCK
LOCK.
Definition
method.h:38
HTTP_POST
@ HTTP_POST
POST.
Definition
method.h:32
HTTP_HEAD
@ HTTP_HEAD
HEAD.
Definition
method.h:31
HTTP_SEARCH
@ HTTP_SEARCH
SEARCH.
Definition
method.h:43
HTTP_UNLINK
@ HTTP_UNLINK
UNLINK.
Definition
method.h:61
HTTP_ACL
@ HTTP_ACL
ACL.
Definition
method.h:48
HTTP_CHECKOUT
@ HTTP_CHECKOUT
CHECKOUT.
Definition
method.h:51
HTTP_MOVE
@ HTTP_MOVE
MOVE.
Definition
method.h:40
HTTP_COPY
@ HTTP_COPY
COPY.
Definition
method.h:37
HTTP_PATCH
@ HTTP_PATCH
PATCH.
Definition
method.h:57
HTTP_TRACE
@ HTTP_TRACE
TRACE.
Definition
method.h:36
zephyr
net
http
method.h
Generated on
for Zephyr API Documentation by
1.14.0