summaryrefslogtreecommitdiff
path: root/src/map/chrif.c
diff options
context:
space:
mode:
authorKevin <Kevin@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-04-26 22:13:02 +0000
committerKevin <Kevin@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-04-26 22:13:02 +0000
commit7e0628c6afa5697af386df0b872eb6f1236930f7 (patch)
treea133f90109c4a80513ca29dcbd127208cf562d07 /src/map/chrif.c
parentbbd4222e1bd65ad447c5f87331b6e5af7cd0c4ef (diff)
downloadhercules-7e0628c6afa5697af386df0b872eb6f1236930f7.tar.gz
hercules-7e0628c6afa5697af386df0b872eb6f1236930f7.tar.bz2
hercules-7e0628c6afa5697af386df0b872eb6f1236930f7.tar.xz
hercules-7e0628c6afa5697af386df0b872eb6f1236930f7.zip
Cleaned up auth system after change back to map server request.
- Created function set_char_charselect to get rid of some of the "special case" variables. - Removed code that involved the char server sending auth data at char select. - Changed char select code to update the instance of the char data in the DB to fix map/sex info not being propagated to auth request. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12658 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/chrif.c')
-rw-r--r--src/map/chrif.c44
1 files changed, 6 insertions, 38 deletions
diff --git a/src/map/chrif.c b/src/map/chrif.c
index 9a69d9fe7..4fb22629f 100644
--- a/src/map/chrif.c
+++ b/src/map/chrif.c
@@ -516,7 +516,7 @@ void chrif_authreq(struct map_session_data *sd)
struct auth_node *node= chrif_search(sd->bl.id);
if(!node) {
- //data from char server has not arrived yet.
+ //request data from char server and store current auth info
WFIFOHEAD(char_fd,19);
WFIFOW(char_fd,0) = 0x2b26;
WFIFOL(char_fd,2) = sd->status.account_id;
@@ -527,30 +527,10 @@ void chrif_authreq(struct map_session_data *sd)
WFIFOSET(char_fd,19);
chrif_sd_to_auth(sd, ST_LOGIN);
return;
- }
-
- if(node->state == ST_LOGIN &&
- node->char_dat &&
- node->account_id == sd->status.account_id &&
- node->char_id == sd->status.char_id &&
- node->login_id1 == sd->login_id1)
- { //auth ok
- if (!pc_authok(sd, node->login_id2, node->expiration_time, node->char_dat))
- {
- chrif_char_offline(sd); //Set client offline
- chrif_auth_delete(node->account_id, node->char_id, ST_LOGIN);
- }
- else {
- //char_dat no longer needed, but player auth is not completed yet.
- aFree(node->char_dat);
- node->char_dat = NULL;
- node->sd = sd;
- chrif_char_online(sd); //Set client online
- }
- } else { //auth failed
+ } else { //char already online? kick connect request and tell char server that this person is online
+ //This case shouldn't happen in an ideal system
pc_authfail(sd);
- chrif_char_offline(sd); //Set client offline
- chrif_auth_delete(sd->status.account_id, sd->status.char_id, ST_LOGIN);
+ chrif_char_online(sd);
}
return;
}
@@ -613,20 +593,6 @@ void chrif_authok(int fd)
//discard the older one and keep the new one.
chrif_auth_delete(node->account_id, node->char_id, ST_LOGIN);
}
-
- // Awaiting for client to connect.
- node = ers_alloc(auth_db_ers, struct auth_node);
- memset(node, 0, sizeof(struct auth_node));
- node->char_dat = (struct mmo_charstatus *) aMalloc(sizeof(struct mmo_charstatus));
-
- node->account_id=account_id;
- node->char_id=char_id;
- node->login_id1=login_id1;
- node->expiration_time=expiration_time;
- node->login_id2=login_id2;
- memcpy(node->char_dat,status,sizeof(struct mmo_charstatus));
- node->node_created=gettick();
- idb_put(auth_db, account_id, node);
}
// client authentication failed
@@ -658,6 +624,8 @@ void chrif_authfail(int fd)
}
}
+
+//This can still happen (client times out while waiting for char to confirm auth data)
int auth_db_cleanup_sub(DBKey key,void *data,va_list ap)
{
struct auth_node *node=(struct auth_node*)data;