mirror of
https://github.com/zeek/zeek.git
synced 2025-10-17 14:08:20 +00:00
Merge remote-tracking branch 'origin/topic/timw/776-using-statements'
* origin/topic/timw/776-using-statements: Remove 'using namespace std' from SerialTypes.h Remove other using statements from headers GH-776: Remove using statements added by PR 770 Includes small fixes in files that changed since the merge request was made. Also includes a few small indentation fixes.
This commit is contained in:
commit
876c803d75
147 changed files with 553 additions and 579 deletions
|
@ -3,7 +3,6 @@
|
|||
#pragma once
|
||||
|
||||
#include <list>
|
||||
using namespace std;
|
||||
|
||||
#include "analyzer/protocol/tcp/TCP.h"
|
||||
#include "analyzer/protocol/tcp/ContentLine.h"
|
||||
|
@ -83,7 +82,7 @@ protected:
|
|||
int last_replied_cmd;
|
||||
int first_cmd; // first un-replied SMTP cmd, or -1
|
||||
int pending_reply; // code assoc. w/ multi-line reply, or 0
|
||||
list<int> pending_cmd_q; // to support pipelining
|
||||
std::list<int> pending_cmd_q; // to support pipelining
|
||||
bool skip_data; // whether to skip message body
|
||||
BroString* line_after_gap; // last line before the first reply
|
||||
// after a gap
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue