Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.1 KiB

  1. #ifndef H__rerr
  2. #define H__rerr
  3. /*
  4. Router Errors
  5. */
  6. /* no memory */
  7. #define RERR_NO_MEMORY (1)
  8. /* connection with the next node failed */
  9. #define RERR_NEXT_NODE_CONN_FAILED (2)
  10. /* addl info after final destination reached */
  11. #define RERR_ADDL_INFO (3)
  12. /* no addl info and final destination not reached */
  13. #define RERR_NO_ADDL_INFO (4)
  14. /* connection failed during route setup */
  15. #define RERR_CONN_FAIL (5)
  16. /* route string too long */
  17. #define RERR_ROUTE_TOO_LONG (6)
  18. /* node name in route string too long */
  19. #define RERR_NODE_NAME_TOO_LONG (7)
  20. /* connection table netintf not found */
  21. #define RERR_CONN_NETINTF_INVALID (8)
  22. /* connection table: no netintf to map name */
  23. #define RERR_CONN_NO_MAPPING_NI (9)
  24. /* likely infinite loop */
  25. #define RERR_TOO_MANY_HOPS (10)
  26. /* Looped ... NET_NET with same PKTZ in and out */
  27. #define RERR_DIRECT_LOOP (11)
  28. #define RERR_MAX_ERR (12)
  29. /* if you add any errors here, be sure to update the error messages
  30. in router.c !!! */
  31. #endif