From: tho Date: Mon, 26 Jan 2009 10:46:28 +0000 (+0000) Subject: fixed MACAddress example X-Git-Url: http://g0dil.de/git?a=commitdiff_plain;h=410c2ef7f40307909299f574b6cbb9f11bd9773e;p=senf.git fixed MACAddress example git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@1076 270642c3-0616-0410-b53a-bc976706d245 --- diff --git a/Socket/Protocols/Raw/MACAddress.hh b/Socket/Protocols/Raw/MACAddress.hh index 6d28887..c62c1df 100644 --- a/Socket/Protocols/Raw/MACAddress.hh +++ b/Socket/Protocols/Raw/MACAddress.hh @@ -48,7 +48,7 @@ namespace senf { The following statements all create the same MAC address 00:1A:2B:3C:4D:5F \code // Used to construct constant MAC addresses - MACAddress(0x001A2B3C4D5Fllu) + MACAddress(0x001A2B3C4D5Full) // Construct a MAC address from it's string representation: MACAddress::from_string("00:1a:2b:3c:4d:5f") // case is ignored @@ -62,7 +62,7 @@ namespace senf { // Construct a MAC from the EUID64 as used by INet6 interfaces. The eui64 will come from an // INet6 address: - MACAddress::from_eui64(0x001A2BFFFE3C4D5Ful) + MACAddress::from_eui64(0x001A2BFFFE3C4D5Full) MACAddress::from_eui64( INet6Address(0x2001u,0xDB8u,0x1u,0x0u,0x001Au,0x2BFFu,0xFE3Cu,0x3D5Fu).id()) \endcode