diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2015-05-04 09:51:57 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2015-05-04 09:51:57 +0200 |
commit | f2828acdd708eea5ac95542c2258c894ef1cda9b (patch) | |
tree | f1054a29de62f52307c2dc0060484d964e743568 /proto_ip_authentication_hdr.c | |
parent | 47fb4f6219e6936fd99d28a1e43135544d10b4ff (diff) |
netsniff-ng: Rename protocol dissector member of struct pkt_buff
In commit d312a25879d5 ("netsniff-ng nlmsg: Print netlink protocol
name"), the struct protocol member of struct pkt_buff was renamed to
handler to account for the newly added proto field. However, the
corresponding function pkt_set_proto wasn't renamed which is a bit
counter-intuitive. Fix this by renaming the member again, this time to
dissector (as I don't consider handler a particulary meaningful name)
and adjust the set function's name accordingly.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'proto_ip_authentication_hdr.c')
-rw-r--r-- | proto_ip_authentication_hdr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/proto_ip_authentication_hdr.c b/proto_ip_authentication_hdr.c index d8b352f..b2b7a26 100644 --- a/proto_ip_authentication_hdr.c +++ b/proto_ip_authentication_hdr.c @@ -65,7 +65,7 @@ static void auth_hdr(struct pkt_buff *pkt) } tprintf(" ]\n"); - pkt_set_proto(pkt, ð_lay3, auth_ops->h_next_header); + pkt_set_dissector(pkt, ð_lay3, auth_ops->h_next_header); } static void auth_hdr_less(struct pkt_buff *pkt) @@ -84,7 +84,7 @@ static void auth_hdr_less(struct pkt_buff *pkt) tprintf(" AH"); pkt_pull(pkt, hdr_len - sizeof(*auth_ops)); - pkt_set_proto(pkt, ð_lay3, auth_ops->h_next_header); + pkt_set_dissector(pkt, ð_lay3, auth_ops->h_next_header); } struct protocol ip_auth_ops = { |