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. This file contains the functions for BSS(AP). We may create a BSS
  7. network, or merge with exist IBSS network and sending Beacon Frame or reply
  8. the Probe Response Frame for received Probe Request Frame.
  9. */
  10. /*******************************************************************************
  11. * C O M P I L E R F L A G S
  12. ********************************************************************************
  13. */
  14. /*******************************************************************************
  15. * E X T E R N A L R E F E R E N C E S
  16. ********************************************************************************
  17. */
  18. #include "precomp.h"
  19. /*******************************************************************************
  20. * C O N S T A N T S
  21. ********************************************************************************
  22. */
  23. /*******************************************************************************
  24. * D A T A T Y P E S
  25. ********************************************************************************
  26. */
  27. /*******************************************************************************
  28. * P U B L I C D A T A
  29. ********************************************************************************
  30. */
  31. /*******************************************************************************
  32. * P R I V A T E D A T A
  33. ********************************************************************************
  34. */
  35. /*******************************************************************************
  36. * M A C R O S
  37. ********************************************************************************
  38. */
  39. /*******************************************************************************
  40. * F U N C T I O N D E C L A R A T I O N S
  41. ********************************************************************************
  42. */
  43. /*******************************************************************************
  44. * F U N C T I O N S
  45. ********************************************************************************
  46. */