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.

33 lines
544 B

  1. /*
  2. Copyright (c) 1997, Microsoft Corporation, all rights reserved
  3. File:
  4. rasbacp.h
  5. Description:
  6. Remote Access PPP Bandwidth Allocation Control Protocol
  7. History:
  8. Mar 24, 1997: Vijay Baliga created original version.
  9. */
  10. #ifndef _RASBACP_H_
  11. #define _RASBACP_H_
  12. // BACP option types
  13. #define BACP_OPTION_FAVORED_PEER 0x01
  14. // BACP control block
  15. typedef struct _BACPCB
  16. {
  17. DWORD dwLocalMagicNumber;
  18. DWORD dwRemoteMagicNumber;
  19. } BACPCB, *PBACPCB;
  20. #endif // #ifndef _RASBACP_H_