blob: fcd82dbf25d29eacc3222cbc979714b539201c57 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * tapcli.h : tap support
3 *
4 * Copyright (c) 2013 Cisco and/or its affiliates.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -070017/**
18 * @file
19 * @brief TAPCLI definitions
20 */
Ed Warnickecb9cada2015-12-08 15:45:58 -070021
22#ifndef __included_tapcli_h__
23#define __included_tapcli_h__
24
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -070025/** TAP CLI errors */
26#define foreach_tapcli_error \
Pierre Pfister3a8f32b2016-03-21 12:21:30 +000027 /* Must be first. */ \
28 _(NONE, "no error") \
29 _(READ, "read error") \
Pierre Pfisterae6725b2016-07-15 08:44:10 +010030 _(BUFFER_ALLOC, "buffer allocation error") \
Pierre Pfister3a8f32b2016-03-21 12:21:30 +000031 _(UNKNOWN, "unknown error")
32
33typedef enum {
34#define _(sym,str) TAPCLI_ERROR_##sym,
35 foreach_tapcli_error
36#undef _
37 TAPCLI_N_ERROR,
38 } tapcli_error_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -070039
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -070040/** TAP CLI interface details struct */
Ed Warnickecb9cada2015-12-08 15:45:58 -070041typedef struct {
42 u32 sw_if_index;
43 u8 dev_name[64];
44} tapcli_interface_details_t;
45
46int vnet_tap_dump_ifs (tapcli_interface_details_t **out_tapids);
47
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +020048#define TAP_MTU_MIN 68
49#define TAP_MTU_MAX 65535
50#define TAP_MTU_DEFAULT 1500
51
Ed Warnickecb9cada2015-12-08 15:45:58 -070052#endif /* __included_tapcli_h__ */