rtw_br_ext.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /******************************************************************************
  2. *
  3. * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of version 2 of the GNU General Public License as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along with
  15. * this program; if not, write to the Free Software Foundation, Inc.,
  16. * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
  17. *
  18. *
  19. ******************************************************************************/
  20. #ifndef _RTW_BR_EXT_H_
  21. #define _RTW_BR_EXT_H_
  22. #if 1 // rtw_wifi_driver
  23. #define CL_IPV6_PASS 1
  24. #define MACADDRLEN 6
  25. #define _DEBUG_ERR DBG_8192C
  26. #define _DEBUG_INFO //DBG_8192C
  27. #define DEBUG_WARN DBG_8192C
  28. #define DEBUG_INFO //DBG_8192C
  29. #define DEBUG_ERR DBG_8192C
  30. //#define GET_MY_HWADDR ((GET_MIB(priv))->dot11OperationEntry.hwaddr)
  31. #define GET_MY_HWADDR(padapter) ((padapter)->eeprompriv.mac_addr)
  32. #endif // rtw_wifi_driver
  33. #define NAT25_HASH_BITS 4
  34. #define NAT25_HASH_SIZE (1 << NAT25_HASH_BITS)
  35. #define NAT25_AGEING_TIME 300
  36. #ifdef CL_IPV6_PASS
  37. #define MAX_NETWORK_ADDR_LEN 17
  38. #else
  39. #define MAX_NETWORK_ADDR_LEN 11
  40. #endif
  41. struct nat25_network_db_entry
  42. {
  43. struct nat25_network_db_entry *next_hash;
  44. struct nat25_network_db_entry **pprev_hash;
  45. atomic_t use_count;
  46. unsigned char macAddr[6];
  47. unsigned long ageing_timer;
  48. unsigned char networkAddr[MAX_NETWORK_ADDR_LEN];
  49. };
  50. enum NAT25_METHOD {
  51. NAT25_MIN,
  52. NAT25_CHECK,
  53. NAT25_INSERT,
  54. NAT25_LOOKUP,
  55. NAT25_PARSE,
  56. NAT25_MAX
  57. };
  58. struct br_ext_info {
  59. unsigned int nat25_disable;
  60. unsigned int macclone_enable;
  61. unsigned int dhcp_bcst_disable;
  62. int addPPPoETag; // 1: Add PPPoE relay-SID, 0: disable
  63. unsigned char nat25_dmzMac[MACADDRLEN];
  64. unsigned int nat25sc_disable;
  65. };
  66. void nat25_db_cleanup(_adapter *priv);
  67. #endif // _RTW_BR_EXT_H_