summaryrefslogtreecommitdiff
path: root/src/ipcpd/shim-eth-llc/shim_eth_llc_messages.proto
blob: 4d027d9856e4bb4dda8759aeb5b10377a62bbd06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
enum shim_eth_llc_msg_code {
        FLOW_REQ         = 1;
        FLOW_REPLY       = 2;
        FLOW_DEALLOC     = 3;
        NAME_QUERY_REQ   = 4;
        NAME_QUERY_REPLY = 5;
};

message shim_eth_llc_msg {
        required shim_eth_llc_msg_code code  = 1;
        optional string dst_name             = 2;
        optional string src_ae_name          = 3;
        optional uint32 ssap                 = 4;
        optional uint32 dsap                 = 5;
        optional sint32 response             = 6;
};