FD.io VPP
v19.08.3-2-gbabecb413
Vector Packet Processing
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
b
d
e
f
g
i
l
m
n
o
p
r
s
t
v
w
+
Functions
d
f
g
l
m
n
o
p
t
v
Variables
Typedefs
Enumerations
Enumerator
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
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
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
~
+
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
+
Typedefs
c
e
g
h
k
m
n
o
r
s
+
Related Functions
c
d
e
h
i
m
o
p
r
s
v
+
Source
Files
+
Symbols
+
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
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Typedefs
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Enumerations
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Enumerator
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
+
Macros
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
http_static.api
Go to the documentation of this file.
1
2
/** \file
3
This file defines static http server control-plane API messages
4
*/
5
option
version
=
"2.1.0"
;
6
7
/** \brief Configure and enable the static http server
8
@param client_index - opaque cookie to identify the sender
9
@param context - sender context, to match reply w/ request
10
@param fifo_size - size (in bytes) of the session FIFOs
11
@param cache_size_limit - size (in bytes) of the in-memory file data cache
12
@param prealloc_fifos - number of preallocated fifos (usually 0)
13
@param private_segment_size - fifo segment size (usually 0)
14
@param www_root - html root path
15
@param uri - bind URI, defaults to "tcp://0.0.0.0/80"
16
*/
17
18
autoreply define http_static_enable {
19
/* Client identifier, set from api_main.my_client_index */
20
u32
client_index
;
21
22
/* Arbitrary context, so client can match reply to request */
23
u32
context
;
24
/* Typical options */
25
u32
fifo_size
;
26
u32
cache_size_limit
;
27
/* Unusual options */
28
u32
prealloc_fifos
;
29
u32
private_segment_size
;
30
31
/* Root of the html path */
32
string
www_root[256];
33
/* The bind URI */
34
string
uri[256];
35
};
vl_api_http_static_enable_t::client_index
u32 client_index
Definition:
http_static.api:20
vl_api_http_static_enable_t::context
u32 context
Definition:
http_static.api:23
u32
unsigned int u32
Definition:
types.h:88
version
option version
Definition:
http_static.api:5
vl_api_http_static_enable_t::cache_size_limit
u32 cache_size_limit
Definition:
http_static.api:26
vl_api_http_static_enable_t::private_segment_size
u32 private_segment_size
Definition:
http_static.api:29
vl_api_http_static_enable_t::fifo_size
u32 fifo_size
Definition:
http_static.api:25
vl_api_http_static_enable_t::prealloc_fifos
u32 prealloc_fifos
Definition:
http_static.api:28
src
plugins
http_static
http_static.api
Generated on Mon Oct 19 2020 14:03:11 for FD.io VPP by
1.8.13