123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- /*====================================================================*
- *
- * Copyright (c) 2013 Qualcomm Atheros, Inc.
- *
- * All rights reserved.
- *
- *====================================================================*/
- /*====================================================================*
- *
- * ohomeplug.hpp - interface for the ohomeplug class.
- *
- * this class implements a standard Ethernet header consisting of
- * a peer address, host address and ether type; these correspond
- * to ODA, OSA and MTYPE fields defined in the Intellon Firmware
- * Technical Reference Manual;
- *
- * Contributor(s):
- * Charles Maier <charles.maier@intellon.com>
- *
- *--------------------------------------------------------------------*/
- #ifndef oHOMEPLUG_HEADER
- #define oHOMEPLUG_HEADER
- /*====================================================================*
- * custom header files;
- *--------------------------------------------------------------------*/
- #include "../classes/stdafx.hpp"
- #include "../classes/oethernet.hpp"
- /*====================================================================*
- * class constants;
- *--------------------------------------------------------------------*/
- #define oHOMEPLUG_MTYPE 0x88E1
- #define oHOMEPLUG_MMV 0x00
- #define oHOMEPLUG_MMTYPE 0x0000
- #define oHOMEPLUG_FMI 0x0000
- /*====================================================================*
- * HomePlug Management Message Ranges for Information Only;
- *--------------------------------------------------------------------*/
- #if 0
- #define CC_MMTYPE_MIN 0x0000
- #define CC_MMTYPE_MAX 0x1FFC
- #define CP_MMTYPE_MIN 0x2000
- #define CP_MMTYPE_MAX 0x3FFC
- #define NN_MMTYPE_MIN 0x4000
- #define NN_MMTYPE_MAX 0x5FFC
- #define CM_MMTYPE_MIN 0x6000
- #define CM_MMTYPE_MAX 0x7FFC
- #define MS_MMTYPE_MIN 0x8000
- #define MS_MMTYPE_MAX 0x9FFC
- #define VS_MMTYPE_MIN 0xA000
- #define VS_MMTYPE_MAX 0xBFFC
- #define XX_MMTYPE_MIN 0xC000
- #define XX_MMTYPE_MAX 0xFFFC
- #endif
- /*====================================================================*
- * HomePlug AV MMEs have 4 variants indicated by the 2 MMTYPE LSBs;
- *--------------------------------------------------------------------*/
- #define MMTYPE_CC 0x0000
- #define MMTYPE_CP 0x2000
- #define MMTYPE_NN 0x4000
- #define MMTYPE_CM 0x6000
- #define MMTYPE_MS 0x8000
- #define MMTYPE_VS 0xA000
- #define MMTYPE_XX 0xC000
- #define MMTYPE_REQ 0x0000
- #define MMTYPE_CNF 0x0001
- #define MMTYPE_IND 0x0002
- #define MMTYPE_RSP 0x0003
- #define MMTYPE_MODE (MMTYPE_REQ|MMTYPE_CNF|MMTYPE_IND|MMTYPE_RSP)
- /*====================================================================*
- * HomePlug AV Management Message Types;
- *--------------------------------------------------------------------*/
- #define CC_CCO_APPOINT 0x0000
- #define CC_BACKUP_APPOINT 0x0004
- #define CC_LINK_INFO 0x0008
- #define CC_HANDOVER 0x000C
- #define CC_HANDOVER_INFO 0x0010
- #define CC_DISCOVER_LIST 0x0014
- #define CC_LINK_NEW 0x0018
- #define CC_LINK_MOD 0x001C
- #define CC_LINK_SQZ 0x0020
- #define CC_LINK_REL 0x0024
- #define CC_DETECT_REPORT 0x0028
- #define CC_WHO_RU 0x002C
- #define CC_ASSOC 0x0030
- #define CC_LEAVE 0x0034
- #define CC_SET_TEI_MAP 0x0038
- #define CC_RELAY 0x003C
- #define CC_BEACON_RELIABILITY 0x0040
- #define CC_CC_ALLOC_MOVE 0x0044
- #define CC_ACCESS_NEW 0x0048
- #define CC_ACCESS_REL 0x004C
- #define CC_DCPPC 0x0050
- #define CC_HP1_DET 0x0054
- #define CC_BLE_UPDATE 0x0058
- #define CP_PROXY_APPOINT 0x2000
- #define PH_PROXY_APPOINT 0x2004
- #define CP_PROXY_WAKE 0x2008
- #define NN_INL 0x4000
- #define NN_NEW_NET 0x4004
- #define NN_ADD_ALLOC 0x4008
- #define NN_REL_ALLOC 0x400C
- #define NN_REL_NET 0x4010
- #define CM_ASSOCIATED_STA 0x6000
- #define CM_ENCRYPTED_PAYLOAD 0x6004
- #define CM_SET_KEY 0x6008
- #define CM_GET_KEY 0x600C
- #define CM_SC_JOIN 0x6010
- #define CM_CHAN_EST 0x6014
- #define CM_TM_UPDATE 0x6018
- #define CM_AMP_MAP 0x601C
- #define CM_BRG_INFO 0x6020
- #define CM_CONN_NEW 0x6024
- #define CM_CONN_REL 0x6028
- #define CM_CONN_MOD 0x602C
- #define CM_CONN_INFO 0x6030
- #define CM_STA_CAP 0x6034
- #define CM_NW_INFO 0x6038
- #define CM_GET_BEACON 0x603C
- #define CM_HFID 0x6040
- #define CM_MME_ERROR 0x6044
- #define CM_NW_STATS 0x6048
- /*====================================================================*
- * class datatypes;
- *--------------------------------------------------------------------*/
- typedef unsigned char byte;
- /*====================================================================*
- * class declaration;
- *--------------------------------------------------------------------*/
- class __declspec (dllexport) ohomeplug: public oethernet
- {
- public:
- ohomeplug ();
- virtual ~ ohomeplug ();
- size_t HeaderLength () const;
- void * ExportHeader (void * memory) const;
- void const * ImportHeader (void const * memory);
- uint8_t MessageVersion () const;
- uint16_t MessageType () const;
- uint16_t MessageFragment () const;
- bool IsMessageType (uint8_t version, uint16_t message);
- char const * MessageTypeString () const;
- char const * MessageFragmentString () const;
- ohomeplug & SetMessageVersion (byte version);
- ohomeplug & SetMessageType (uint16_t message);
- ohomeplug & SetMessageFragment (uint16_t fragment);
- ohomeplug & SetHeader (void const * memory);
- static size_t const MessageTypeLength;
- private:
- uint8_t mversion;
- uint16_t mmessage;
- uint16_t mfragment;
- };
- /*====================================================================*
- * end definition;
- *--------------------------------------------------------------------*/
- #endif
|