Typos. A bunch of typos I've been collecting.
[vpp.git] / test / ipfix.py
index deaff67..dd43560 100644 (file)
@@ -1,7 +1,9 @@
 #!/usr/bin/env python
 # IPFIX support for Scapy (RFC7011)
 
-from scapy.all import *
+from scapy.all import bind_layers, FieldLenField, IntField, Packet, \
+    PacketListField, ShortEnumField, ShortField, StrLenField
+from scapy.layers.inet import UDP
 
 
 # IPFIX Information Elements http://www.iana.org/assignments/ipfix/ipfix.xhtml
@@ -436,7 +438,12 @@ information_elements = {
     459: "httpRequestMethod",
     460: "httpRequestHost",
     461: "httpRequestTarget",
-    462: "httpMessageVersion"
+    462: "httpMessageVersion",
+    466: "natQuotaExceededEvent",
+    471: "maxSessionEntries",
+    472: "maxBIBEntries",
+    473: "maxEntriesPerUser",
+    475: "maxFragmentsPendingReassembly"
 }
 
 
@@ -502,7 +509,7 @@ class IPFIXDecoder(object):
 
     def add_template(self, template):
         """
-        Add IPFIX tempalte
+        Add IPFIX template
 
         :param template: IPFIX template
         """