wanrouter.h 405 B

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