mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
esp_netif_ppp: Add NETIF_PPP_AUTHTYPE_NONE to esp_netif_auth_type_t
To allow setting auth_type to PPPAUTHTYPE_NONE, add NETIF_PPP_AUTHTYPE_NONE to esp_netif_auth_type_t. So even PAP/CHAP are enabled in lwIP, the application still can set auth_type to PPPAUTHTYPE_NONE. Signed-off-by: Axel Lin <axel.lin@gmail.com>
This commit is contained in:
parent
340ffcb1a9
commit
57a56b55c0
@ -74,6 +74,7 @@ typedef enum {
|
||||
*
|
||||
*/
|
||||
typedef enum {
|
||||
NETIF_PPP_AUTHTYPE_NONE = 0x00,
|
||||
NETIF_PPP_AUTHTYPE_PAP = 0x01,
|
||||
NETIF_PPP_AUTHTYPE_CHAP = 0x02,
|
||||
NETIF_PPP_AUTHTYPE_MSCHAP = 0x04,
|
||||
|
Loading…
Reference in New Issue
Block a user