summaryrefslogtreecommitdiff
path: root/src/ipcpd/shim-udp/shim_udp_messages.proto
blob: 1d054f1fe95087f82a9d163ca3ef47910d3d0a3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
enum shim_udp_msg_code {
        FLOW_REQ   = 1;
        FLOW_REPLY = 2;
};

message shim_udp_msg {
        required shim_udp_msg_code code  = 1;
        optional string dst_name         = 2;
        optional string src_ap_name      = 3;
        optional string src_ae_name      = 4;
        required sint32 src_udp_port     = 5;
        optional sint32 dst_udp_port     = 6;
        optional sint32 response         = 7;
};