From 71bbbbef71afc9a38448749697d2aab8a47ea979 Mon Sep 17 00:00:00 2001 From: Michael Kerrisk Date: Fri, 27 Mar 2015 12:47:35 +0100 Subject: [PATCH] packet.7: Remove text about ancient glibc not defining SOL_PACKET This was fixed in glibc 2.1.1, which is a long while ago. And in any case, there is nothing special about this case; it's just one of those times when glibc lags. Signed-off-by: Michael Kerrisk --- man7/packet.7 | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/man7/packet.7 b/man7/packet.7 index fb6eadbb0..60b63c52b 100644 --- a/man7/packet.7 +++ b/man7/packet.7 @@ -604,20 +604,6 @@ is the device name as a null-terminated string, for example, eth0. This structure is obsolete and should not be used in new code. .SH BUGS -glibc 2.1 does not have a define for -.BR SOL_PACKET . -The suggested workaround is to use: -.in +4n -.nf - -#ifndef SOL_PACKET -#define SOL_PACKET 263 -#endif - -.fi -.in -This is fixed in later glibc versions. - The IEEE 802.2/803.3 LLC handling could be considered as a bug. Socket filters are not documented.