diff --git a/scripts/base/protocols/socks/consts.bro b/scripts/base/protocols/socks/consts.bro index fb14aae601..e5dcc460d4 100644 --- a/scripts/base/protocols/socks/consts.bro +++ b/scripts/base/protocols/socks/consts.bro @@ -2,8 +2,9 @@ module SOCKS; export { type RequestType: enum { - CONNECTION = 1, - PORT = 2, + CONNECTION = 1, + PORT = 2, + UDP_ASSOCIATE = 3, }; const v5_authentication_methods: table[count] of string = { @@ -37,4 +38,4 @@ export { [8] = "Address type not supported", } &default=function(i: count):string { return fmt("unknown-%d", i); }; -} \ No newline at end of file +}