1/* 2 * wanrouter.h Legacy declarations kept around until X25 is removed 3 */ 4 5#ifndef _UAPI_ROUTER_H 6#define _UAPI_ROUTER_H 7 8/* 'state' defines */ 9enum wan_states 10{ 11 WAN_UNCONFIGURED, /* link/channel is not configured */ 12 WAN_DISCONNECTED, /* link/channel is disconnected */ 13 WAN_CONNECTING, /* connection is in progress */ 14 WAN_CONNECTED /* link/channel is operational */ 15}; 16 17#endif /* _UAPI_ROUTER_H */ 18