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.

46 lines
721 B

  1. /*++
  2. Copyright (c) 1992 Microsoft Corporation
  3. Module Name:
  4. router.h
  5. Abstract:
  6. This module contains the router associated definitions.
  7. Author:
  8. Jameel Hyder (jameelh@microsoft.com)
  9. Nikhil Kamkolkar (nikhilk@microsoft.com)
  10. Revision History:
  11. 19 Jun 1992 Initial Version
  12. Notes: Tab stop: 4
  13. --*/
  14. #ifndef _ROUTER_
  15. #define _ROUTER_
  16. VOID
  17. AtalkDdpRouteInPkt(
  18. IN PPORT_DESCRIPTOR pPortDesc,
  19. IN PATALK_ADDR pSrc,
  20. IN PATALK_ADDR pDest,
  21. IN BYTE ProtoType,
  22. IN PBYTE pPkt,
  23. IN USHORT PktLen,
  24. IN USHORT HopCnt
  25. );
  26. VOID FASTCALL
  27. atalkDdpRouteComplete(
  28. IN NDIS_STATUS Status,
  29. IN PSEND_COMPL_INFO pSendInfo
  30. );
  31. #endif // _ROUTER_
  32.