summaryrefslogtreecommitdiff
path: root/src/ipcpd/shim-eth-llc/shim_eth_llc_messages.proto
diff options
context:
space:
mode:
authorSander Vrijders <sander.vrijders@intec.ugent.be>2016-06-14 15:06:29 +0200
committerSander Vrijders <sander.vrijders@intec.ugent.be>2016-06-14 15:06:29 +0200
commitfa62a94304bf794edb3a837acb29ebff0c5ab1aa (patch)
treefd11490ca700f27d1ca6d157d7da8ce2fb92883e /src/ipcpd/shim-eth-llc/shim_eth_llc_messages.proto
parentb294a556569b25ea6e201a004f06496bcbc944e0 (diff)
downloadouroboros-fa62a94304bf794edb3a837acb29ebff0c5ab1aa.tar.gz
ouroboros-fa62a94304bf794edb3a837acb29ebff0c5ab1aa.zip
ipcpd: Remove source AP name from protobuf message
The source AP name was still present in the protobuf message the shim-eth-llc uses.
Diffstat (limited to 'src/ipcpd/shim-eth-llc/shim_eth_llc_messages.proto')
-rw-r--r--src/ipcpd/shim-eth-llc/shim_eth_llc_messages.proto9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/ipcpd/shim-eth-llc/shim_eth_llc_messages.proto b/src/ipcpd/shim-eth-llc/shim_eth_llc_messages.proto
index 3ea1af1f..dbad4964 100644
--- a/src/ipcpd/shim-eth-llc/shim_eth_llc_messages.proto
+++ b/src/ipcpd/shim-eth-llc/shim_eth_llc_messages.proto
@@ -7,9 +7,8 @@ enum shim_eth_llc_msg_code {
message shim_eth_llc_msg {
required shim_eth_llc_msg_code code = 1;
optional string dst_name = 2;
- optional string src_ap_name = 3;
- optional string src_ae_name = 4;
- required sint32 ssap = 5;
- optional sint32 dsap = 6;
- optional sint32 response = 7;
+ optional string src_ae_name = 3;
+ required sint32 ssap = 4;
+ optional sint32 dsap = 5;
+ optional sint32 response = 6;
};