summaryrefslogtreecommitdiffstats
path: root/src/vnet/interface.h
AgeCommit message (Expand)AuthorFilesLines
2017-08-01P2P EthernetPavel Kotucek1-0/+15
2017-07-18TCP/UDP checksum offload APIDave Barach1-0/+3
2017-07-13Fix crash with worker threads on 4K VXLAN/BD setup (VPP-907)John Lo1-6/+2
2017-07-12Deprecate support for flattened output nodesDamjan Marion1-3/+0
2017-06-21Introduce default rx mode for device driversDamjan Marion1-0/+2
2017-05-10vnet: introduce error state for sw interfacesDamjan Marion1-0/+3
2017-05-10device: Add callback for set interface rx-modeSteven1-9/+17
2017-05-02Add interface rx mode commands, unify rx mode and placement CLIDamjan Marion1-0/+15
2017-04-10Common device-input interrupt infraDamjan Marion1-0/+3
2017-04-06Use thread local storage for thread indexDamjan Marion1-1/+1
2017-03-20vnet: add device-input threadplacement infraDamjan Marion1-0/+6
2017-03-07CLI: hide deleted interfacesEyal Bari1-0/+3
2017-02-13Basic support for LISP-GPE encapsulated NSH packetsFlorin Coras1-1/+3
2016-12-28Reorganize source tree to use single autotools instanceDamjan Marion1-0/+658
/* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
/*
 * Copyright (c) 2018 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef __GBP_SCANNER_H__
#define __GBP_SCANNER_H__

#include <vlib/vlib.h>

typedef enum gbp_scan_event_t_
{
  GBP_ENDPOINT_SCAN_START,
  GBP_ENDPOINT_SCAN_STOP,
  GBP_ENDPOINT_SCAN_SET_TIME,
} gbp_scan_event_t;

extern vlib_node_registration_t gbp_scanner_node;

#endif