mirror of
https://github.com/zeek/zeek.git
synced 2025-10-12 11:38:20 +00:00
Add another SOCKS command.
This commit is contained in:
parent
6b8b4dab71
commit
3eb16e5738
1 changed files with 4 additions and 3 deletions
|
@ -2,8 +2,9 @@ module SOCKS;
|
||||||
|
|
||||||
export {
|
export {
|
||||||
type RequestType: enum {
|
type RequestType: enum {
|
||||||
CONNECTION = 1,
|
CONNECTION = 1,
|
||||||
PORT = 2,
|
PORT = 2,
|
||||||
|
UDP_ASSOCIATE = 3,
|
||||||
};
|
};
|
||||||
|
|
||||||
const v5_authentication_methods: table[count] of string = {
|
const v5_authentication_methods: table[count] of string = {
|
||||||
|
@ -37,4 +38,4 @@ export {
|
||||||
[8] = "Address type not supported",
|
[8] = "Address type not supported",
|
||||||
} &default=function(i: count):string { return fmt("unknown-%d", i); };
|
} &default=function(i: count):string { return fmt("unknown-%d", i); };
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue