comparison src/mail/ngx_mail_pop3_handler.c @ 1477:59e1caf2be94

style fix and optimizations
author Igor Sysoev <igor@sysoev.ru>
date Thu, 13 Sep 2007 20:27:28 +0000
parents 67578e966dcc
children 2647950e047f
comparison
equal deleted inserted replaced
1476:67578e966dcc 1477:59e1caf2be94
99 return; 99 return;
100 } 100 }
101 } 101 }
102 102
103 s->mail_state = ngx_pop3_start; 103 s->mail_state = ngx_pop3_start;
104 c->read->handler = ngx_pop3_auth_state; 104 c->read->handler = ngx_mail_pop3_auth_state;
105 105
106 ngx_pop3_auth_state(rev); 106 ngx_mail_pop3_auth_state(rev);
107 } 107 }
108 108
109 109
110 void 110 void
111 ngx_pop3_auth_state(ngx_event_t *rev) 111 ngx_mail_pop3_auth_state(ngx_event_t *rev)
112 { 112 {
113 ngx_int_t rc; 113 ngx_int_t rc;
114 ngx_connection_t *c; 114 ngx_connection_t *c;
115 ngx_mail_session_t *s; 115 ngx_mail_session_t *s;
116 116