diff options
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/if_pppox.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/linux/if_pppox.h b/include/linux/if_pppox.h index 9d2206b1d06f..405747fba490 100644 --- a/include/linux/if_pppox.h +++ b/include/linux/if_pppox.h @@ -147,13 +147,14 @@ extern void pppox_unbind_sock(struct sock *sk);/* delete ppp-channel binding */ extern int pppox_channel_ioctl(struct ppp_channel *pc, unsigned int cmd, unsigned long arg); -/* PPPoE socket states */ +/* PPPoX socket states */ enum { PPPOX_NONE = 0, /* initial state */ PPPOX_CONNECTED = 1, /* connection established ==TCP_ESTABLISHED */ PPPOX_BOUND = 2, /* bound to ppp device */ PPPOX_RELAY = 4, /* forwarding is enabled */ - PPPOX_DEAD = 8 + PPPOX_ZOMBIE = 8, /* dead, but still bound to ppp device */ + PPPOX_DEAD = 16 /* dead, useless, please clean me up!*/ }; extern struct ppp_channel_ops pppoe_chan_ops; |
