mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 01:58:20 +00:00
Initial import of svn+ssh:://svn.icir.org/bro/trunk/bro as of r7088
This commit is contained in:
commit
61757ac78b
1383 changed files with 380824 additions and 0 deletions
25
src/Telnet.h
Normal file
25
src/Telnet.h
Normal file
|
@ -0,0 +1,25 @@
|
|||
// $Id: Telnet.h 6219 2008-10-01 05:39:07Z vern $
|
||||
//
|
||||
// See the file "COPYING" in the main distribution directory for copyright.
|
||||
|
||||
#ifndef telnet_h
|
||||
#define telnet_h
|
||||
|
||||
#include "Login.h"
|
||||
|
||||
class Telnet_Analyzer : public Login_Analyzer {
|
||||
public:
|
||||
Telnet_Analyzer(Connection* conn);
|
||||
virtual ~Telnet_Analyzer() {}
|
||||
|
||||
static Analyzer* InstantiateAnalyzer(Connection* conn)
|
||||
{ return new Telnet_Analyzer(conn); }
|
||||
|
||||
static bool Available()
|
||||
{
|
||||
return login_failure || login_success ||
|
||||
login_input_line || login_output_line;
|
||||
}
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue