mirror of
https://github.com/zeek/zeek.git
synced 2025-10-13 12:08:20 +00:00
Merge remote-tracking branch
* Fix NVT analyzer memory leak from multiple telnet authn name options
This commit is contained in:
commit
b42a1bd554
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ public:
|
||||||
void SetTerminal(const u_char* terminal, int len);
|
void SetTerminal(const u_char* terminal, int len);
|
||||||
void SetBinaryMode(int mode) { binary_mode = mode; }
|
void SetBinaryMode(int mode) { binary_mode = mode; }
|
||||||
void SetEncrypting(int mode);
|
void SetEncrypting(int mode);
|
||||||
void SetAuthName(char* arg_auth_name) { auth_name = arg_auth_name; }
|
void SetAuthName(char* arg_auth_name) { delete [] auth_name; auth_name = arg_auth_name; }
|
||||||
|
|
||||||
const char* AuthName() const { return auth_name; }
|
const char* AuthName() const { return auth_name; }
|
||||||
int AuthenticationHasBeenAccepted() const
|
int AuthenticationHasBeenAccepted() const
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue