1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-23 02:35:57 +01:00

Fix DataLinkType typo on doxygen docs

[ci skip]
This commit is contained in:
Matias Fontanini
2015-09-19 09:00:11 -07:00
parent 2cf61403e1
commit 9d0a2d4f3e

View File

@@ -57,7 +57,7 @@ class PDU;
* UDP udp = get_packet();
*
* // Create the filter. We'll be expecting Ethernet packets.
* OfflinePacketFilter filter("ip and port 80", DataLinkLayer<EthernetII>());
* OfflinePacketFilter filter("ip and port 80", DataLinkType<EthernetII>());
*
* // We can use this directly over the inner PDU (assuming it has one)
* // See the notes on the efficiency of doing it this way.