FD.io VPP
v17.10-9-gd594711
Vector Packet Processing
Main Page
Related Pages
Modules
Data Structures
Source
Files
Symbols
vhost_user.api
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2015-2016 Cisco and/or its affiliates.
3
* Licensed under the Apache License, Version 2.0 (the "License");
4
* you may not use this file except in compliance with the License.
5
* You may obtain a copy of the License at:
6
*
7
* http://www.apache.org/licenses/LICENSE-2.0
8
*
9
* Unless required by applicable law or agreed to in writing, software
10
* distributed under the License is distributed on an "AS IS" BASIS,
11
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
* See the License for the specific language governing permissions and
13
* limitations under the License.
14
*/
15
16
/** \brief vhost-user interface create request
17
@param client_index - opaque cookie to identify the sender
18
@param is_server - our side is socket server
19
@param sock_filename - unix socket filename, used to speak with frontend
20
@param use_custom_mac - enable or disable the use of the provided hardware address
21
@param mac_address - hardware address to use if 'use_custom_mac' is set
22
*/
23
define create_vhost_user_if
24
{
25
u32
client_index
;
26
u32
context
;
27
u8
is_server
;
28
u8
sock_filename[256];
29
u8
renumber
;
30
u32
custom_dev_instance
;
31
u8
use_custom_mac
;
32
u8
mac_address[6];
33
u8
tag[64];
34
};
35
36
/** \brief vhost-user interface create response
37
@param context - sender context, to match reply w/ request
38
@param retval - return code for the request
39
@param sw_if_index - interface the operation is applied to
40
*/
41
define create_vhost_user_if_reply
42
{
43
u32
context
;
44
i32
retval
;
45
u32
sw_if_index
;
46
};
47
48
/** \brief vhost-user interface modify request
49
@param client_index - opaque cookie to identify the sender
50
@param is_server - our side is socket server
51
@param sock_filename - unix socket filename, used to speak with frontend
52
*/
53
autoreply define modify_vhost_user_if
54
{
55
u32
client_index
;
56
u32
context
;
57
u32
sw_if_index
;
58
u8
is_server
;
59
u8
sock_filename[256];
60
u8
renumber
;
61
u32
custom_dev_instance
;
62
};
63
64
/** \brief vhost-user interface delete request
65
@param client_index - opaque cookie to identify the sender
66
*/
67
autoreply define delete_vhost_user_if
68
{
69
u32
client_index
;
70
u32
context
;
71
u32
sw_if_index
;
72
};
73
74
/** \brief Vhost-user interface details structure (fix this)
75
@param sw_if_index - index of the interface
76
@param interface_name - name of interface
77
@param virtio_net_hdr_sz - net header size
78
@param features - interface features
79
@param is_server - vhost-user server socket
80
@param sock_filename - socket filename
81
@param num_regions - number of used memory regions
82
*/
83
define sw_interface_vhost_user_details
84
{
85
u32
context
;
86
u32
sw_if_index
;
87
u8
interface_name[64];
88
u32
virtio_net_hdr_sz
;
89
u64
features
;
90
u8
is_server
;
91
u8
sock_filename[256];
92
u32
num_regions
;
93
i32
sock_errno
;
94
};
95
96
define sw_interface_vhost_user_dump
97
{
98
u32
client_index
;
99
u32
context
;
100
};
101
/*
102
* Local Variables:
103
* eval: (c-set-style "gnu")
104
* End:
105
*/
vl_api_sw_interface_vhost_user_details_t::features
u64 features
Definition:
vhost_user.api:89
vl_api_create_vhost_user_if_reply_t::sw_if_index
u32 sw_if_index
Definition:
vhost_user.api:45
vl_api_sw_interface_vhost_user_details_t::sock_errno
i32 sock_errno
Definition:
vhost_user.api:93
vl_api_create_vhost_user_if_t::client_index
u32 client_index
Definition:
vhost_user.api:25
vl_api_sw_interface_vhost_user_details_t::num_regions
u32 num_regions
Definition:
vhost_user.api:92
vl_api_sw_interface_vhost_user_details_t::sw_if_index
u32 sw_if_index
Definition:
vhost_user.api:86
vl_api_sw_interface_vhost_user_dump_t::context
u32 context
Definition:
vhost_user.api:99
i32
int i32
Definition:
types.h:81
u64
unsigned long u64
Definition:
types.h:89
vl_api_delete_vhost_user_if_t::client_index
u32 client_index
Definition:
vhost_user.api:69
vl_api_modify_vhost_user_if_t::custom_dev_instance
u32 custom_dev_instance
Definition:
vhost_user.api:61
vl_api_create_vhost_user_if_t::context
u32 context
Definition:
vhost_user.api:26
vl_api_sw_interface_vhost_user_details_t::is_server
u8 is_server
Definition:
vhost_user.api:90
vl_api_create_vhost_user_if_t::use_custom_mac
u8 use_custom_mac
Definition:
vhost_user.api:31
vl_api_modify_vhost_user_if_t::context
u32 context
Definition:
vhost_user.api:56
vl_api_modify_vhost_user_if_t::sw_if_index
u32 sw_if_index
Definition:
vhost_user.api:57
vl_api_create_vhost_user_if_t::renumber
u8 renumber
Definition:
vhost_user.api:29
vl_api_create_vhost_user_if_reply_t::context
u32 context
Definition:
vhost_user.api:43
vl_api_modify_vhost_user_if_t::client_index
u32 client_index
Definition:
vhost_user.api:55
u32
unsigned int u32
Definition:
types.h:88
vl_api_modify_vhost_user_if_t::is_server
u8 is_server
Definition:
vhost_user.api:58
u8
unsigned char u8
Definition:
types.h:56
vl_api_delete_vhost_user_if_t::sw_if_index
u32 sw_if_index
Definition:
vhost_user.api:71
vl_api_delete_vhost_user_if_t::context
u32 context
Definition:
vhost_user.api:70
vl_api_create_vhost_user_if_t::custom_dev_instance
u32 custom_dev_instance
Definition:
vhost_user.api:30
vl_api_sw_interface_vhost_user_dump_t::client_index
u32 client_index
Definition:
vhost_user.api:98
vl_api_modify_vhost_user_if_t::renumber
u8 renumber
Definition:
vhost_user.api:60
vl_api_create_vhost_user_if_t::is_server
u8 is_server
Definition:
vhost_user.api:27
vl_api_sw_interface_vhost_user_details_t::context
u32 context
Definition:
vhost_user.api:85
vl_api_create_vhost_user_if_reply_t::retval
i32 retval
Definition:
vhost_user.api:44
vl_api_sw_interface_vhost_user_details_t::virtio_net_hdr_sz
u32 virtio_net_hdr_sz
Definition:
vhost_user.api:88
src
vnet
devices
virtio
vhost_user.api
Generated on Tue Nov 14 2017 00:30:01 for FD.io VPP by
1.8.11