go.ligato.io/vpp-agent/v3@v3.5.0/proto/ligato/vpp/interfaces/span.proto (about)

     1  syntax = "proto3";
     2  
     3  package ligato.vpp.interfaces;
     4  
     5  option go_package = "go.ligato.io/vpp-agent/v3/proto/ligato/vpp/interfaces;vpp_interfaces";
     6  
     7  message Span {
     8      string interface_from = 1;
     9      string interface_to = 2;
    10  
    11      enum Direction {
    12          UNKNOWN = 0;
    13          RX = 1;
    14          TX = 2;
    15          BOTH = 3;
    16      };
    17      Direction direction = 3;
    18      bool is_l2 = 4;
    19  }