aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-pgsql.c
diff options
context:
space:
mode:
authorTom Nisbet <t.talk@nisbethome.com>2019-12-20 22:19:53 -0500
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2019-12-22 19:43:00 +0000
commitcafb5e269e128d7ab547df60b727b0d520cf7830 (patch)
treeb422fb762e4aff519b6b8a3583604f8e3ac5ba44 /epan/dissectors/packet-pgsql.c
parent31570163d14da6de4a1b7fde4fdde2ff9b9d20a9 (diff)
pgsql: add GSS Encode Request message
Bug: 16280 Change-Id: Ia1106858aae6d4221042cf13b3fad3ed14e270af Reviewed-on: https://code.wireshark.org/review/35534 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-pgsql.c')
-rw-r--r--epan/dissectors/packet-pgsql.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/dissectors/packet-pgsql.c b/epan/dissectors/packet-pgsql.c
index c2c8ff076d..d4f85206bd 100644
--- a/epan/dissectors/packet-pgsql.c
+++ b/epan/dissectors/packet-pgsql.c
@@ -689,6 +689,8 @@ dissect_pgsql_msg(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* dat
typestr = "Cancel request";
else if (length == 8 && tag == 80877103)
typestr = "SSL request";
+ else if (length == 8 && tag == 80877104)
+ typestr = "GSS encrypt request";
else if (tag == 196608)
typestr = "Startup message";
else