X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/tripe/blobdiff_plain/e94fafe4bf24218c745dfe55292100ea4383564f..37941236c18baccbf89f5842ca63aee471d79256:/ethereal/packet-tripe.c diff --git a/ethereal/packet-tripe.c b/ethereal/packet-tripe.c index b3f2190a..4fa84028 100644 --- a/ethereal/packet-tripe.c +++ b/ethereal/packet-tripe.c @@ -199,6 +199,10 @@ static void dissect_tripe(tvbuff_t *b, packet_info *p, proto_tree *t) col_set_str(p->cinfo, COL_INFO, "Miscellaneous, encrypted ping reply"); break; + case MISC_GREET: + col_set_str(p->cinfo, COL_INFO, + "Miscellaneous, greeting"); + break; default: col_add_fstr(p->cinfo, COL_INFO, "Miscellaneous, unknown type code %u", @@ -269,6 +273,7 @@ static void dissect_tripe(tvbuff_t *b, packet_info *p, proto_tree *t) case MISC_NOP: case MISC_PING: case MISC_PONG: + case MISC_GREET: proto_tree_add_item(tt, hf_tripe_misc_payload, b, off, -1, FALSE); goto done; @@ -366,7 +371,7 @@ void proto_register_tripe(void) "This is the TrIPE miscellaneous message type subcode." } }, { &hf_tripe_misc_payload, { - "Miscellaneous message type", "tripe.misc.payload", + "Miscellaneous message payload", "tripe.misc.payload", FT_BYTES, BASE_NONE, 0, 0, "This is the miscellaneous message payload." } },