Khen Nursimulu | aaac7ee | 2016-12-11 22:03:52 -0500 | [diff] [blame] | 1 | // See README.txt for information and build instructions. |
| 2 | |
| 3 | syntax = "proto3"; |
| 4 | |
| 5 | package tutorial; |
| 6 | |
| 7 | import "addressbook.proto"; |
| 8 | |
| 9 | // Our address book file is just one of these. |
| 10 | message AddressBook { |
| 11 | repeated Person people = 1; |
| 12 | repeated Adapter adapters = 2; |
| 13 | } |
| 14 | |
| 15 | message TestOF { |
| 16 | // repeated openflow_13.ofp_group_entry flow_groups = 1; |
| 17 | // repeated openflow_13.ofp_switch_features hell = 1; |
| 18 | // repeated openflow_13.ofp_flow_mod mod = 2; |
| 19 | // repeated openflow_13.ofp_flow_stats stats = 3; |
| 20 | repeated ofp_group_entry groupi = 4; |
| 21 | } |