diff options
Diffstat (limited to 'python')
-rw-r--r-- | python/ndpi.py | 5 | ||||
-rw-r--r-- | python/ndpi_typestruct.py | 6 |
2 files changed, 4 insertions, 7 deletions
diff --git a/python/ndpi.py b/python/ndpi.py index c545e7998..f8b2c0a6a 100644 --- a/python/ndpi.py +++ b/python/ndpi.py @@ -716,7 +716,6 @@ struct ndpi_packet_struct { uint64_t current_time_ms; uint16_t detected_protocol_stack[2]; - uint8_t detected_subprotocol_stack[2]; uint16_t protocol_stack_info; struct ndpi_int_one_line_struct line[64]; @@ -870,9 +869,9 @@ typedef enum { typedef struct ndpi_proto_defaults { char *protoName; ndpi_protocol_category_t protoCategory; - uint8_t can_have_a_subprotocol; + u_int16_t * subprotocols; + size_t subprotocol_count; uint16_t protoId, protoIdx; - uint16_t master_tcp_protoId[2], master_udp_protoId[2]; /* The main protocols on which this sub-protocol sits on */ uint16_t tcp_default_ports[5], udp_default_ports[5]; ndpi_protocol_breed_t protoBreed; void (*func) (struct ndpi_detection_module_struct *, struct ndpi_flow_struct *flow); diff --git a/python/ndpi_typestruct.py b/python/ndpi_typestruct.py index 743f52ed2..b983a660c 100644 --- a/python/ndpi_typestruct.py +++ b/python/ndpi_typestruct.py @@ -94,11 +94,10 @@ class NDPIProtoDefaultsT(Structure): _fields_ = [ ("protoName", c_char_p), ("protoCategory", c_uint), - ("can_have_a_subprotocol", c_uint8), + ("subprotocols", c_uint16_p), + ("subprotocol_count", c_uint32), ("protoId", c_uint16), ("protoIdx", c_uint16), - ("master_tcp_protoId", c_uint16 * 2), - ("master_udp_protoId", c_uint16 * 2), ("protoBreed", c_uint), ("func", CFUNCTYPE(None, POINTER(NDPIDetectionModuleStruct), POINTER(NDPIFlowStruct))), ] @@ -653,7 +652,6 @@ class NDPIUdpHdr(Structure): class NDPIPacketStructStack(Structure): _pack_ = 1 _fields_ = [ - ('detected_subprotocol_stack', c_uint8 * ndpi.ndpi_wrap_ndpi_procol_size()), ('protocol_stack_info', c_uint16) ] |