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.
47 lines
721 B
47 lines
721 B
/*++
|
|
|
|
Copyright (c) 1992 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
router.h
|
|
|
|
Abstract:
|
|
|
|
This module contains the router associated definitions.
|
|
|
|
Author:
|
|
|
|
Jameel Hyder ([email protected])
|
|
Nikhil Kamkolkar ([email protected])
|
|
|
|
Revision History:
|
|
19 Jun 1992 Initial Version
|
|
|
|
Notes: Tab stop: 4
|
|
--*/
|
|
|
|
#ifndef _ROUTER_
|
|
#define _ROUTER_
|
|
|
|
|
|
VOID
|
|
AtalkDdpRouteInPkt(
|
|
IN PPORT_DESCRIPTOR pPortDesc,
|
|
IN PATALK_ADDR pSrc,
|
|
IN PATALK_ADDR pDest,
|
|
IN BYTE ProtoType,
|
|
IN PBYTE pPkt,
|
|
IN USHORT PktLen,
|
|
IN USHORT HopCnt
|
|
);
|
|
|
|
VOID FASTCALL
|
|
atalkDdpRouteComplete(
|
|
IN NDIS_STATUS Status,
|
|
IN PSEND_COMPL_INFO pSendInfo
|
|
);
|
|
|
|
#endif // _ROUTER_
|
|
|
|
|