mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 10:38:20 +00:00
Add parsing for GTPv1 extension headers and control messages.
Added a generic gtpv1_message event generated for any GTP message type. Added specific events for the create/update/delete PDP context request/response messages. Addresses #934.
This commit is contained in:
parent
a2556642e6
commit
26bf99c5a3
18 changed files with 1435 additions and 62 deletions
|
@ -211,3 +211,17 @@ enum Mode %{
|
|||
%}
|
||||
|
||||
module GLOBAL;
|
||||
|
||||
type gtpv1_hdr: record;
|
||||
type gtp_create_pdp_ctx_request_elements: record;
|
||||
type gtp_create_pdp_ctx_response_elements: record;
|
||||
type gtp_update_pdp_ctx_request_elements: record;
|
||||
type gtp_update_pdp_ctx_response_elements: record;
|
||||
type gtp_delete_pdp_ctx_request_elements: record;
|
||||
type gtp_delete_pdp_ctx_response_elements: record;
|
||||
|
||||
type gtp_end_user_addr: record;
|
||||
type gtp_rai: record;
|
||||
type gtp_qos_profile: record;
|
||||
type gtp_private_extension: record;
|
||||
type gtp_gsn_addr: record;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue