Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

X25: Update X25 interface documentation

Signed-off-by: Andrew Hendry <andrew.hendry@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

andrew hendry and committed by
David S. Miller
e904f0a4 90b3e030

+8 -8
+8 -8
Documentation/networking/x25-iface.txt
··· 20 20 Packet Layer to Device Driver 21 21 ----------------------------- 22 22 23 - First Byte = 0x00 23 + First Byte = 0x00 (X25_IFACE_DATA) 24 24 25 25 This indicates that the rest of the skbuff contains data to be transmitted 26 26 over the LAPB link. The LAPB link should already exist before any data is 27 27 passed down. 28 28 29 - First Byte = 0x01 29 + First Byte = 0x01 (X25_IFACE_CONNECT) 30 30 31 31 Establish the LAPB link. If the link is already established then the connect 32 32 confirmation message should be returned as soon as possible. 33 33 34 - First Byte = 0x02 34 + First Byte = 0x02 (X25_IFACE_DISCONNECT) 35 35 36 36 Terminate the LAPB link. If it is already disconnected then the disconnect 37 37 confirmation message should be returned as soon as possible. 38 38 39 - First Byte = 0x03 39 + First Byte = 0x03 (X25_IFACE_PARAMS) 40 40 41 41 LAPB parameters. To be defined. 42 42 ··· 44 44 Device Driver to Packet Layer 45 45 ----------------------------- 46 46 47 - First Byte = 0x00 47 + First Byte = 0x00 (X25_IFACE_DATA) 48 48 49 49 This indicates that the rest of the skbuff contains data that has been 50 50 received over the LAPB link. 51 51 52 - First Byte = 0x01 52 + First Byte = 0x01 (X25_IFACE_CONNECT) 53 53 54 54 LAPB link has been established. The same message is used for both a LAPB 55 55 link connect_confirmation and a connect_indication. 56 56 57 - First Byte = 0x02 57 + First Byte = 0x02 (X25_IFACE_DISCONNECT) 58 58 59 59 LAPB link has been terminated. This same message is used for both a LAPB 60 60 link disconnect_confirmation and a disconnect_indication. 61 61 62 - First Byte = 0x03 62 + First Byte = 0x03 (X25_IFACE_PARAMS) 63 63 64 64 LAPB parameters. To be defined. 65 65