Source code of Windows XP (NT5)
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.

49 lines
961 B

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. D:\nt\private\ntos\tdi\rawwan\core\config.h
  5. Abstract:
  6. Configurable constants for Null transport.
  7. Revision History:
  8. Who When What
  9. -------- -------- ----------------------------------------------
  10. arvindm 06-13-97 Created
  11. Notes:
  12. --*/
  13. #ifndef _TDI__RWAN_CONFIG__H
  14. #define _TDI__RWAN_CONFIG__H
  15. //
  16. // Initial size of send packet pool.
  17. //
  18. #define RWAN_INITIAL_SEND_PACKET_COUNT 100
  19. //
  20. // How much do we allow the send packet pool to overflow?
  21. //
  22. #define RWAN_OVERFLOW_SEND_PACKET_COUNT 1000
  23. //
  24. // Initial size of receive packet pool. Allocated if/when we need to
  25. // copy a received packet because the miniport doesn't allow us to
  26. // keep the original.
  27. //
  28. #define RWAN_INITIAL_COPY_PACKET_COUNT 100
  29. //
  30. // How much do we allow the receive copy packet pool to overflow?
  31. //
  32. #define RWAN_OVERFLOW_COPY_PACKET_COUNT 500
  33. #endif // _TDI__RWAN_CONFIG__H