【SDX12】高通SDX12 NatType功能分析及实现

NATType类型说明

(3条消息) [NatType]路由器四种NAT(Full Cone NAT/Restricted Cone NAT/Port Restricted Cone NAT/Symmetric NAT)类型说明_wellnw的博客-CSDN博客_nat type

高通QCAMP

./apps_proc/data/mobileap/ipc/qualcomm_mobile_access_point_msgr_v01.h

typedef enum {
   QCMAP_MSGR_NAT_ENUM_MIN_ENUM_VAL_V01 = -2147483647, /**< To force a 32 bit signed enum.  Do not change or use*/
   QCMAP_MSGR_NAT_SYMMETRIC_NAT_V01 = 0, /**<  NAT type is symmetric  */
   QCMAP_MSGR_NAT_PORT_RESTRICTED_CONE_NAT_V01 = 1, /**<  NAT type is Port-Restricted Cone NAT  */
   QCMAP_MSGR_NAT_FULL_CONE_NAT_V01 = 2, /**<  NAT type is Full Cone NAT  */
   QCMAP_MSGR_NAT_ADDRESS_RESTRICTED_NAT_V01 = 3, /**<  NAT type is Address-Rest

你可能感兴趣的:(qsdk遇到问题及解决方案,SDX12)