mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Merge remote-tracking branch 'jsoref/spelling-expr'
* jsoref/spelling-expr: spelling: successful spelling: deterministic spelling: canonicalize spelling: algorithm
This commit is contained in:
commit
a85f1044eb
8 changed files with 27 additions and 27 deletions
|
@ -139,7 +139,7 @@ void TelnetTerminalOption::RecvSubOption(u_char* data, int len)
|
|||
}
|
||||
|
||||
#define ENCRYPT_SET_ALGORITHM 0
|
||||
#define ENCRYPT_SUPPORT_ALGORITM 1
|
||||
#define ENCRYPT_SUPPORT_ALGORITHM 1
|
||||
#define ENCRYPT_REPLY 2
|
||||
#define ENCRYPT_STARTING_TO_ENCRYPT 3
|
||||
#define ENCRYPT_NO_LONGER_ENCRYPTING 4
|
||||
|
|
|
@ -676,7 +676,7 @@ void POP3_Analyzer::ProcessReply(int length, const char* line)
|
|||
case detail::DELE:
|
||||
case detail::XSENDER:
|
||||
if ( masterState == detail::POP3_AUTHORIZATION )
|
||||
AuthSuccessfull();
|
||||
AuthSuccessful();
|
||||
masterState = detail::POP3_TRANSACTION;
|
||||
break;
|
||||
|
||||
|
@ -689,7 +689,7 @@ void POP3_Analyzer::ProcessReply(int length, const char* line)
|
|||
if ( waitingForAuthentication )
|
||||
masterState = detail::POP3_TRANSACTION;
|
||||
waitingForAuthentication = false;
|
||||
AuthSuccessfull();
|
||||
AuthSuccessful();
|
||||
break;
|
||||
|
||||
case detail::TOP:
|
||||
|
@ -819,7 +819,7 @@ void POP3_Analyzer::StartTLS()
|
|||
EnqueueConnEvent(pop3_starttls, ConnVal());
|
||||
}
|
||||
|
||||
void POP3_Analyzer::AuthSuccessfull()
|
||||
void POP3_Analyzer::AuthSuccessful()
|
||||
{
|
||||
if ( user.size() )
|
||||
POP3Event(pop3_login_success, false, user.c_str(), password.c_str());
|
||||
|
|
|
@ -108,7 +108,7 @@ protected:
|
|||
|
||||
std::vector<std::string> TokenizeLine(const std::string& input, char split);
|
||||
int ParseCmd(std::string cmd);
|
||||
void AuthSuccessfull();
|
||||
void AuthSuccessful();
|
||||
void POP3Event(EventHandlerPtr event, bool is_orig, const char* arg1 = nullptr,
|
||||
const char* arg2 = nullptr);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue