From 3eb16e5738288c06126b917e553fd0ce2f2a0c3e Mon Sep 17 00:00:00 2001 From: Seth Hall Date: Thu, 21 Jun 2012 02:07:30 -0400 Subject: [PATCH] Add another SOCKS command. --- scripts/base/protocols/socks/consts.bro | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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 +}