EAPOL defines an EAP over LAN (802.1x) layer.
| 14 | |
| 15 | // EAPOL defines an EAP over LAN (802.1x) layer. |
| 16 | type EAPOL struct { |
| 17 | BaseLayer |
| 18 | Version uint8 |
| 19 | Type EAPOLType |
| 20 | Length uint16 |
| 21 | } |
| 22 | |
| 23 | // LayerType returns LayerTypeEAPOL. |
| 24 | func (e *EAPOL) LayerType() gopacket.LayerType { return LayerTypeEAPOL } |
nothing calls this directly
no outgoing calls
no test coverage detected