mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Merge remote-tracking branch 'origin/topic/timw/remove-loginconn'
* origin/topic/timw/remove-loginconn: Remove unused LoginConn type and variable in Conn.h
This commit is contained in:
commit
a90d978cd4
4 changed files with 5 additions and 8 deletions
4
CHANGES
4
CHANGES
|
@ -1,4 +1,8 @@
|
||||||
|
|
||||||
|
3.3.0-dev.411 | 2020-10-13 13:38:38 -0700
|
||||||
|
|
||||||
|
* Remove unused LoginConn type and variable in Conn.h (Tim Wojtulewicz, Corelight)
|
||||||
|
|
||||||
3.3.0-dev.409 | 2020-10-13 13:32:18 -0700
|
3.3.0-dev.409 | 2020-10-13 13:32:18 -0700
|
||||||
|
|
||||||
* Make it possible to pass command line options through to scripts. (Seth Hall, Corelight)
|
* Make it possible to pass command line options through to scripts. (Seth Hall, Corelight)
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
3.3.0-dev.409
|
3.3.0-dev.411
|
||||||
|
|
|
@ -94,8 +94,6 @@ Connection::Connection(NetSessions* s, const detail::ConnIDKey& k, double t,
|
||||||
vlan = pkt->vlan;
|
vlan = pkt->vlan;
|
||||||
inner_vlan = pkt->inner_vlan;
|
inner_vlan = pkt->inner_vlan;
|
||||||
|
|
||||||
login_conn = nullptr;
|
|
||||||
|
|
||||||
is_active = 1;
|
is_active = 1;
|
||||||
skip = 0;
|
skip = 0;
|
||||||
weird = 0;
|
weird = 0;
|
||||||
|
@ -610,7 +608,6 @@ unsigned int Connection::MemoryAllocation() const
|
||||||
+ (timers.MemoryAllocation() - padded_sizeof(timers))
|
+ (timers.MemoryAllocation() - padded_sizeof(timers))
|
||||||
+ (conn_val ? conn_val->MemoryAllocation() : 0)
|
+ (conn_val ? conn_val->MemoryAllocation() : 0)
|
||||||
+ (root_analyzer ? root_analyzer->MemoryAllocation(): 0)
|
+ (root_analyzer ? root_analyzer->MemoryAllocation(): 0)
|
||||||
// login_conn is just a casted 'this'.
|
|
||||||
// primary_PIA is already contained in the analyzer tree.
|
// primary_PIA is already contained in the analyzer tree.
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,7 +24,6 @@
|
||||||
ZEEK_FORWARD_DECLARE_NAMESPACED(Connection, zeek);
|
ZEEK_FORWARD_DECLARE_NAMESPACED(Connection, zeek);
|
||||||
ZEEK_FORWARD_DECLARE_NAMESPACED(ConnectionTimer, zeek::detail);
|
ZEEK_FORWARD_DECLARE_NAMESPACED(ConnectionTimer, zeek::detail);
|
||||||
ZEEK_FORWARD_DECLARE_NAMESPACED(NetSessions, zeek);
|
ZEEK_FORWARD_DECLARE_NAMESPACED(NetSessions, zeek);
|
||||||
class LoginConn;
|
|
||||||
ZEEK_FORWARD_DECLARE_NAMESPACED(EncapsulationStack, zeek);
|
ZEEK_FORWARD_DECLARE_NAMESPACED(EncapsulationStack, zeek);
|
||||||
|
|
||||||
ZEEK_FORWARD_DECLARE_NAMESPACED(Specific_RE_Matcher, zeek::detail);
|
ZEEK_FORWARD_DECLARE_NAMESPACED(Specific_RE_Matcher, zeek::detail);
|
||||||
|
@ -173,8 +172,6 @@ public:
|
||||||
|
|
||||||
void AppendAddl(const char* str);
|
void AppendAddl(const char* str);
|
||||||
|
|
||||||
LoginConn* AsLoginConn() { return login_conn; }
|
|
||||||
|
|
||||||
void Match(detail::Rule::PatternType type, const u_char* data, int len,
|
void Match(detail::Rule::PatternType type, const u_char* data, int len,
|
||||||
bool is_orig, bool bol, bool eol, bool clear_state);
|
bool is_orig, bool bol, bool eol, bool clear_state);
|
||||||
|
|
||||||
|
@ -354,7 +351,6 @@ protected:
|
||||||
double start_time, last_time;
|
double start_time, last_time;
|
||||||
double inactivity_timeout;
|
double inactivity_timeout;
|
||||||
RecordValPtr conn_val;
|
RecordValPtr conn_val;
|
||||||
LoginConn* login_conn; // either nil, or this
|
|
||||||
const EncapsulationStack* encapsulation; // tunnels
|
const EncapsulationStack* encapsulation; // tunnels
|
||||||
int suppress_event; // suppress certain events to once per conn.
|
int suppress_event; // suppress certain events to once per conn.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue