Working on TODOs.

- Introducing analyzer::<protocol> namespaces.
- Moving protocol-specific events out of events.bif into analyzer/protocol/<protocol>/events.bif
- Moving ARP over (even though it's not an actual analyzer).
- Moving NetFlow over (even though it's not an actual analyzer).
- Moving MIME over (even though it's not an actual analyzer).
This commit is contained in:
Robin Sommer 2013-04-18 14:39:32 -07:00
parent dfc4cb0881
commit 5dc630f722
210 changed files with 7080 additions and 6608 deletions

View file

@ -6,7 +6,9 @@
#include "analyzer/protocols/tcp/TCP.h"
#include "analyzer/protocols/tcp/ContentLine.h"
class SSH_Analyzer : public TCP_ApplicationAnalyzer {
namespace analyzer { namespace ssh {
class SSH_Analyzer : public tcp::TCP_ApplicationAnalyzer {
public:
SSH_Analyzer(Connection* conn);
@ -16,8 +18,10 @@ public:
{ return new SSH_Analyzer(conn); }
private:
ContentLine_Analyzer* orig;
ContentLine_Analyzer* resp;
tcp::ContentLine_Analyzer* orig;
tcp::ContentLine_Analyzer* resp;
};
} } // namespace analyzer::*
#endif