mirror of https://github.com/yandex/odyssey.git
odissey: rename auth function
This commit is contained in:
parent
1950ee9c24
commit
c818746cdf
|
@ -121,7 +121,7 @@ int od_fekey(od_client_t *client)
|
|||
return 0;
|
||||
}
|
||||
|
||||
int od_feauth(od_client_t *client)
|
||||
int od_feauthenticate(od_client_t *client)
|
||||
{
|
||||
so_stream_t *stream = &client->stream;
|
||||
so_stream_reset(stream);
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
int od_festartup(od_client_t*);
|
||||
int od_fekey(od_client_t*);
|
||||
int od_feauth(od_client_t*);
|
||||
int od_feauthenticate(od_client_t*);
|
||||
int od_fesetup(od_client_t*);
|
||||
int od_feready(od_client_t*);
|
||||
int od_feerror(od_client_t*, char*, ...);
|
||||
|
|
|
@ -109,7 +109,7 @@ void od_router(void *arg)
|
|||
}
|
||||
|
||||
/* client auth */
|
||||
rc = od_feauth(client);
|
||||
rc = od_feauthenticate(client);
|
||||
if (rc == -1) {
|
||||
od_feclose(client);
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue