Created
January 9, 2014 22:10
-
-
Save Sovietaced/8343022 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct of_bsn_aux_cxn_request : of_bsn_header { | |
uint8_t version; | |
uint8_t type == 4; | |
uint16_t length; | |
uint32_t xid; | |
uint32_t experimenter == 0x5c16c7; | |
uint32_t subtype == 58; | |
}; | |
struct of_bsn_aux_cxn_reply : of_bsn_header { | |
uint8_t version; | |
uint8_t type == 4; | |
uint16_t length; | |
uint32_t xid; | |
uint32_t experimenter == 0x5c16c7; | |
uint32_t subtype == 49; | |
uint8_t aux_cxn__enable; // 1 == enabled, 0 == disabled | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment