wanrouter.h 468 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. /*
  3. * wanrouter.h Legacy declarations kept around until X25 is removed
  4. */
  5. #ifndef _UAPI_ROUTER_H
  6. #define _UAPI_ROUTER_H
  7. /* 'state' defines */
  8. enum wan_states
  9. {
  10. WAN_UNCONFIGURED, /* link/channel is not configured */
  11. WAN_DISCONNECTED, /* link/channel is disconnected */
  12. WAN_CONNECTING, /* connection is in progress */
  13. WAN_CONNECTED /* link/channel is operational */
  14. };
  15. #endif /* _UAPI_ROUTER_H */