summaryrefslogtreecommitdiff
path: root/src/ipcpd/shim-eth-llc/shim_eth_llc_messages.proto
diff options
context:
space:
mode:
authordimitri staessens <dimitri.staessens@intec.ugent.be>2016-06-14 15:03:28 +0200
committerdimitri staessens <dimitri.staessens@intec.ugent.be>2016-06-14 15:03:28 +0200
commit1a3b2987f2948d63b3febebbf00d2412de8d739a (patch)
treeb0c6a730d0c6773f76ad7e7eb187ff58562b3b13 /src/ipcpd/shim-eth-llc/shim_eth_llc_messages.proto
parent6271d09bdd17114c3095b7e819a7bcded14f26a5 (diff)
parentb294a556569b25ea6e201a004f06496bcbc944e0 (diff)
downloadouroboros-1a3b2987f2948d63b3febebbf00d2412de8d739a.tar.gz
ouroboros-1a3b2987f2948d63b3febebbf00d2412de8d739a.zip
Merged in sandervrijders/ouroboros/be-llc (pull request #123)
ipcpd: Adds a shim over IEEE 802.2 over IEEE 802.3
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.proto15
1 files changed, 15 insertions, 0 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
new file mode 100644
index 00000000..3ea1af1f
--- /dev/null
+++ b/src/ipcpd/shim-eth-llc/shim_eth_llc_messages.proto
@@ -0,0 +1,15 @@
+enum shim_eth_llc_msg_code {
+ FLOW_REQ = 1;
+ FLOW_REPLY = 2;
+ FLOW_DEALLOC = 3;
+};
+
+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;
+};