aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Ullrich <chris@chrullrich.net>2017-04-19 16:20:55 +0200
committerMichael Mann <mmann78@netscape.net>2017-04-19 19:42:42 +0000
commit27da6380de478ed32a778d7f60618680046da8c7 (patch)
treedfb16be9fc83a973296b299aaf8c1b44c80d2b45
parentcb018b4cc662c0b65087e3aa5bb3db7635c7c5b3 (diff)
pgsql: Add missing authentication types
Bug: 13622 Change-Id: I0813ebb5f506d1e702f84399416994daeb527be2 Signed-off-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-on: https://code.wireshark.org/review/21222 Reviewed-by: Michael Mann <mmann78@netscape.net>
-rw-r--r--epan/dissectors/packet-pgsql.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/epan/dissectors/packet-pgsql.c b/epan/dissectors/packet-pgsql.c
index 74e51dabe0..0b9c66b5a3 100644
--- a/epan/dissectors/packet-pgsql.c
+++ b/epan/dissectors/packet-pgsql.c
@@ -148,6 +148,12 @@ static const value_string auth_types[] = {
{ 4, "crypt()ed password" },
{ 5, "MD5 password" },
{ 6, "SCM credentials" },
+ { 7, "GSSAPI" },
+ { 8, "GSSAPI/SSPI continue" },
+ { 9, "SSPI" },
+ {10, "SASL" },
+ {11, "SASL continue" },
+ {12, "SASL complete" },
{ 0, NULL }
};