mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 10:08:20 +00:00
Move all Val classes to the zeek namespaces
This commit is contained in:
parent
ec9eff0bd5
commit
64332ca22c
265 changed files with 3154 additions and 3086 deletions
|
@ -145,7 +145,7 @@ protected:
|
|||
|
||||
HTTP_Entity* current_entity;
|
||||
|
||||
RecordValPtr BuildMessageStat(bool interrupted, const char* msg);
|
||||
zeek::RecordValPtr BuildMessageStat(bool interrupted, const char* msg);
|
||||
};
|
||||
|
||||
class HTTP_Analyzer final : public tcp::TCP_ApplicationAnalyzer {
|
||||
|
@ -156,7 +156,7 @@ public:
|
|||
void HTTP_EntityData(bool is_orig, BroString* entity_data);
|
||||
void HTTP_MessageDone(bool is_orig, HTTP_Message* message);
|
||||
void HTTP_Event(const char* category, const char* detail);
|
||||
void HTTP_Event(const char* category, StringValPtr detail);
|
||||
void HTTP_Event(const char* category, zeek::StringValPtr detail);
|
||||
|
||||
void SkipEntityData(bool is_orig);
|
||||
|
||||
|
@ -230,14 +230,14 @@ protected:
|
|||
|
||||
void RequestMade(bool interrupted, const char* msg);
|
||||
void ReplyMade(bool interrupted, const char* msg);
|
||||
void RequestClash(Val* clash_val);
|
||||
void RequestClash(zeek::Val* clash_val);
|
||||
|
||||
const BroString* UnansweredRequestMethod();
|
||||
|
||||
int HTTP_ReplyCode(const char* code_str);
|
||||
int ExpectReplyMessageBody();
|
||||
|
||||
StringValPtr TruncateURI(const StringValPtr& uri);
|
||||
zeek::StringValPtr TruncateURI(const zeek::StringValPtr& uri);
|
||||
|
||||
int request_state, reply_state;
|
||||
int num_requests, num_replies;
|
||||
|
@ -257,19 +257,19 @@ protected:
|
|||
// in a reply.
|
||||
std::string upgrade_protocol;
|
||||
|
||||
StringValPtr request_method;
|
||||
zeek::StringValPtr request_method;
|
||||
|
||||
// request_URI is in the original form (may contain '%<hex><hex>'
|
||||
// sequences).
|
||||
StringValPtr request_URI;
|
||||
zeek::StringValPtr request_URI;
|
||||
|
||||
// unescaped_URI does not contain escaped sequences.
|
||||
StringValPtr unescaped_URI;
|
||||
zeek::StringValPtr unescaped_URI;
|
||||
|
||||
std::queue<StringValPtr> unanswered_requests;
|
||||
std::queue<zeek::StringValPtr> unanswered_requests;
|
||||
|
||||
int reply_code;
|
||||
StringValPtr reply_reason_phrase;
|
||||
zeek::StringValPtr reply_reason_phrase;
|
||||
|
||||
tcp::ContentLine_Analyzer* content_line_orig;
|
||||
tcp::ContentLine_Analyzer* content_line_resp;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue