p2p_bss.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. ** Id: @(#) p2p_bss.c@@
  3. */
  4. /*! \file "p2p_bss.c"
  5. * \brief This file contains the functions for creating p2p BSS(AP).
  6. *
  7. * This file contains the functions for BSS(AP). We may create a BSS
  8. * network, or merge with exist IBSS network and sending Beacon Frame or reply
  9. * the Probe Response Frame for received Probe Request Frame.
  10. */
  11. /*******************************************************************************
  12. * C O M P I L E R F L A G S
  13. ********************************************************************************
  14. */
  15. /*******************************************************************************
  16. * E X T E R N A L R E F E R E N C E S
  17. ********************************************************************************
  18. */
  19. #include "precomp.h"
  20. /*******************************************************************************
  21. * C O N S T A N T S
  22. ********************************************************************************
  23. */
  24. /*******************************************************************************
  25. * D A T A T Y P E S
  26. ********************************************************************************
  27. */
  28. /*******************************************************************************
  29. * P U B L I C D A T A
  30. ********************************************************************************
  31. */
  32. /*******************************************************************************
  33. * P R I V A T E D A T A
  34. ********************************************************************************
  35. */
  36. /*******************************************************************************
  37. * M A C R O S
  38. ********************************************************************************
  39. */
  40. /*******************************************************************************
  41. * F U N C T I O N D E C L A R A T I O N S
  42. ********************************************************************************
  43. */
  44. /*******************************************************************************
  45. * F U N C T I O N S
  46. ********************************************************************************
  47. */