Skip to content

Commit

Permalink
Add missing 'DLT_PPP_SERIAL' PCAP link type in schemas.
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Jan 5, 2017
1 parent ef54367 commit 855ab13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gns3server/schemas/link.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
"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",
Expand Down
2 changes: 1 addition & 1 deletion gns3server/schemas/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
},
"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,
Expand Down

0 comments on commit 855ab13

Please sign in to comment.