1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-17 22:08:35 +00:00

Add missing 'DLT_PPP_SERIAL' PCAP link type in schemas.

This commit is contained in:
grossmj 2017-01-05 12:24:36 +08:00
parent ef54367bf7
commit 855ab13655
2 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,7 @@ LINK_CAPTURE_SCHEMA = {
"properties": {
"data_link_type": {
"description": "PCAP data link type (http://www.tcpdump.org/linktypes.html)",
"enum": ["DLT_ATM_RFC1483", "DLT_EN10MB", "DLT_FRELAY", "DLT_C_HDLC"]
"enum": ["DLT_ATM_RFC1483", "DLT_EN10MB", "DLT_FRELAY", "DLT_C_HDLC", "DLT_PPP_SERIAL"]
},
"capture_file_name": {
"description": "Read only property. The name of the capture file if capture is running",

View File

@ -85,7 +85,7 @@ NODE_CAPTURE_SCHEMA = {
},
"data_link_type": {
"description": "PCAP data link type (http://www.tcpdump.org/linktypes.html)",
"enum": ["DLT_ATM_RFC1483", "DLT_EN10MB", "DLT_FRELAY", "DLT_C_HDLC"]
"enum": ["DLT_ATM_RFC1483", "DLT_EN10MB", "DLT_FRELAY", "DLT_C_HDLC", "DLT_PPP_SERIAL"]
}
},
"additionalProperties": False,