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.
33 lines
544 B
33 lines
544 B
/*
|
|
|
|
Copyright (c) 1997, Microsoft Corporation, all rights reserved
|
|
|
|
File:
|
|
rasbacp.h
|
|
|
|
Description:
|
|
Remote Access PPP Bandwidth Allocation Control Protocol
|
|
|
|
History:
|
|
Mar 24, 1997: Vijay Baliga created original version.
|
|
|
|
*/
|
|
|
|
#ifndef _RASBACP_H_
|
|
#define _RASBACP_H_
|
|
|
|
// BACP option types
|
|
|
|
#define BACP_OPTION_FAVORED_PEER 0x01
|
|
|
|
// BACP control block
|
|
|
|
typedef struct _BACPCB
|
|
{
|
|
DWORD dwLocalMagicNumber;
|
|
DWORD dwRemoteMagicNumber;
|
|
|
|
} BACPCB, *PBACPCB;
|
|
|
|
#endif // #ifndef _RASBACP_H_
|
|
|