summaryrefslogtreecommitdiff
path: root/src/map/chrif.c
diff options
context:
space:
mode:
authorshinomori <shinomori@54d463be-8e91-2dee-dedb-b68131a5f0ec>2005-03-04 20:26:36 +0000
committershinomori <shinomori@54d463be-8e91-2dee-dedb-b68131a5f0ec>2005-03-04 20:26:36 +0000
commitdf30f9f3d4361831f2aa1ce7808a49b6cca535f8 (patch)
tree81b49f0cff8f72734c08fd255c331c2035e31748 /src/map/chrif.c
parentceb9d10efbedfb55d5f25da49d4a9f2fd754542d (diff)
downloadhercules-df30f9f3d4361831f2aa1ce7808a49b6cca535f8.tar.gz
hercules-df30f9f3d4361831f2aa1ce7808a49b6cca535f8.tar.bz2
hercules-df30f9f3d4361831f2aa1ce7808a49b6cca535f8.tar.xz
hercules-df30f9f3d4361831f2aa1ce7808a49b6cca535f8.zip
forgot the chrif.c update the second week now..
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@1202 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/chrif.c')
-rw-r--r--src/map/chrif.c34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/map/chrif.c b/src/map/chrif.c
index bbc6a51e5..8bd70a737 100644
--- a/src/map/chrif.c
+++ b/src/map/chrif.c
@@ -100,7 +100,7 @@ int chrif_save(struct map_session_data *sd)
{
nullpo_retr(-1, sd);
- if (char_fd < 1)
+ if (char_fd < 1 || session[char_fd] == NULL || !chrif_isconnect())
return -1;
pc_makesavestatus(sd);
@@ -189,7 +189,7 @@ int chrif_changemapserver(struct map_session_data *sd, char *name, int x, int y,
nullpo_retr(-1, sd);
- if (!sd || char_fd < 1 )
+ if (!sd || char_fd < 1 || session[char_fd] == NULL || !chrif_isconnect() )
return -1;
s_ip = 0;
@@ -299,7 +299,7 @@ int chrif_authreq(struct map_session_data *sd)
nullpo_retr(-1, sd);
- if (!sd || char_fd < 1 || !sd->bl.id || !sd->login_id1)
+ if (!sd || char_fd < 1 || session[char_fd] == NULL || !chrif_isconnect() || !sd->bl.id || !sd->login_id1)
return -1;
for(i = 0; i < fd_max; i++)
@@ -327,7 +327,7 @@ int chrif_charselectreq(struct map_session_data *sd)
nullpo_retr(-1, sd);
- if(!sd || char_fd < 1 || !sd->bl.id || !sd->login_id1)
+ if(!sd || char_fd < 1 || session[char_fd] == NULL || !chrif_isconnect() || !sd->bl.id || !sd->login_id1)
return -1;
s_ip = 0;
@@ -353,7 +353,7 @@ int chrif_charselectreq(struct map_session_data *sd)
*/
int chrif_searchcharid(int char_id)
{
- if (!char_id || char_fd < 1)
+ if (!char_id || char_fd < 1 || session[char_fd] == NULL || !chrif_isconnect())
return -1;
WFIFOW(char_fd,0) = 0x2b08;
@@ -372,7 +372,7 @@ int chrif_changegm(int id, const char *pass, int len)
if (battle_config.etc_log)
printf("chrif_changegm: account: %d, password: '%s'.\n", id, pass);
- if (char_fd < 1 )
+ if (char_fd < 1 || session[char_fd] == NULL || !chrif_isconnect() )
return -1;
WFIFOW(char_fd,0) = 0x2b0a;
@@ -393,7 +393,7 @@ int chrif_changeemail(int id, const char *actual_email, const char *new_email)
if (battle_config.etc_log)
printf("chrif_changeemail: account: %d, actual_email: '%s', new_email: '%s'.\n", id, actual_email, new_email);
- if (char_fd < 1 )
+ if (char_fd < 1 || session[char_fd] == NULL || !chrif_isconnect() )
return -1;
WFIFOW(char_fd,0) = 0x2b0c;
@@ -418,7 +418,7 @@ int chrif_changeemail(int id, const char *actual_email, const char *new_email)
*/
int chrif_char_ask_name(int id, char * character_name, short operation_type, int year, int month, int day, int hour, int minute, int second)
{
- if (char_fd < 1 )
+ if (char_fd < 1 || session[char_fd] == NULL || !chrif_isconnect() )
return -1;
WFIFOW(char_fd, 0) = 0x2b0e;
@@ -444,7 +444,7 @@ int chrif_char_ask_name(int id, char * character_name, short operation_type, int
*------------------------------------------
*/
int chrif_changesex(int id, int sex) {
- if (char_fd < 1 )
+ if (char_fd < 1 || session[char_fd] == NULL || !chrif_isconnect() )
return -1;
WFIFOW(char_fd,0) = 0x2b11;
@@ -678,7 +678,7 @@ int chrif_saveaccountreg2(struct map_session_data *sd)
int p, j;
nullpo_retr(-1, sd);
- if (char_fd < 1 )
+ if (char_fd < 1 || session[char_fd] == NULL || !chrif_isconnect() )
return -1;
p = 8;
@@ -851,7 +851,7 @@ int chrif_chardisconnect(struct map_session_data *sd)
{
nullpo_retr(-1, sd);
- if(char_fd < 1)
+ if(char_fd < 1 || session[char_fd] == NULL || !chrif_isconnect())
return -1;
WFIFOW(char_fd,0)=0x2b18;
@@ -881,7 +881,7 @@ int chrif_recvgmaccounts(int fd)
*/
int chrif_reloadGMdb(void)
{
- if (char_fd < 1 )
+ if (char_fd < 1 || session[char_fd] == NULL || !chrif_isconnect() )
return -1;
WFIFOW(char_fd,0) = 0x2af7;
@@ -900,7 +900,7 @@ int chrif_reloadGMdb(void)
FILE *fp;
int i;
- if (char_fd < 1 )
+ if (char_fd < 1 || session[char_fd] == NULL || !chrif_isconnect() )
return -1;
WFIFOW(char_fd,0) = 0x2b16;
@@ -936,7 +936,7 @@ int chrif_reloadGMdb(void)
int chrif_char_offline(struct map_session_data *sd)
{
- if (char_fd < 1)
+ if (char_fd < 1 || session[char_fd] == NULL || !chrif_isconnect())
return -1;
WFIFOW(char_fd,0) = 0x2b17;
@@ -952,7 +952,7 @@ int chrif_char_offline(struct map_session_data *sd)
*-----------------------------------------
*/
int chrif_flush_fifo(void) {
- if (char_fd < 1)
+ if (char_fd < 1 || session[char_fd] == NULL || !chrif_isconnect())
return -1;
set_nonblocking(char_fd, 0);
@@ -967,7 +967,7 @@ int chrif_flush_fifo(void) {
*-----------------------------------------
*/
int chrif_char_reset_offline(void) {
- if (char_fd < 1)
+ if (char_fd < 1 || session[char_fd] == NULL || !chrif_isconnect())
return -1;
WFIFOW(char_fd,0) = 0x2b18;
@@ -983,7 +983,7 @@ int chrif_char_reset_offline(void) {
int chrif_char_online(struct map_session_data *sd)
{
- if (char_fd < 1)
+ if (char_fd < 1 || session[char_fd] == NULL || !chrif_isconnect())
return -1;
WFIFOW(char_fd,0) = 0x2b19;