summaryrefslogtreecommitdiff
path: root/src/ladmin
diff options
context:
space:
mode:
Diffstat (limited to 'src/ladmin')
-rw-r--r--src/ladmin/ladmin.c9985
-rw-r--r--src/ladmin/ladmin.h8
-rw-r--r--src/ladmin/md5calc.c382
-rw-r--r--src/ladmin/md5calc.h4
4 files changed, 6326 insertions, 4053 deletions
diff --git a/src/ladmin/ladmin.c b/src/ladmin/ladmin.c
index 810be57..9ea2b28 100644
--- a/src/ladmin/ladmin.c
+++ b/src/ladmin/ladmin.c
@@ -10,17 +10,17 @@
#include <stdio.h>
#include <stdlib.h>
#include <netinet/in.h>
-#include <sys/time.h> // gettimeofday
+#include <sys/time.h> // gettimeofday
#include <time.h>
#include <sys/ioctl.h>
-#include <unistd.h> // close
+#include <unistd.h> // close
#include <signal.h>
#include <fcntl.h>
-#include <string.h> // str*
-#include <arpa/inet.h> // inet_addr
-#include <netdb.h> // gethostbyname
-#include <stdarg.h> // valist
-#include <ctype.h> // tolower
+#include <string.h> // str*
+#include <arpa/inet.h> // inet_addr
+#include <netdb.h> // gethostbyname
+#include <stdarg.h> // valist
+#include <ctype.h> // tolower
#include "core.h"
#include "socket.h"
@@ -49,15 +49,15 @@ extern int eathena_interactive_session; // from core.c
// Be sure that you authorize remote administration in login-server
// (see login_athena.conf, 'admin_state' parameter)
//-------------------------------------------------------------------------
-char loginserverip[16] = "127.0.0.1"; // IP of login-server
-int loginserverport = 6900; // Port of login-server
-char loginserveradminpassword[24] = "admin"; // Administration password
+char loginserverip[16] = "127.0.0.1"; // IP of login-server
+int loginserverport = 6900; // Port of login-server
+char loginserveradminpassword[24] = "admin"; // Administration password
#ifdef PASSWORDENC
-int passenc = 2; // Encoding type of the password
+int passenc = 2; // Encoding type of the password
#else
-int passenc = 0; // Encoding type of the password
+int passenc = 0; // Encoding type of the password
#endif
-char defaultlanguage = 'E'; // Default language (F: Français/E: English)
+char defaultlanguage = 'E'; // Default language (F: Français/E: English)
// (if it's not 'F', default is English)
char ladmin_log_filename[1024] = "log/ladmin.log";
char date_format[32] = "%Y-%m-%d %H:%M:%S";
@@ -244,953 +244,1438 @@ char date_format[32] = "%Y-%m-%d %H:%M:%S";
// Displays complete information of an account.
//
//-------------------------------------------------------------------------
-int login_fd;
-int login_ip;
-int bytes_to_read = 0; // flag to know if we waiting bytes from login-server
+int login_fd;
+int login_ip;
+int bytes_to_read = 0; // flag to know if we waiting bytes from login-server
char command[1024];
char parameters[1024];
-int list_first, list_last, list_type, list_count; // parameter to display a list of accounts
-int already_exit_function = 0; // sometimes, the exit function is called twice... so, don't log twice the message
+int list_first, list_last, list_type, list_count; // parameter to display a list of accounts
+int already_exit_function = 0; // sometimes, the exit function is called twice... so, don't log twice the message
//------------------------------
// Writing function of logs file
//------------------------------
-int ladmin_log(char *fmt, ...) {
- FILE *logfp;
- va_list ap;
- struct timeval tv;
- char tmpstr[2048];
-
- va_start(ap, fmt);
-
- logfp = fopen_(ladmin_log_filename, "a");
- if (logfp) {
- if (fmt[0] == '\0') // jump a line if no message
- fprintf(logfp, RETCODE);
- else {
- gettimeofday(&tv, NULL);
- strftime(tmpstr, 24, date_format, localtime(&(tv.tv_sec)));
- sprintf(tmpstr + strlen(tmpstr), ".%03d: %s", (int)tv.tv_usec / 1000, fmt);
- vfprintf(logfp, tmpstr, ap);
- }
- fclose_(logfp);
- }
+int ladmin_log (char *fmt, ...)
+{
+ FILE *logfp;
+ va_list ap;
+ struct timeval tv;
+ char tmpstr[2048];
+
+ va_start (ap, fmt);
+
+ logfp = fopen_ (ladmin_log_filename, "a");
+ if (logfp)
+ {
+ if (fmt[0] == '\0') // jump a line if no message
+ fprintf (logfp, RETCODE);
+ else
+ {
+ gettimeofday (&tv, NULL);
+ strftime (tmpstr, 24, date_format, localtime (&(tv.tv_sec)));
+ sprintf (tmpstr + strlen (tmpstr), ".%03d: %s",
+ (int) tv.tv_usec / 1000, fmt);
+ vfprintf (logfp, tmpstr, ap);
+ }
+ fclose_ (logfp);
+ }
- va_end(ap);
- return 0;
+ va_end (ap);
+ return 0;
}
//-----------------------------------------------------
// Function to suppress control characters in a string.
//-----------------------------------------------------
-int remove_control_chars(unsigned char *str) {
- int i;
- int change = 0;
-
- for(i = 0; str[i]; i++) {
- if (str[i] < 32) {
- str[i] = '_';
- change = 1;
- }
- }
+int remove_control_chars (unsigned char *str)
+{
+ int i;
+ int change = 0;
+
+ for (i = 0; str[i]; i++)
+ {
+ if (str[i] < 32)
+ {
+ str[i] = '_';
+ change = 1;
+ }
+ }
- return change;
+ return change;
}
//---------------------------------------------
// Function to return ordonal text of a number.
//---------------------------------------------
-char* makeordinal(int number) {
- if (defaultlanguage == 'F') {
- if (number == 0)
- return "";
- else if (number == 1)
- return "er";
- else
- return "ème";
- } else {
- if ((number % 10) < 4 && (number % 10) != 0 && (number < 10 || number > 20)) {
- if ((number % 10) == 1)
- return "st";
- else if ((number % 10) == 2)
- return "nd";
- else
- return "rd";
- } else {
- return "th";
- }
- }
- return "";
+char *makeordinal (int number)
+{
+ if (defaultlanguage == 'F')
+ {
+ if (number == 0)
+ return "";
+ else if (number == 1)
+ return "er";
+ else
+ return "ème";
+ }
+ else
+ {
+ if ((number % 10) < 4 && (number % 10) != 0
+ && (number < 10 || number > 20))
+ {
+ if ((number % 10) == 1)
+ return "st";
+ else if ((number % 10) == 2)
+ return "nd";
+ else
+ return "rd";
+ }
+ else
+ {
+ return "th";
+ }
+ }
+ return "";
}
//-----------------------------------------------------------------------------------------
// Function to test of the validity of an account name (return 0 if incorrect, and 1 if ok)
//-----------------------------------------------------------------------------------------
-int verify_accountname(char* account_name) {
- int i;
-
- for(i = 0; account_name[i]; i++) {
- if (account_name[i] < 32) {
- if (defaultlanguage == 'F') {
- printf("Caractère interdit trouvé dans le nom du compte (%d%s caractère).\n", i+1, makeordinal(i+1));
- ladmin_log("Caractère interdit trouvé dans le nom du compte (%d%s caractère)." RETCODE, i+1, makeordinal(i+1));
- } else {
- printf("Illegal character found in the account name (%d%s character).\n", i+1, makeordinal(i+1));
- ladmin_log("Illegal character found in the account name (%d%s character)." RETCODE, i+1, makeordinal(i+1));
- }
- return 0;
- }
- }
-
- if (strlen(account_name) < 4) {
- if (defaultlanguage == 'F') {
- printf("Nom du compte trop court. Entrez un nom de compte de 4-23 caractères.\n");
- ladmin_log("Nom du compte trop court. Entrez un nom de compte de 4-23 caractères." RETCODE);
- } else {
- printf("Account name is too short. Please input an account name of 4-23 bytes.\n");
- ladmin_log("Account name is too short. Please input an account name of 4-23 bytes." RETCODE);
- }
- return 0;
- }
-
- if (strlen(account_name) > 23) {
- if (defaultlanguage == 'F') {
- printf("Nom du compte trop long. Entrez un nom de compte de 4-23 caractères.\n");
- ladmin_log("Nom du compte trop long. Entrez un nom de compte de 4-23 caractères." RETCODE);
- } else {
- printf("Account name is too long. Please input an account name of 4-23 bytes.\n");
- ladmin_log("Account name is too long. Please input an account name of 4-23 bytes." RETCODE);
- }
- return 0;
- }
+int verify_accountname (char *account_name)
+{
+ int i;
+
+ for (i = 0; account_name[i]; i++)
+ {
+ if (account_name[i] < 32)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Caractère interdit trouvé dans le nom du compte (%d%s caractère).\n",
+ i + 1, makeordinal (i + 1));
+ ladmin_log
+ ("Caractère interdit trouvé dans le nom du compte (%d%s caractère)."
+ RETCODE, i + 1, makeordinal (i + 1));
+ }
+ else
+ {
+ printf
+ ("Illegal character found in the account name (%d%s character).\n",
+ i + 1, makeordinal (i + 1));
+ ladmin_log
+ ("Illegal character found in the account name (%d%s character)."
+ RETCODE, i + 1, makeordinal (i + 1));
+ }
+ return 0;
+ }
+ }
+
+ if (strlen (account_name) < 4)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Nom du compte trop court. Entrez un nom de compte de 4-23 caractères.\n");
+ ladmin_log
+ ("Nom du compte trop court. Entrez un nom de compte de 4-23 caractères."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Account name is too short. Please input an account name of 4-23 bytes.\n");
+ ladmin_log
+ ("Account name is too short. Please input an account name of 4-23 bytes."
+ RETCODE);
+ }
+ return 0;
+ }
+
+ if (strlen (account_name) > 23)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Nom du compte trop long. Entrez un nom de compte de 4-23 caractères.\n");
+ ladmin_log
+ ("Nom du compte trop long. Entrez un nom de compte de 4-23 caractères."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Account name is too long. Please input an account name of 4-23 bytes.\n");
+ ladmin_log
+ ("Account name is too long. Please input an account name of 4-23 bytes."
+ RETCODE);
+ }
+ return 0;
+ }
- return 1;
+ return 1;
}
//---------------------------------------------------
// E-mail check: return 0 (not correct) or 1 (valid).
//---------------------------------------------------
-int e_mail_check(unsigned char *email) {
- char ch;
- unsigned char* last_arobas;
+int e_mail_check (unsigned char *email)
+{
+ char ch;
+ unsigned char *last_arobas;
- // athena limits
- if (strlen(email) < 3 || strlen(email) > 39)
- return 0;
+ // athena limits
+ if (strlen (email) < 3 || strlen (email) > 39)
+ return 0;
- // part of RFC limits (official reference of e-mail description)
- if (strchr(email, '@') == NULL || email[strlen(email)-1] == '@')
- return 0;
+ // part of RFC limits (official reference of e-mail description)
+ if (strchr (email, '@') == NULL || email[strlen (email) - 1] == '@')
+ return 0;
- if (email[strlen(email)-1] == '.')
- return 0;
+ if (email[strlen (email) - 1] == '.')
+ return 0;
- last_arobas = strrchr(email, '@');
+ last_arobas = strrchr (email, '@');
- if (strstr(last_arobas, "@.") != NULL ||
- strstr(last_arobas, "..") != NULL)
- return 0;
+ if (strstr (last_arobas, "@.") != NULL ||
+ strstr (last_arobas, "..") != NULL)
+ return 0;
- for(ch = 1; ch < 32; ch++) {
- if (strchr(last_arobas, ch) != NULL) {
- return 0;
- break;
- }
- }
+ for (ch = 1; ch < 32; ch++)
+ {
+ if (strchr (last_arobas, ch) != NULL)
+ {
+ return 0;
+ break;
+ }
+ }
- if (strchr(last_arobas, ' ') != NULL ||
- strchr(last_arobas, ';') != NULL)
- return 0;
+ if (strchr (last_arobas, ' ') != NULL ||
+ strchr (last_arobas, ';') != NULL)
+ return 0;
- // all correct
- return 1;
+ // all correct
+ return 1;
}
//----------------------------------
// Sub-function: Input of a password
//----------------------------------
-int typepasswd(char * password) {
- char password1[1023], password2[1023];
- int letter;
- int i;
-
- if (defaultlanguage == 'F') {
- ladmin_log("Aucun mot de passe n'a été donné. Demande d'un mot de passe." RETCODE);
- } else {
- ladmin_log("No password was given. Request to obtain a password." RETCODE);
- }
-
- memset(password1, '\0', sizeof(password1));
- memset(password2, '\0', sizeof(password2));
- if (defaultlanguage == 'F')
- printf("\033[1;36m Entrez le mot de passe > \033[0;32;42m");
- else
- printf("\033[1;36m Type the password > \033[0;32;42m");
- i = 0;
- while ((letter = getchar()) != '\n')
- password1[i++] = letter;
- if (defaultlanguage == 'F')
- printf("\033[0m\033[1;36m Ré-entrez le mot de passe > \033[0;32;42m");
- else
- printf("\033[0m\033[1;36m Verify the password > \033[0;32;42m");
- i = 0;
- while ((letter = getchar()) != '\n')
- password2[i++] = letter;
-
- printf("\033[0m");
- fflush(stdout);
- fflush(stdin);
-
- if (strcmp(password1, password2) != 0) {
- if (defaultlanguage == 'F') {
- printf("Erreur de vérification du mot de passe: Saisissez le même mot de passe svp.\n");
- ladmin_log("Erreur de vérification du mot de passe: Saisissez le même mot de passe svp." RETCODE);
- ladmin_log(" Premier mot de passe: %s, second mot de passe: %s." RETCODE, password1, password2);
- } else {
- printf("Password verification failed. Please input same password.\n");
- ladmin_log("Password verification failed. Please input same password." RETCODE);
- ladmin_log(" First password: %s, second password: %s." RETCODE, password1, password2);
- }
- return 0;
- }
- if (defaultlanguage == 'F') {
- ladmin_log("Mot de passe saisi: %s." RETCODE, password1);
- } else {
- ladmin_log("Typed password: %s." RETCODE, password1);
- }
- strcpy(password, password1);
- return 1;
+int typepasswd (char *password)
+{
+ char password1[1023], password2[1023];
+ int letter;
+ int i;
+
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log
+ ("Aucun mot de passe n'a été donné. Demande d'un mot de passe."
+ RETCODE);
+ }
+ else
+ {
+ ladmin_log ("No password was given. Request to obtain a password."
+ RETCODE);
+ }
+
+ memset (password1, '\0', sizeof (password1));
+ memset (password2, '\0', sizeof (password2));
+ if (defaultlanguage == 'F')
+ printf ("\033[1;36m Entrez le mot de passe > \033[0;32;42m");
+ else
+ printf ("\033[1;36m Type the password > \033[0;32;42m");
+ i = 0;
+ while ((letter = getchar ()) != '\n')
+ password1[i++] = letter;
+ if (defaultlanguage == 'F')
+ printf
+ ("\033[0m\033[1;36m Ré-entrez le mot de passe > \033[0;32;42m");
+ else
+ printf ("\033[0m\033[1;36m Verify the password > \033[0;32;42m");
+ i = 0;
+ while ((letter = getchar ()) != '\n')
+ password2[i++] = letter;
+
+ printf ("\033[0m");
+ fflush (stdout);
+ fflush (stdin);
+
+ if (strcmp (password1, password2) != 0)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Erreur de vérification du mot de passe: Saisissez le même mot de passe svp.\n");
+ ladmin_log
+ ("Erreur de vérification du mot de passe: Saisissez le même mot de passe svp."
+ RETCODE);
+ ladmin_log (" Premier mot de passe: %s, second mot de passe: %s."
+ RETCODE, password1, password2);
+ }
+ else
+ {
+ printf
+ ("Password verification failed. Please input same password.\n");
+ ladmin_log
+ ("Password verification failed. Please input same password."
+ RETCODE);
+ ladmin_log (" First password: %s, second password: %s." RETCODE,
+ password1, password2);
+ }
+ return 0;
+ }
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log ("Mot de passe saisi: %s." RETCODE, password1);
+ }
+ else
+ {
+ ladmin_log ("Typed password: %s." RETCODE, password1);
+ }
+ strcpy (password, password1);
+ return 1;
}
//------------------------------------------------------------------------------------
// Sub-function: Test of the validity of password (return 0 if incorrect, and 1 if ok)
//------------------------------------------------------------------------------------
-int verify_password(char * password) {
- int i;
-
- for(i = 0; password[i]; i++) {
- if (password[i] < 32) {
- if (defaultlanguage == 'F') {
- printf("Caractère interdit trouvé dans le mot de passe (%d%s caractère).\n", i+1, makeordinal(i+1));
- ladmin_log("Caractère interdit trouvé dans le nom du compte (%d%s caractère)." RETCODE, i+1, makeordinal(i+1));
- } else {
- printf("Illegal character found in the password (%d%s character).\n", i+1, makeordinal(i+1));
- ladmin_log("Illegal character found in the password (%d%s character)." RETCODE, i+1, makeordinal(i+1));
- }
- return 0;
- }
- }
-
- if (strlen(password) < 4) {
- if (defaultlanguage == 'F') {
- printf("Nom du compte trop court. Entrez un nom de compte de 4-23 caractères.\n");
- ladmin_log("Nom du compte trop court. Entrez un nom de compte de 4-23 caractères." RETCODE);
- } else {
- printf("Account name is too short. Please input an account name of 4-23 bytes.\n");
- ladmin_log("Account name is too short. Please input an account name of 4-23 bytes." RETCODE);
- }
- return 0;
- }
-
- if (strlen(password) > 23) {
- if (defaultlanguage == 'F') {
- printf("Mot de passe trop long. Entrez un mot de passe de 4-23 caractères.\n");
- ladmin_log("Mot de passe trop long. Entrez un mot de passe de 4-23 caractères." RETCODE);
- } else {
- printf("Password is too long. Please input a password of 4-23 bytes.\n");
- ladmin_log("Password is too long. Please input a password of 4-23 bytes." RETCODE);
- }
- return 0;
- }
+int verify_password (char *password)
+{
+ int i;
+
+ for (i = 0; password[i]; i++)
+ {
+ if (password[i] < 32)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Caractère interdit trouvé dans le mot de passe (%d%s caractère).\n",
+ i + 1, makeordinal (i + 1));
+ ladmin_log
+ ("Caractère interdit trouvé dans le nom du compte (%d%s caractère)."
+ RETCODE, i + 1, makeordinal (i + 1));
+ }
+ else
+ {
+ printf
+ ("Illegal character found in the password (%d%s character).\n",
+ i + 1, makeordinal (i + 1));
+ ladmin_log
+ ("Illegal character found in the password (%d%s character)."
+ RETCODE, i + 1, makeordinal (i + 1));
+ }
+ return 0;
+ }
+ }
+
+ if (strlen (password) < 4)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Nom du compte trop court. Entrez un nom de compte de 4-23 caractères.\n");
+ ladmin_log
+ ("Nom du compte trop court. Entrez un nom de compte de 4-23 caractères."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Account name is too short. Please input an account name of 4-23 bytes.\n");
+ ladmin_log
+ ("Account name is too short. Please input an account name of 4-23 bytes."
+ RETCODE);
+ }
+ return 0;
+ }
+
+ if (strlen (password) > 23)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Mot de passe trop long. Entrez un mot de passe de 4-23 caractères.\n");
+ ladmin_log
+ ("Mot de passe trop long. Entrez un mot de passe de 4-23 caractères."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Password is too long. Please input a password of 4-23 bytes.\n");
+ ladmin_log
+ ("Password is too long. Please input a password of 4-23 bytes."
+ RETCODE);
+ }
+ return 0;
+ }
- return 1;
+ return 1;
}
//------------------------------------------------------------------
// Sub-function: Check the name of a command (return complete name)
//-----------------------------------------------------------------
-int check_command(char * command) {
+int check_command (char *command)
+{
// help
- if (strncmp(command, "aide", 2) == 0 && strncmp(command, "aide", strlen(command)) == 0) // not 1 letter command: 'aide' or 'add'?
- strcpy(command, "aide");
- else if (strncmp(command, "help", 1) == 0 && strncmp(command, "help", strlen(command)) == 0)
- strcpy(command, "help");
+ if (strncmp (command, "aide", 2) == 0 && strncmp (command, "aide", strlen (command)) == 0) // not 1 letter command: 'aide' or 'add'?
+ strcpy (command, "aide");
+ else if (strncmp (command, "help", 1) == 0
+ && strncmp (command, "help", strlen (command)) == 0)
+ strcpy (command, "help");
// general commands
- else if (strncmp(command, "add", 2) == 0 && strncmp(command, "add", strlen(command)) == 0) // not 1 letter command: 'aide' or 'add'?
- strcpy(command, "add");
- else if ((strncmp(command, "ban", 3) == 0 && strncmp(command, "ban", strlen(command)) == 0) ||
- (strncmp(command, "banish", 4) == 0 && strncmp(command, "banish", strlen(command)) == 0))
- strcpy(command, "ban");
- else if ((strncmp(command, "banadd", 4) == 0 && strncmp(command, "banadd", strlen(command)) == 0) || // not 1 letter command: 'ba' or 'bs'? 'banadd' or 'banset' ?
- strcmp(command, "ba") == 0)
- strcpy(command, "banadd");
- else if ((strncmp(command, "banset", 4) == 0 && strncmp(command, "banset", strlen(command)) == 0) || // not 1 letter command: 'ba' or 'bs'? 'banadd' or 'banset' ?
- strcmp(command, "bs") == 0)
- strcpy(command, "banset");
- else if (strncmp(command, "block", 2) == 0 && strncmp(command, "block", strlen(command)) == 0)
- strcpy(command, "block");
- else if (strncmp(command, "check", 2) == 0 && strncmp(command, "check", strlen(command)) == 0) // not 1 letter command: 'check' or 'create'?
- strcpy(command, "check");
- else if (strncmp(command, "create", 2) == 0 && strncmp(command, "create", strlen(command)) == 0) // not 1 letter command: 'check' or 'create'?
- strcpy(command, "create");
- else if (strncmp(command, "delete", 1) == 0 && strncmp(command, "delete", strlen(command)) == 0)
- strcpy(command, "delete");
- else if ((strncmp(command, "email", 2) == 0 && strncmp(command, "email", strlen(command)) == 0) || // not 1 letter command: 'email', 'end' or 'exit'?
- (strncmp(command, "e-mail", 2) == 0 && strncmp(command, "e-mail", strlen(command)) == 0))
- strcpy(command, "email");
- else if (strncmp(command, "getcount", 2) == 0 && strncmp(command, "getcount", strlen(command)) == 0) // not 1 letter command: 'getcount' or 'gm'?
- strcpy(command, "getcount");
-// else if (strncmp(command, "gm", 2) == 0 && strncmp(command, "gm", strlen(command)) == 0) // not 1 letter command: 'getcount' or 'gm'?
-// strcpy(command, "gm");
-// else if (strncmp(command, "id", 2) == 0 && strncmp(command, "id", strlen(command)) == 0) // not 1 letter command: 'id' or 'info'?
-// strcpy(command, "id");
- else if (strncmp(command, "info", 2) == 0 && strncmp(command, "info", strlen(command)) == 0) // not 1 letter command: 'id' or 'info'?
- strcpy(command, "info");
-// else if (strncmp(command, "kami", 4) == 0 && strncmp(command, "kami", strlen(command)) == 0) // only all letters command: 'kami' or 'kamib'?
-// strcpy(command, "kami");
-// else if (strncmp(command, "kamib", 5) == 0 && strncmp(command, "kamib", strlen(command)) == 0) // only all letters command: 'kami' or 'kamib'?
-// strcpy(command, "kamib");
- else if ((strncmp(command, "language", 2) == 0 && strncmp(command, "language", strlen(command)) == 0)) // not 1 letter command: 'language' or 'list'?
- strcpy(command, "language");
- else if ((strncmp(command, "list", 2) == 0 && strncmp(command, "list", strlen(command)) == 0) || // 'list' is default list command // not 1 letter command: 'language' or 'list'?
- strcmp(command, "ls") == 0)
- strcpy(command, "list");
- else if (strncmp(command, "itemfrob", 6) == 0)
- strcpy(command, "itemfrob");
- else if ((strncmp(command, "listban", 5) == 0 && strncmp(command, "listban", strlen(command)) == 0) ||
- (strncmp(command, "lsban", 3) == 0 && strncmp(command, "lsban", strlen(command)) == 0) ||
- strcmp(command, "lb") == 0)
- strcpy(command, "listban");
- else if ((strncmp(command, "listgm", 5) == 0 && strncmp(command, "listgm", strlen(command)) == 0) ||
- (strncmp(command, "lsgm", 3) == 0 && strncmp(command, "lsgm", strlen(command)) == 0) ||
- strcmp(command, "lg") == 0)
- strcpy(command, "listgm");
- else if ((strncmp(command, "listok", 5) == 0 && strncmp(command, "listok", strlen(command)) == 0) ||
- (strncmp(command, "lsok", 3) == 0 && strncmp(command, "lsok", strlen(command)) == 0) ||
- strcmp(command, "lo") == 0)
- strcpy(command, "listok");
- else if (strncmp(command, "memo", 1) == 0 && strncmp(command, "memo", strlen(command)) == 0)
- strcpy(command, "memo");
- else if (strncmp(command, "name", 1) == 0 && strncmp(command, "name", strlen(command)) == 0)
- strcpy(command, "name");
- else if ((strncmp(command, "password", 1) == 0 && strncmp(command, "password", strlen(command)) == 0) ||
- strcmp(command, "passwd") == 0)
- strcpy(command, "password");
- else if (strncmp(command, "reloadgm", 1) == 0 && strncmp(command, "reloadgm", strlen(command)) == 0)
- strcpy(command, "reloadgm");
- else if (strncmp(command, "search", 3) == 0 && strncmp(command, "search", strlen(command)) == 0) // not 1 letter command: 'search', 'state' or 'sex'?
- strcpy(command, "search"); // not 2 letters command: 'search' or 'sex'?
-// else if (strncmp(command, "sex", 3) == 0 && strncmp(command, "sex", strlen(command)) == 0) // not 1 letter command: 'search', 'state' or 'sex'?
-// strcpy(command, "sex"); // not 2 letters command: 'search' or 'sex'?
- else if (strncmp(command, "state", 2) == 0 && strncmp(command, "state", strlen(command)) == 0) // not 1 letter command: 'search', 'state' or 'sex'?
- strcpy(command, "state");
- else if ((strncmp(command, "timeadd", 5) == 0 && strncmp(command, "timeadd", strlen(command)) == 0) || // not 1 letter command: 'ta' or 'ts'? 'timeadd' or 'timeset'?
- strcmp(command, "ta") == 0)
- strcpy(command, "timeadd");
- else if ((strncmp(command, "timeset", 5) == 0 && strncmp(command, "timeset", strlen(command)) == 0) || // not 1 letter command: 'ta' or 'ts'? 'timeadd' or 'timeset'?
- strcmp(command, "ts") == 0)
- strcpy(command, "timeset");
- else if ((strncmp(command, "unban", 5) == 0 && strncmp(command, "unban", strlen(command)) == 0) ||
- (strncmp(command, "unbanish", 4) == 0 && strncmp(command, "unbanish", strlen(command)) == 0))
- strcpy(command, "unban");
- else if (strncmp(command, "unblock", 4) == 0 && strncmp(command, "unblock", strlen(command)) == 0)
- strcpy(command, "unblock");
- else if (strncmp(command, "version", 1) == 0 && strncmp(command, "version", strlen(command)) == 0)
- strcpy(command, "version");
- else if (strncmp(command, "who", 1) == 0 && strncmp(command, "who", strlen(command)) == 0)
- strcpy(command, "who");
+ else if (strncmp (command, "add", 2) == 0 && strncmp (command, "add", strlen (command)) == 0) // not 1 letter command: 'aide' or 'add'?
+ strcpy (command, "add");
+ else if ((strncmp (command, "ban", 3) == 0
+ && strncmp (command, "ban", strlen (command)) == 0)
+ || (strncmp (command, "banish", 4) == 0
+ && strncmp (command, "banish", strlen (command)) == 0))
+ strcpy (command, "ban");
+ else if ((strncmp (command, "banadd", 4) == 0 && strncmp (command, "banadd", strlen (command)) == 0) || // not 1 letter command: 'ba' or 'bs'? 'banadd' or 'banset' ?
+ strcmp (command, "ba") == 0)
+ strcpy (command, "banadd");
+ else if ((strncmp (command, "banset", 4) == 0 && strncmp (command, "banset", strlen (command)) == 0) || // not 1 letter command: 'ba' or 'bs'? 'banadd' or 'banset' ?
+ strcmp (command, "bs") == 0)
+ strcpy (command, "banset");
+ else if (strncmp (command, "block", 2) == 0
+ && strncmp (command, "block", strlen (command)) == 0)
+ strcpy (command, "block");
+ else if (strncmp (command, "check", 2) == 0 && strncmp (command, "check", strlen (command)) == 0) // not 1 letter command: 'check' or 'create'?
+ strcpy (command, "check");
+ else if (strncmp (command, "create", 2) == 0 && strncmp (command, "create", strlen (command)) == 0) // not 1 letter command: 'check' or 'create'?
+ strcpy (command, "create");
+ else if (strncmp (command, "delete", 1) == 0
+ && strncmp (command, "delete", strlen (command)) == 0)
+ strcpy (command, "delete");
+ else if ((strncmp (command, "email", 2) == 0 && strncmp (command, "email", strlen (command)) == 0) || // not 1 letter command: 'email', 'end' or 'exit'?
+ (strncmp (command, "e-mail", 2) == 0
+ && strncmp (command, "e-mail", strlen (command)) == 0))
+ strcpy (command, "email");
+ else if (strncmp (command, "getcount", 2) == 0 && strncmp (command, "getcount", strlen (command)) == 0) // not 1 letter command: 'getcount' or 'gm'?
+ strcpy (command, "getcount");
+// else if (strncmp(command, "gm", 2) == 0 && strncmp(command, "gm", strlen(command)) == 0) // not 1 letter command: 'getcount' or 'gm'?
+// strcpy(command, "gm");
+// else if (strncmp(command, "id", 2) == 0 && strncmp(command, "id", strlen(command)) == 0) // not 1 letter command: 'id' or 'info'?
+// strcpy(command, "id");
+ else if (strncmp (command, "info", 2) == 0 && strncmp (command, "info", strlen (command)) == 0) // not 1 letter command: 'id' or 'info'?
+ strcpy (command, "info");
+// else if (strncmp(command, "kami", 4) == 0 && strncmp(command, "kami", strlen(command)) == 0) // only all letters command: 'kami' or 'kamib'?
+// strcpy(command, "kami");
+// else if (strncmp(command, "kamib", 5) == 0 && strncmp(command, "kamib", strlen(command)) == 0) // only all letters command: 'kami' or 'kamib'?
+// strcpy(command, "kamib");
+ else if ((strncmp (command, "language", 2) == 0 && strncmp (command, "language", strlen (command)) == 0)) // not 1 letter command: 'language' or 'list'?
+ strcpy (command, "language");
+ else if ((strncmp (command, "list", 2) == 0 && strncmp (command, "list", strlen (command)) == 0) || // 'list' is default list command // not 1 letter command: 'language' or 'list'?
+ strcmp (command, "ls") == 0)
+ strcpy (command, "list");
+ else if (strncmp (command, "itemfrob", 6) == 0)
+ strcpy (command, "itemfrob");
+ else if ((strncmp (command, "listban", 5) == 0
+ && strncmp (command, "listban", strlen (command)) == 0)
+ || (strncmp (command, "lsban", 3) == 0
+ && strncmp (command, "lsban", strlen (command)) == 0)
+ || strcmp (command, "lb") == 0)
+ strcpy (command, "listban");
+ else if ((strncmp (command, "listgm", 5) == 0
+ && strncmp (command, "listgm", strlen (command)) == 0)
+ || (strncmp (command, "lsgm", 3) == 0
+ && strncmp (command, "lsgm", strlen (command)) == 0)
+ || strcmp (command, "lg") == 0)
+ strcpy (command, "listgm");
+ else if ((strncmp (command, "listok", 5) == 0
+ && strncmp (command, "listok", strlen (command)) == 0)
+ || (strncmp (command, "lsok", 3) == 0
+ && strncmp (command, "lsok", strlen (command)) == 0)
+ || strcmp (command, "lo") == 0)
+ strcpy (command, "listok");
+ else if (strncmp (command, "memo", 1) == 0
+ && strncmp (command, "memo", strlen (command)) == 0)
+ strcpy (command, "memo");
+ else if (strncmp (command, "name", 1) == 0
+ && strncmp (command, "name", strlen (command)) == 0)
+ strcpy (command, "name");
+ else if ((strncmp (command, "password", 1) == 0
+ && strncmp (command, "password", strlen (command)) == 0)
+ || strcmp (command, "passwd") == 0)
+ strcpy (command, "password");
+ else if (strncmp (command, "reloadgm", 1) == 0
+ && strncmp (command, "reloadgm", strlen (command)) == 0)
+ strcpy (command, "reloadgm");
+ else if (strncmp (command, "search", 3) == 0 && strncmp (command, "search", strlen (command)) == 0) // not 1 letter command: 'search', 'state' or 'sex'?
+ strcpy (command, "search"); // not 2 letters command: 'search' or 'sex'?
+// else if (strncmp(command, "sex", 3) == 0 && strncmp(command, "sex", strlen(command)) == 0) // not 1 letter command: 'search', 'state' or 'sex'?
+// strcpy(command, "sex"); // not 2 letters command: 'search' or 'sex'?
+ else if (strncmp (command, "state", 2) == 0 && strncmp (command, "state", strlen (command)) == 0) // not 1 letter command: 'search', 'state' or 'sex'?
+ strcpy (command, "state");
+ else if ((strncmp (command, "timeadd", 5) == 0 && strncmp (command, "timeadd", strlen (command)) == 0) || // not 1 letter command: 'ta' or 'ts'? 'timeadd' or 'timeset'?
+ strcmp (command, "ta") == 0)
+ strcpy (command, "timeadd");
+ else if ((strncmp (command, "timeset", 5) == 0 && strncmp (command, "timeset", strlen (command)) == 0) || // not 1 letter command: 'ta' or 'ts'? 'timeadd' or 'timeset'?
+ strcmp (command, "ts") == 0)
+ strcpy (command, "timeset");
+ else if ((strncmp (command, "unban", 5) == 0
+ && strncmp (command, "unban", strlen (command)) == 0)
+ || (strncmp (command, "unbanish", 4) == 0
+ && strncmp (command, "unbanish", strlen (command)) == 0))
+ strcpy (command, "unban");
+ else if (strncmp (command, "unblock", 4) == 0
+ && strncmp (command, "unblock", strlen (command)) == 0)
+ strcpy (command, "unblock");
+ else if (strncmp (command, "version", 1) == 0
+ && strncmp (command, "version", strlen (command)) == 0)
+ strcpy (command, "version");
+ else if (strncmp (command, "who", 1) == 0
+ && strncmp (command, "who", strlen (command)) == 0)
+ strcpy (command, "who");
// quit
- else if (strncmp(command, "quit", 1) == 0 && strncmp(command, "quit", strlen(command)) == 0)
- strcpy(command, "quit");
- else if (strncmp(command, "exit", 2) == 0 && strncmp(command, "exit", strlen(command)) == 0) // not 1 letter command: 'email', 'end' or 'exit'?
- strcpy(command, "exit");
- else if (strncmp(command, "end", 2) == 0 && strncmp(command, "end", strlen(command)) == 0) // not 1 letter command: 'email', 'end' or 'exit'?
- strcpy(command, "end");
-
- return 0;
+ else if (strncmp (command, "quit", 1) == 0
+ && strncmp (command, "quit", strlen (command)) == 0)
+ strcpy (command, "quit");
+ else if (strncmp (command, "exit", 2) == 0 && strncmp (command, "exit", strlen (command)) == 0) // not 1 letter command: 'email', 'end' or 'exit'?
+ strcpy (command, "exit");
+ else if (strncmp (command, "end", 2) == 0 && strncmp (command, "end", strlen (command)) == 0) // not 1 letter command: 'email', 'end' or 'exit'?
+ strcpy (command, "end");
+
+ return 0;
}
//-----------------------------------------
// Sub-function: Display commands of ladmin
//-----------------------------------------
-void display_help(char* param, int language) {
- char command[1023];
- int i;
-
- memset(command, '\0', sizeof(command));
-
- if (sscanf(param, "%s ", command) < 1 || strlen(command) == 0)
- strcpy(command, ""); // any value that is not a command
-
- if (command[0] == '?') {
- if (defaultlanguage == 'F')
- strcpy(command, "aide");
- else
- strcpy(command, "help");
- }
-
- // lowercase for command
- for (i = 0; command[i]; i++)
- command[i] = tolower(command[i]);
-
- // Analyse of the command
- check_command(command); // give complete name to the command
-
- if (defaultlanguage == 'F') {
- ladmin_log("Affichage des commandes ou d'une commande." RETCODE);
- } else {
- ladmin_log("Displaying of the commands or a command." RETCODE);
- }
-
- if (language == 1) {
- if (strcmp(command, "aide") == 0) {
- printf("aide/help/?\n");
- printf(" Affiche la description des commandes\n");
- printf("aide/help/? [commande]\n");
- printf(" Affiche la description de la commande specifiée\n");
- } else if (strcmp(command, "help") == 0 ) {
- printf("aide/help/?\n");
- printf(" Display the description of the commands\n");
- printf("aide/help/? [command]\n");
- printf(" Display the description of the specified command\n");
+void display_help (char *param, int language)
+{
+ char command[1023];
+ int i;
+
+ memset (command, '\0', sizeof (command));
+
+ if (sscanf (param, "%s ", command) < 1 || strlen (command) == 0)
+ strcpy (command, ""); // any value that is not a command
+
+ if (command[0] == '?')
+ {
+ if (defaultlanguage == 'F')
+ strcpy (command, "aide");
+ else
+ strcpy (command, "help");
+ }
+
+ // lowercase for command
+ for (i = 0; command[i]; i++)
+ command[i] = tolower (command[i]);
+
+ // Analyse of the command
+ check_command (command); // give complete name to the command
+
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log ("Affichage des commandes ou d'une commande." RETCODE);
+ }
+ else
+ {
+ ladmin_log ("Displaying of the commands or a command." RETCODE);
+ }
+
+ if (language == 1)
+ {
+ if (strcmp (command, "aide") == 0)
+ {
+ printf ("aide/help/?\n");
+ printf (" Affiche la description des commandes\n");
+ printf ("aide/help/? [commande]\n");
+ printf (" Affiche la description de la commande specifiée\n");
+ }
+ else if (strcmp (command, "help") == 0)
+ {
+ printf ("aide/help/?\n");
+ printf (" Display the description of the commands\n");
+ printf ("aide/help/? [command]\n");
+ printf (" Display the description of the specified command\n");
// general commands
- } else if (strcmp(command, "add") == 0) {
- printf("add <nomcompte> <sexe> <motdepasse>\n");
- printf(" Crée un compte avec l'email par défaut (a@a.com).\n");
- printf(" Concernant le sexe, seule la première lettre compte (F ou M).\n");
- printf(" L'e-mail est a@a.com (e-mail par défaut). C'est comme n'avoir aucun e-mail.\n");
- printf(" Lorsque motdepasse est omis, la saisie se fait sans que la frappe se voit.\n");
- printf(" <exemple> add testname Male testpass\n");
- } else if (strcmp(command, "ban") == 0) {
- printf("ban/banish aaaa/mm/jj hh:mm:ss <nom compte>\n");
- printf(" Change la date de fin de bannissement d'un compte.\n");
- printf(" Comme banset, mais <nom compte> est à la fin.\n");
- } else if (strcmp(command, "banadd") == 0) {
- printf("banadd <nomcompte> <Modificateur>\n");
- printf(" Ajoute ou soustrait du temps à la date de banissement d'un compte.\n");
- printf(" Les modificateurs sont construits comme suit:\n");
- printf(" Valeur d'ajustement (-1, 1, +1, etc...)\n");
- printf(" Elément modifié:\n");
- printf(" a ou y: année\n");
- printf(" m: mois\n");
- printf(" j ou d: jour\n");
- printf(" h: heure\n");
- printf(" mn: minute\n");
- printf(" s: seconde\n");
- printf(" <exemple> banadd testname +1m-2mn1s-6a\n");
- printf(" Cette exemple ajoute 1 mois et une seconde, et soustrait 2 minutes\n");
- printf(" et 6 ans dans le même temps.\n");
- printf("NOTE: Si vous modifez la date de banissement d'un compte non bani,\n");
- printf(" vous indiquez comme date (le moment actuel +- les ajustements)\n");
- } else if (strcmp(command, "banset") == 0) {
- printf("banset <nomcompte> aaaa/mm/jj [hh:mm:ss]\n");
- printf(" Change la date de fin de bannissement d'un compte.\n");
- printf(" Heure par défaut [hh:mm:ss]: 23:59:59.\n");
- printf("banset <nomcompte> 0\n");
- printf(" Débanni un compte (0 = de-banni).\n");
- } else if (strcmp(command, "block") == 0) {
- printf("block <nom compte>\n");
- printf(" Place le status d'un compte à 5 (You have been blocked by the GM Team).\n");
- printf(" La commande est l'équivalent de state <nom_compte> 5.\n");
- } else if (strcmp(command, "check") == 0) {
- printf("check <nomcompte> <motdepasse>\n");
- printf(" Vérifie la validité d'un mot de passe pour un compte\n");
- printf(" NOTE: Le serveur n'enverra jamais un mot de passe.\n");
- printf(" C'est la seule méthode que vous possédez pour savoir\n");
- printf(" si un mot de passe est le bon. L'autre méthode est\n");
- printf(" d'avoir un accès ('physique') au fichier des comptes.\n");
- } else if (strcmp(command, "create") == 0) {
- printf("create <nomcompte> <sexe> <email> <motdepasse>\n");
- printf(" Comme la commande add, mais avec l'e-mail en plus.\n");
- printf(" <exemple> create testname Male mon@mail.com testpass\n");
- } else if (strcmp(command, "delete") == 0) {
- printf("del <nom compte>\n");
- printf(" Supprime un compte.\n");
- printf(" La commande demande confirmation. Après confirmation, le compte est détruit.\n");
- } else if (strcmp(command, "email") == 0) {
- printf("email <nomcompte> <email>\n");
- printf(" Modifie l'e-mail d'un compte.\n");
- } else if (strcmp(command, "getcount") == 0) {
- printf("getcount\n");
- printf(" Donne le nombre de joueurs en ligne par serveur de char.\n");
- } else if (strcmp(command, "gm") == 0) {
- printf("gm <nomcompte> [Niveau_GM]\n");
- printf(" Modifie le niveau de GM d'un compte.\n");
- printf(" Valeur par défaut: 0 (suppression du niveau de GM).\n");
- printf(" <exemple> gm nomtest 80\n");
- } else if (strcmp(command, "id") == 0) {
- printf("id <nom compte>\n");
- printf(" Donne l'id d'un compte.\n");
- } else if (strcmp(command, "info") == 0) {
- printf("info <idcompte>\n");
- printf(" Affiche les informations sur un compte.\n");
- } else if (strcmp(command, "kami") == 0) {
- printf("kami <message>\n");
- printf(" Envoi un message général sur tous les serveurs de map (en jaune).\n");
- } else if (strcmp(command, "kamib") == 0) {
- printf("kamib <message>\n");
- printf(" Envoi un message général sur tous les serveurs de map (en bleu).\n");
- } else if (strcmp(command, "language") == 0) {
- printf("language <langue>\n");
- printf(" Change la langue d'affichage.\n");
- printf(" Langues possibles: 'Français' ou 'English'.\n");
- } else if (strcmp(command, "list") == 0) {
- printf("list/ls [Premier_id [Dernier_id]]\n");
- printf(" Affiche une liste de comptes.\n");
- printf(" 'Premier_id', 'Dernier_id': indique les identifiants de départ et de fin.\n");
- printf(" La recherche par nom n'est pas possible avec cette commande.\n");
- printf(" <example> list 10 9999999\n");
- } else if (strcmp(command, "itemfrob") == 0) {
- printf("Not localised yet.\n");
- } else if (strcmp(command, "listban") == 0) {
- printf("listBan/lsBan [Premier_id [Dernier_id]]\n");
- printf(" Comme list/ls, mais seulement pour les comptes avec statut ou bannis.\n");
- } else if (strcmp(command, "listgm") == 0) {
- printf("listGM/lsGM [Premier_id [Dernier_id]]\n");
- printf(" Comme list/ls, mais seulement pour les comptes GM.\n");
- } else if (strcmp(command, "listok") == 0) {
- printf("listOK/lsOK [Premier_id [Dernier_id]]\n");
- printf(" Comme list/ls, mais seulement pour les comptes sans statut et non bannis.\n");
- } else if (strcmp(command, "memo") == 0) {
- printf("memo <nomcompte> <memo>\n");
- printf(" Modifie le mémo d'un compte.\n");
- printf(" 'memo': Il peut avoir jusqu'à 253 caractères (avec des espaces ou non).\n");
- } else if (strcmp(command, "name") == 0) {
- printf("name <idcompte>\n");
- printf(" Donne le nom d'un compte.\n");
- } else if (strcmp(command, "password") == 0) {
- printf("passwd <nomcompte> <nouveaumotdepasse>\n");
- printf(" Change le mot de passe d'un compte.\n");
- printf(" Lorsque nouveaumotdepasse est omis,\n");
- printf(" la saisie se fait sans que la frappe ne se voit.\n");
- } else if (strcmp(command, "reloadgm") == 0) {
- printf("reloadGM\n");
- printf(" Reload GM configuration file\n");
- } else if (strcmp(command, "search") == 0) {
- printf("search <expression>\n");
- printf(" Cherche des comptes.\n");
- printf(" Affiche les comptes dont les noms correspondent.\n");
-// printf("search -r/-e/--expr/--regex <expression>\n");
-// printf(" Cherche des comptes par expression regulière.\n");
-// printf(" Affiche les comptes dont les noms correspondent.\n");
- } else if (strcmp(command, "sex") == 0) {
- printf("sex <nomcompte> <sexe>\n");
- printf(" Modifie le sexe d'un compte.\n");
- printf(" <exemple> sex testname Male\n");
- } else if (strcmp(command, "state") == 0) {
- printf("state <nomcompte> <nouveaustatut> <message_erreur_7>\n");
- printf(" Change le statut d'un compte.\n");
- printf(" 'nouveaustatut': Le statut est le même que celui du packet 0x006a + 1.\n");
- printf(" les possibilités sont:\n");
- printf(" 0 = Compte ok\n");
- printf(" 1 = Unregistered ID\n");
- printf(" 2 = Incorrect Password\n");
- printf(" 3 = This ID is expired\n");
- printf(" 4 = Rejected from Server\n");
- printf(" 5 = You have been blocked by the GM Team\n");
- printf(" 6 = Your Game's EXE file is not the latest version\n");
- printf(" 7 = You are Prohibited to log in until...\n");
- printf(" 8 = Server is jammed due to over populated\n");
- printf(" 9 = No MSG\n");
- printf(" 100 = This ID has been totally erased\n");
- printf(" all other values are 'No MSG', then use state 9 please.\n");
- printf(" 'message_erreur_7': message du code erreur 6 =\n");
- printf(" = Your are Prohibited to log in until... (packet 0x006a)\n");
- } else if (strcmp(command, "timeadd") == 0) {
- printf("timeadd <nomcompte> <modificateur>\n");
- printf(" Ajoute/soustrait du temps à la limite de validité d'un compte.\n");
- printf(" Le modificateur est composé comme suit:\n");
- printf(" Valeur modificatrice (-1, 1, +1, etc...)\n");
- printf(" Elément modifié:\n");
- printf(" a ou y: année\n");
- printf(" m: mois\n");
- printf(" j ou d: jour\n");
- printf(" h: heure\n");
- printf(" mn: minute\n");
- printf(" s: seconde\n");
- printf(" <exemple> timeadd testname +1m-2mn1s-6a\n");
- printf(" Cette exemple ajoute 1 mois et une seconde, et soustrait 2 minutes\n");
- printf(" et 6 ans dans le même temps.\n");
- printf("NOTE: Vous ne pouvez pas modifier une limite de validité illimitée. Si vous\n");
- printf(" désirez le faire, c'est que vous voulez probablement créer un limite de\n");
- printf(" validité limitée. Donc, en premier, fixé une limite de valitidé.\n");
- } else if (strcmp(command, "timeadd") == 0) {
- printf("timeset <nomcompte> aaaa/mm/jj [hh:mm:ss]\n");
- printf(" Change la limite de validité d'un compte.\n");
- printf(" Heure par défaut [hh:mm:ss]: 23:59:59.\n");
- printf("timeset <nomcompte> 0\n");
- printf(" Donne une limite de validité illimitée (0 = illimitée).\n");
- } else if (strcmp(command, "unban") == 0) {
- printf("unban/unbanish <nom compte>\n");
- printf(" Ote le banissement d'un compte.\n");
- printf(" La commande est l'équivalent de banset <nom_compte> 0.\n");
- } else if (strcmp(command, "unblock") == 0) {
- printf("unblock <nom compte>\n");
- printf(" Place le status d'un compte à 0 (Compte ok).\n");
- printf(" La commande est l'équivalent de state <nom_compte> 0.\n");
- } else if (strcmp(command, "version") == 0) {
- printf("version\n");
- printf(" Affiche la version du login-serveur.\n");
- } else if (strcmp(command, "who") == 0) {
- printf("who <nom compte>\n");
- printf(" Affiche les informations sur un compte.\n");
+ }
+ else if (strcmp (command, "add") == 0)
+ {
+ printf ("add <nomcompte> <sexe> <motdepasse>\n");
+ printf (" Crée un compte avec l'email par défaut (a@a.com).\n");
+ printf
+ (" Concernant le sexe, seule la première lettre compte (F ou M).\n");
+ printf
+ (" L'e-mail est a@a.com (e-mail par défaut). C'est comme n'avoir aucun e-mail.\n");
+ printf
+ (" Lorsque motdepasse est omis, la saisie se fait sans que la frappe se voit.\n");
+ printf (" <exemple> add testname Male testpass\n");
+ }
+ else if (strcmp (command, "ban") == 0)
+ {
+ printf ("ban/banish aaaa/mm/jj hh:mm:ss <nom compte>\n");
+ printf (" Change la date de fin de bannissement d'un compte.\n");
+ printf (" Comme banset, mais <nom compte> est à la fin.\n");
+ }
+ else if (strcmp (command, "banadd") == 0)
+ {
+ printf ("banadd <nomcompte> <Modificateur>\n");
+ printf
+ (" Ajoute ou soustrait du temps à la date de banissement d'un compte.\n");
+ printf (" Les modificateurs sont construits comme suit:\n");
+ printf (" Valeur d'ajustement (-1, 1, +1, etc...)\n");
+ printf (" Elément modifié:\n");
+ printf (" a ou y: année\n");
+ printf (" m: mois\n");
+ printf (" j ou d: jour\n");
+ printf (" h: heure\n");
+ printf (" mn: minute\n");
+ printf (" s: seconde\n");
+ printf (" <exemple> banadd testname +1m-2mn1s-6a\n");
+ printf
+ (" Cette exemple ajoute 1 mois et une seconde, et soustrait 2 minutes\n");
+ printf (" et 6 ans dans le même temps.\n");
+ printf
+ ("NOTE: Si vous modifez la date de banissement d'un compte non bani,\n");
+ printf
+ (" vous indiquez comme date (le moment actuel +- les ajustements)\n");
+ }
+ else if (strcmp (command, "banset") == 0)
+ {
+ printf ("banset <nomcompte> aaaa/mm/jj [hh:mm:ss]\n");
+ printf (" Change la date de fin de bannissement d'un compte.\n");
+ printf (" Heure par défaut [hh:mm:ss]: 23:59:59.\n");
+ printf ("banset <nomcompte> 0\n");
+ printf (" Débanni un compte (0 = de-banni).\n");
+ }
+ else if (strcmp (command, "block") == 0)
+ {
+ printf ("block <nom compte>\n");
+ printf
+ (" Place le status d'un compte à 5 (You have been blocked by the GM Team).\n");
+ printf
+ (" La commande est l'équivalent de state <nom_compte> 5.\n");
+ }
+ else if (strcmp (command, "check") == 0)
+ {
+ printf ("check <nomcompte> <motdepasse>\n");
+ printf
+ (" Vérifie la validité d'un mot de passe pour un compte\n");
+ printf (" NOTE: Le serveur n'enverra jamais un mot de passe.\n");
+ printf
+ (" C'est la seule méthode que vous possédez pour savoir\n");
+ printf
+ (" si un mot de passe est le bon. L'autre méthode est\n");
+ printf
+ (" d'avoir un accès ('physique') au fichier des comptes.\n");
+ }
+ else if (strcmp (command, "create") == 0)
+ {
+ printf ("create <nomcompte> <sexe> <email> <motdepasse>\n");
+ printf (" Comme la commande add, mais avec l'e-mail en plus.\n");
+ printf
+ (" <exemple> create testname Male mon@mail.com testpass\n");
+ }
+ else if (strcmp (command, "delete") == 0)
+ {
+ printf ("del <nom compte>\n");
+ printf (" Supprime un compte.\n");
+ printf
+ (" La commande demande confirmation. Après confirmation, le compte est détruit.\n");
+ }
+ else if (strcmp (command, "email") == 0)
+ {
+ printf ("email <nomcompte> <email>\n");
+ printf (" Modifie l'e-mail d'un compte.\n");
+ }
+ else if (strcmp (command, "getcount") == 0)
+ {
+ printf ("getcount\n");
+ printf
+ (" Donne le nombre de joueurs en ligne par serveur de char.\n");
+ }
+ else if (strcmp (command, "gm") == 0)
+ {
+ printf ("gm <nomcompte> [Niveau_GM]\n");
+ printf (" Modifie le niveau de GM d'un compte.\n");
+ printf
+ (" Valeur par défaut: 0 (suppression du niveau de GM).\n");
+ printf (" <exemple> gm nomtest 80\n");
+ }
+ else if (strcmp (command, "id") == 0)
+ {
+ printf ("id <nom compte>\n");
+ printf (" Donne l'id d'un compte.\n");
+ }
+ else if (strcmp (command, "info") == 0)
+ {
+ printf ("info <idcompte>\n");
+ printf (" Affiche les informations sur un compte.\n");
+ }
+ else if (strcmp (command, "kami") == 0)
+ {
+ printf ("kami <message>\n");
+ printf
+ (" Envoi un message général sur tous les serveurs de map (en jaune).\n");
+ }
+ else if (strcmp (command, "kamib") == 0)
+ {
+ printf ("kamib <message>\n");
+ printf
+ (" Envoi un message général sur tous les serveurs de map (en bleu).\n");
+ }
+ else if (strcmp (command, "language") == 0)
+ {
+ printf ("language <langue>\n");
+ printf (" Change la langue d'affichage.\n");
+ printf (" Langues possibles: 'Français' ou 'English'.\n");
+ }
+ else if (strcmp (command, "list") == 0)
+ {
+ printf ("list/ls [Premier_id [Dernier_id]]\n");
+ printf (" Affiche une liste de comptes.\n");
+ printf
+ (" 'Premier_id', 'Dernier_id': indique les identifiants de départ et de fin.\n");
+ printf
+ (" La recherche par nom n'est pas possible avec cette commande.\n");
+ printf (" <example> list 10 9999999\n");
+ }
+ else if (strcmp (command, "itemfrob") == 0)
+ {
+ printf ("Not localised yet.\n");
+ }
+ else if (strcmp (command, "listban") == 0)
+ {
+ printf ("listBan/lsBan [Premier_id [Dernier_id]]\n");
+ printf
+ (" Comme list/ls, mais seulement pour les comptes avec statut ou bannis.\n");
+ }
+ else if (strcmp (command, "listgm") == 0)
+ {
+ printf ("listGM/lsGM [Premier_id [Dernier_id]]\n");
+ printf (" Comme list/ls, mais seulement pour les comptes GM.\n");
+ }
+ else if (strcmp (command, "listok") == 0)
+ {
+ printf ("listOK/lsOK [Premier_id [Dernier_id]]\n");
+ printf
+ (" Comme list/ls, mais seulement pour les comptes sans statut et non bannis.\n");
+ }
+ else if (strcmp (command, "memo") == 0)
+ {
+ printf ("memo <nomcompte> <memo>\n");
+ printf (" Modifie le mémo d'un compte.\n");
+ printf
+ (" 'memo': Il peut avoir jusqu'à 253 caractères (avec des espaces ou non).\n");
+ }
+ else if (strcmp (command, "name") == 0)
+ {
+ printf ("name <idcompte>\n");
+ printf (" Donne le nom d'un compte.\n");
+ }
+ else if (strcmp (command, "password") == 0)
+ {
+ printf ("passwd <nomcompte> <nouveaumotdepasse>\n");
+ printf (" Change le mot de passe d'un compte.\n");
+ printf (" Lorsque nouveaumotdepasse est omis,\n");
+ printf (" la saisie se fait sans que la frappe ne se voit.\n");
+ }
+ else if (strcmp (command, "reloadgm") == 0)
+ {
+ printf ("reloadGM\n");
+ printf (" Reload GM configuration file\n");
+ }
+ else if (strcmp (command, "search") == 0)
+ {
+ printf ("search <expression>\n");
+ printf (" Cherche des comptes.\n");
+ printf (" Affiche les comptes dont les noms correspondent.\n");
+// printf("search -r/-e/--expr/--regex <expression>\n");
+// printf(" Cherche des comptes par expression regulière.\n");
+// printf(" Affiche les comptes dont les noms correspondent.\n");
+ }
+ else if (strcmp (command, "sex") == 0)
+ {
+ printf ("sex <nomcompte> <sexe>\n");
+ printf (" Modifie le sexe d'un compte.\n");
+ printf (" <exemple> sex testname Male\n");
+ }
+ else if (strcmp (command, "state") == 0)
+ {
+ printf ("state <nomcompte> <nouveaustatut> <message_erreur_7>\n");
+ printf (" Change le statut d'un compte.\n");
+ printf
+ (" 'nouveaustatut': Le statut est le même que celui du packet 0x006a + 1.\n");
+ printf (" les possibilités sont:\n");
+ printf (" 0 = Compte ok\n");
+ printf (" 1 = Unregistered ID\n");
+ printf (" 2 = Incorrect Password\n");
+ printf (" 3 = This ID is expired\n");
+ printf (" 4 = Rejected from Server\n");
+ printf
+ (" 5 = You have been blocked by the GM Team\n");
+ printf
+ (" 6 = Your Game's EXE file is not the latest version\n");
+ printf
+ (" 7 = You are Prohibited to log in until...\n");
+ printf
+ (" 8 = Server is jammed due to over populated\n");
+ printf (" 9 = No MSG\n");
+ printf (" 100 = This ID has been totally erased\n");
+ printf
+ (" all other values are 'No MSG', then use state 9 please.\n");
+ printf (" 'message_erreur_7': message du code erreur 6 =\n");
+ printf
+ (" = Your are Prohibited to log in until... (packet 0x006a)\n");
+ }
+ else if (strcmp (command, "timeadd") == 0)
+ {
+ printf ("timeadd <nomcompte> <modificateur>\n");
+ printf
+ (" Ajoute/soustrait du temps à la limite de validité d'un compte.\n");
+ printf (" Le modificateur est composé comme suit:\n");
+ printf (" Valeur modificatrice (-1, 1, +1, etc...)\n");
+ printf (" Elément modifié:\n");
+ printf (" a ou y: année\n");
+ printf (" m: mois\n");
+ printf (" j ou d: jour\n");
+ printf (" h: heure\n");
+ printf (" mn: minute\n");
+ printf (" s: seconde\n");
+ printf (" <exemple> timeadd testname +1m-2mn1s-6a\n");
+ printf
+ (" Cette exemple ajoute 1 mois et une seconde, et soustrait 2 minutes\n");
+ printf (" et 6 ans dans le même temps.\n");
+ printf
+ ("NOTE: Vous ne pouvez pas modifier une limite de validité illimitée. Si vous\n");
+ printf
+ (" désirez le faire, c'est que vous voulez probablement créer un limite de\n");
+ printf
+ (" validité limitée. Donc, en premier, fixé une limite de valitidé.\n");
+ }
+ else if (strcmp (command, "timeadd") == 0)
+ {
+ printf ("timeset <nomcompte> aaaa/mm/jj [hh:mm:ss]\n");
+ printf (" Change la limite de validité d'un compte.\n");
+ printf (" Heure par défaut [hh:mm:ss]: 23:59:59.\n");
+ printf ("timeset <nomcompte> 0\n");
+ printf
+ (" Donne une limite de validité illimitée (0 = illimitée).\n");
+ }
+ else if (strcmp (command, "unban") == 0)
+ {
+ printf ("unban/unbanish <nom compte>\n");
+ printf (" Ote le banissement d'un compte.\n");
+ printf
+ (" La commande est l'équivalent de banset <nom_compte> 0.\n");
+ }
+ else if (strcmp (command, "unblock") == 0)
+ {
+ printf ("unblock <nom compte>\n");
+ printf (" Place le status d'un compte à 0 (Compte ok).\n");
+ printf
+ (" La commande est l'équivalent de state <nom_compte> 0.\n");
+ }
+ else if (strcmp (command, "version") == 0)
+ {
+ printf ("version\n");
+ printf (" Affiche la version du login-serveur.\n");
+ }
+ else if (strcmp (command, "who") == 0)
+ {
+ printf ("who <nom compte>\n");
+ printf (" Affiche les informations sur un compte.\n");
// quit
- } else if (strcmp(command, "quit") == 0 ||
- strcmp(command, "exit") == 0 ||
- strcmp(command, "end") == 0) {
- printf("quit/end/exit\n");
- printf(" Fin du programme d'administration.\n");
+ }
+ else if (strcmp (command, "quit") == 0 ||
+ strcmp (command, "exit") == 0 ||
+ strcmp (command, "end") == 0)
+ {
+ printf ("quit/end/exit\n");
+ printf (" Fin du programme d'administration.\n");
// unknown command
- } else {
- if (strlen(command) > 0)
- printf("Commande inconnue [%s] pour l'aide. Affichage de toutes les commandes.\n", command);
- printf(" aide/help/? -- Affiche cet aide\n");
- printf(" aide/help/? [commande] -- Affiche l'aide de la commande\n");
- printf(" add <nomcompte> <sexe> <motdepasse> -- Crée un compte (sans email)\n");
- printf(" ban/banish aaaa/mm/jj hh:mm:ss <nom compte> -- Fixe la date finale de banismnt\n");
- printf(" banadd/ba <nomcompte> <modificateur> -- Ajout/soustrait du temps à la\n");
- printf(" exemple: ba moncompte +1m-2mn1s-2y date finale de banissement\n");
- printf(" banset/bs <nomcompte> aaaa/mm/jj [hh:mm:ss] -- Change la date fin de banisemnt\n");
- printf(" banset/bs <nomcompte> 0 -- Dé-banis un compte.\n");
- printf(" block <nom compte> -- Mets le status d'un compte à 5 (blocked by the GM Team)\n");
- printf(" check <nomcompte> <motdepasse> -- Vérifie un mot de passe d'un compte\n");
- printf(" create <nomcompte> <sexe> <email> <motdepasse> -- Crée un compte (avec email)\n");
- printf(" del <nom compte> -- Supprime un compte\n");
- printf(" email <nomcompte> <email> -- Modifie l'e-mail d'un compte\n");
- printf(" getcount -- Donne le nb de joueurs en ligne\n");
- printf(" gm <nomcompte> [Niveau_GM] -- Modifie le niveau de GM d'un compte\n");
- printf(" id <nom compte> -- Donne l'id d'un compte\n");
- printf(" info <idcompte> -- Affiche les infos sur un compte\n");
- printf(" kami <message> -- Envoi un message général (en jaune)\n");
- printf(" kamib <message> -- Envoi un message général (en bleu)\n");
- printf(" language <langue> -- Change la langue d'affichage.\n");
- printf(" list/ls [Premier_id [Dernier_id] ] -- Affiche une liste de comptes\n");
- printf(" listBan/lsBan [Premier_id [Dernier_id] ] -- Affiche une liste de comptes\n");
- printf(" avec un statut ou bannis\n");
- printf(" listGM/lsGM [Premier_id [Dernier_id] ] -- Affiche une liste de comptes GM\n");
- printf(" listOK/lsOK [Premier_id [Dernier_id] ] -- Affiche une liste de comptes\n");
- printf(" sans status et non bannis\n");
- printf(" memo <nomcompte> <memo> -- Modifie le memo d'un compte\n");
- printf(" name <idcompte> -- Donne le nom d'un compte\n");
- printf(" passwd <nomcompte> <nouveaumotdepasse> -- Change le mot de passe d'un compte\n");
- printf(" quit/end/exit -- Fin du programme d'administation\n");
- printf(" reloadGM -- Recharger le fichier de config des GM\n");
- printf(" search <expression> -- Cherche des comptes\n");
-// printf(" search -e/-r/--expr/--regex <expression> -- Cherche des comptes par REGEX\n");
- printf(" sex <nomcompte> <sexe> -- Modifie le sexe d'un compte\n");
- printf(" state <nomcompte> <nouveaustatut> <messageerr7> -- Change le statut d'1 compte\n");
- printf(" timeadd/ta <nomcompte> <modificateur> -- Ajout/soustrait du temps à la\n");
- printf(" exemple: ta moncompte +1m-2mn1s-2y limite de validité\n");
- printf(" timeset/ts <nomcompte> aaaa/mm/jj [hh:mm:ss] -- Change la limite de validité\n");
- printf(" timeset/ts <nomcompte> 0 -- limite de validité = illimitée\n");
- printf(" unban/unbanish <nom compte> -- Ote le banissement d'un compte\n");
- printf(" unblock <nom compte> -- Mets le status d'un compte à 0 (Compte ok)\n");
- printf(" version -- Donne la version du login-serveur\n");
- printf(" who <nom compte> -- Affiche les infos sur un compte\n");
- printf(" Note: Pour les noms de compte avec des espaces, tapez \"<nom compte>\" (ou ').\n");
- }
- } else {
- if (strcmp(command, "aide") == 0) {
- printf("aide/help/?\n");
- printf(" Display the description of the commands\n");
- printf("aide/help/? [command]\n");
- printf(" Display the description of the specified command\n");
- } else if (strcmp(command, "help") == 0 ) {
- printf("aide/help/?\n");
- printf(" Display the description of the commands\n");
- printf("aide/help/? [command]\n");
- printf(" Display the description of the specified command\n");
+ }
+ else
+ {
+ if (strlen (command) > 0)
+ printf
+ ("Commande inconnue [%s] pour l'aide. Affichage de toutes les commandes.\n",
+ command);
+ printf
+ (" aide/help/? -- Affiche cet aide\n");
+ printf
+ (" aide/help/? [commande] -- Affiche l'aide de la commande\n");
+ printf
+ (" add <nomcompte> <sexe> <motdepasse> -- Crée un compte (sans email)\n");
+ printf
+ (" ban/banish aaaa/mm/jj hh:mm:ss <nom compte> -- Fixe la date finale de banismnt\n");
+ printf
+ (" banadd/ba <nomcompte> <modificateur> -- Ajout/soustrait du temps à la\n");
+ printf
+ (" exemple: ba moncompte +1m-2mn1s-2y date finale de banissement\n");
+ printf
+ (" banset/bs <nomcompte> aaaa/mm/jj [hh:mm:ss] -- Change la date fin de banisemnt\n");
+ printf
+ (" banset/bs <nomcompte> 0 -- Dé-banis un compte.\n");
+ printf
+ (" block <nom compte> -- Mets le status d'un compte à 5 (blocked by the GM Team)\n");
+ printf
+ (" check <nomcompte> <motdepasse> -- Vérifie un mot de passe d'un compte\n");
+ printf
+ (" create <nomcompte> <sexe> <email> <motdepasse> -- Crée un compte (avec email)\n");
+ printf
+ (" del <nom compte> -- Supprime un compte\n");
+ printf
+ (" email <nomcompte> <email> -- Modifie l'e-mail d'un compte\n");
+ printf
+ (" getcount -- Donne le nb de joueurs en ligne\n");
+ printf
+ (" gm <nomcompte> [Niveau_GM] -- Modifie le niveau de GM d'un compte\n");
+ printf
+ (" id <nom compte> -- Donne l'id d'un compte\n");
+ printf
+ (" info <idcompte> -- Affiche les infos sur un compte\n");
+ printf
+ (" kami <message> -- Envoi un message général (en jaune)\n");
+ printf
+ (" kamib <message> -- Envoi un message général (en bleu)\n");
+ printf
+ (" language <langue> -- Change la langue d'affichage.\n");
+ printf
+ (" list/ls [Premier_id [Dernier_id] ] -- Affiche une liste de comptes\n");
+ printf
+ (" listBan/lsBan [Premier_id [Dernier_id] ] -- Affiche une liste de comptes\n");
+ printf
+ (" avec un statut ou bannis\n");
+ printf
+ (" listGM/lsGM [Premier_id [Dernier_id] ] -- Affiche une liste de comptes GM\n");
+ printf
+ (" listOK/lsOK [Premier_id [Dernier_id] ] -- Affiche une liste de comptes\n");
+ printf
+ (" sans status et non bannis\n");
+ printf
+ (" memo <nomcompte> <memo> -- Modifie le memo d'un compte\n");
+ printf
+ (" name <idcompte> -- Donne le nom d'un compte\n");
+ printf
+ (" passwd <nomcompte> <nouveaumotdepasse> -- Change le mot de passe d'un compte\n");
+ printf
+ (" quit/end/exit -- Fin du programme d'administation\n");
+ printf
+ (" reloadGM -- Recharger le fichier de config des GM\n");
+ printf
+ (" search <expression> -- Cherche des comptes\n");
+// printf(" search -e/-r/--expr/--regex <expression> -- Cherche des comptes par REGEX\n");
+ printf
+ (" sex <nomcompte> <sexe> -- Modifie le sexe d'un compte\n");
+ printf
+ (" state <nomcompte> <nouveaustatut> <messageerr7> -- Change le statut d'1 compte\n");
+ printf
+ (" timeadd/ta <nomcompte> <modificateur> -- Ajout/soustrait du temps à la\n");
+ printf
+ (" exemple: ta moncompte +1m-2mn1s-2y limite de validité\n");
+ printf
+ (" timeset/ts <nomcompte> aaaa/mm/jj [hh:mm:ss] -- Change la limite de validité\n");
+ printf
+ (" timeset/ts <nomcompte> 0 -- limite de validité = illimitée\n");
+ printf
+ (" unban/unbanish <nom compte> -- Ote le banissement d'un compte\n");
+ printf
+ (" unblock <nom compte> -- Mets le status d'un compte à 0 (Compte ok)\n");
+ printf
+ (" version -- Donne la version du login-serveur\n");
+ printf
+ (" who <nom compte> -- Affiche les infos sur un compte\n");
+ printf
+ (" Note: Pour les noms de compte avec des espaces, tapez \"<nom compte>\" (ou ').\n");
+ }
+ }
+ else
+ {
+ if (strcmp (command, "aide") == 0)
+ {
+ printf ("aide/help/?\n");
+ printf (" Display the description of the commands\n");
+ printf ("aide/help/? [command]\n");
+ printf (" Display the description of the specified command\n");
+ }
+ else if (strcmp (command, "help") == 0)
+ {
+ printf ("aide/help/?\n");
+ printf (" Display the description of the commands\n");
+ printf ("aide/help/? [command]\n");
+ printf (" Display the description of the specified command\n");
// general commands
- } else if (strcmp(command, "add") == 0) {
- printf("add <account_name> <sex> <password>\n");
- printf(" Create an account with the default email (a@a.com).\n");
- printf(" Concerning the sex, only the first letter is used (F or M).\n");
- printf(" The e-mail is set to a@a.com (default e-mail). It's like to have no e-mail.\n");
- printf(" When the password is omitted,\n");
- printf(" the input is done without displaying of the pressed keys.\n");
- printf(" <example> add testname Male testpass\n");
- } else if (strcmp(command, "ban") == 0) {
- printf("ban/banish yyyy/mm/dd hh:mm:ss <account name>\n");
- printf(" Changes the final date of a banishment of an account.\n");
- printf(" Like banset, but <account name> is at end.\n");
- } else if (strcmp(command, "banadd") == 0) {
- printf("banadd <account_name> <modifier>\n");
- printf(" Adds or substracts time from the final date of a banishment of an account.\n");
- printf(" Modifier is done as follows:\n");
- printf(" Adjustment value (-1, 1, +1, etc...)\n");
- printf(" Modified element:\n");
- printf(" a or y: year\n");
- printf(" m: month\n");
- printf(" j or d: day\n");
- printf(" h: hour\n");
- printf(" mn: minute\n");
- printf(" s: second\n");
- printf(" <example> banadd testname +1m-2mn1s-6y\n");
- printf(" this example adds 1 month and 1 second, and substracts 2 minutes\n");
- printf(" and 6 years at the same time.\n");
- printf("NOTE: If you modify the final date of a non-banished account,\n");
- printf(" you fix the final date to (actual time +- adjustments)\n");
- } else if (strcmp(command, "banset") == 0) {
- printf("banset <account_name> yyyy/mm/dd [hh:mm:ss]\n");
- printf(" Changes the final date of a banishment of an account.\n");
- printf(" Default time [hh:mm:ss]: 23:59:59.\n");
- printf("banset <account_name> 0\n");
- printf(" Set a non-banished account (0 = unbanished).\n");
- } else if (strcmp(command, "block") == 0) {
- printf("block <account name>\n");
- printf(" Set state 5 (You have been blocked by the GM Team) to an account.\n");
- printf(" This command works like state <account_name> 5.\n");
- } else if (strcmp(command, "check") == 0) {
- printf("check <account_name> <password>\n");
- printf(" Check the validity of a password for an account.\n");
- printf(" NOTE: Server will never sends back a password.\n");
- printf(" It's the only method you have to know if a password is correct.\n");
- printf(" The other method is to have a ('physical') access to the accounts file.\n");
- } else if (strcmp(command, "create") == 0) {
- printf("create <account_name> <sex> <email> <password>\n");
- printf(" Like the 'add' command, but with e-mail moreover.\n");
- printf(" <example> create testname Male my@mail.com testpass\n");
- } else if (strcmp(command, "delete") == 0) {
- printf("del <account name>\n");
- printf(" Remove an account.\n");
- printf(" This order requires confirmation. After confirmation, the account is deleted.\n");
- } else if (strcmp(command, "email") == 0) {
- printf("email <account_name> <email>\n");
- printf(" Modify the e-mail of an account.\n");
- } else if (strcmp(command, "getcount") == 0) {
- printf("getcount\n");
- printf(" Give the number of players online on all char-servers.\n");
- } else if (strcmp(command, "gm") == 0) {
- printf("gm <account_name> [GM_level]\n");
- printf(" Modify the GM level of an account.\n");
- printf(" Default value remove GM level (GM level = 0).\n");
- printf(" <example> gm testname 80\n");
- } else if (strcmp(command, "id") == 0) {
- printf("id <account name>\n");
- printf(" Give the id of an account.\n");
- } else if (strcmp(command, "info") == 0) {
- printf("info <account_id>\n");
- printf(" Display complete information of an account.\n");
- } else if (strcmp(command, "kami") == 0) {
- printf("kami <message>\n");
- printf(" Sends a broadcast message on all map-server (in yellow).\n");
- } else if (strcmp(command, "kamib") == 0) {
- printf("kamib <message>\n");
- printf(" Sends a broadcast message on all map-server (in blue).\n");
- } else if (strcmp(command, "language") == 0) {
- printf("language <language>\n");
- printf(" Change the language of displaying.\n");
- printf(" Possible languages: Français or English.\n");
- } else if (strcmp(command, "list") == 0) {
- printf("list/ls [start_id [end_id]]\n");
- printf(" Display a list of accounts.\n");
- printf(" 'start_id', 'end_id': indicate end and start identifiers.\n");
- printf(" Research by name is not possible with this command.\n");
- printf(" <example> list 10 9999999\n");
- } else if (strcmp(command, "itemfrob") == 0) {
- printf("itemfrob <source-id> <dest-id>\n");
- printf(" Translates item IDs for all accounts.\n");
- printf(" Any items matching the source item ID will be mapped to the dest-id.\n");
- printf(" <example> itemfrob 500 700\n");
- } else if (strcmp(command, "listban") == 0) {
- printf("listBan/lsBan [start_id [end_id]]\n");
- printf(" Like list/ls, but only for accounts with state or banished.\n");
- } else if (strcmp(command, "listgm") == 0) {
- printf("listGM/lsGM [start_id [end_id]]\n");
- printf(" Like list/ls, but only for GM accounts.\n");
- } else if (strcmp(command, "listok") == 0) {
- printf("listOK/lsOK [start_id [end_id]]\n");
- printf(" Like list/ls, but only for accounts without state and not banished.\n");
- } else if (strcmp(command, "memo") == 0) {
- printf("memo <account_name> <memo>\n");
- printf(" Modify the memo of an account.\n");
- printf(" 'memo': it can have until 253 characters (with spaces or not).\n");
- } else if (strcmp(command, "name") == 0) {
- printf("name <account_id>\n");
- printf(" Give the name of an account.\n");
- } else if (strcmp(command, "password") == 0) {
- printf("passwd <account_name> <new_password>\n");
- printf(" Change the password of an account.\n");
- printf(" When new password is omitted,\n");
- printf(" the input is done without displaying of the pressed keys.\n");
- } else if (strcmp(command, "reloadgm") == 0) {
- printf("reloadGM\n");
- printf(" Reload GM configuration file\n");
- } else if (strcmp(command, "search") == 0) {
- printf("search <expression>\n");
- printf(" Seek accounts.\n");
- printf(" Displays the accounts whose names correspond.\n");
-// printf("search -r/-e/--expr/--regex <expression>\n");
-// printf(" Seek accounts by regular expression.\n");
-// printf(" Displays the accounts whose names correspond.\n");
- } else if (strcmp(command, "sex") == 0) {
- printf("sex <account_name> <sex>\n");
- printf(" Modify the sex of an account.\n");
- printf(" <example> sex testname Male\n");
- } else if (strcmp(command, "state") == 0) {
- printf("state <account_name> <new_state> <error_message_#7>\n");
- printf(" Change the state of an account.\n");
- printf(" 'new_state': state is the state of the packet 0x006a + 1.\n");
- printf(" The possibilities are:\n");
- printf(" 0 = Account ok\n");
- printf(" 1 = Unregistered ID\n");
- printf(" 2 = Incorrect Password\n");
- printf(" 3 = This ID is expired\n");
- printf(" 4 = Rejected from Server\n");
- printf(" 5 = You have been blocked by the GM Team\n");
- printf(" 6 = Your Game's EXE file is not the latest version\n");
- printf(" 7 = You are Prohibited to log in until...\n");
- printf(" 8 = Server is jammed due to over populated\n");
- printf(" 9 = No MSG\n");
- printf(" 100 = This ID has been totally erased\n");
- printf(" all other values are 'No MSG', then use state 9 please.\n");
- printf(" 'error_message_#7': message of the code error 6\n");
- printf(" = Your are Prohibited to log in until... (packet 0x006a)\n");
- } else if (strcmp(command, "timeadd") == 0) {
- printf("timeadd <account_name> <modifier>\n");
- printf(" Adds or substracts time from the validity limit of an account.\n");
- printf(" Modifier is done as follows:\n");
- printf(" Adjustment value (-1, 1, +1, etc...)\n");
- printf(" Modified element:\n");
- printf(" a or y: year\n");
- printf(" m: month\n");
- printf(" j or d: day\n");
- printf(" h: hour\n");
- printf(" mn: minute\n");
- printf(" s: second\n");
- printf(" <example> timeadd testname +1m-2mn1s-6y\n");
- printf(" this example adds 1 month and 1 second, and substracts 2 minutes\n");
- printf(" and 6 years at the same time.\n");
- printf("NOTE: You can not modify a unlimited validity limit.\n");
- printf(" If you want modify it, you want probably create a limited validity limit.\n");
- printf(" So, at first, you must set the validity limit to a date/time.\n");
- } else if (strcmp(command, "timeadd") == 0) {
- printf("timeset <account_name> yyyy/mm/dd [hh:mm:ss]\n");
- printf(" Changes the validity limit of an account.\n");
- printf(" Default time [hh:mm:ss]: 23:59:59.\n");
- printf("timeset <account_name> 0\n");
- printf(" Gives an unlimited validity limit (0 = unlimited).\n");
- } else if (strcmp(command, "unban") == 0) {
- printf("unban/unbanish <account name>\n");
- printf(" Remove the banishment of an account.\n");
- printf(" This command works like banset <account_name> 0.\n");
- } else if (strcmp(command, "unblock") == 0) {
- printf("unblock <account name>\n");
- printf(" Set state 0 (Account ok) to an account.\n");
- printf(" This command works like state <account_name> 0.\n");
- } else if (strcmp(command, "version") == 0) {
- printf("version\n");
- printf(" Display the version of the login-server.\n");
- } else if (strcmp(command, "who") == 0) {
- printf("who <account name>\n");
- printf(" Displays complete information of an account.\n");
+ }
+ else if (strcmp (command, "add") == 0)
+ {
+ printf ("add <account_name> <sex> <password>\n");
+ printf
+ (" Create an account with the default email (a@a.com).\n");
+ printf
+ (" Concerning the sex, only the first letter is used (F or M).\n");
+ printf
+ (" The e-mail is set to a@a.com (default e-mail). It's like to have no e-mail.\n");
+ printf (" When the password is omitted,\n");
+ printf
+ (" the input is done without displaying of the pressed keys.\n");
+ printf (" <example> add testname Male testpass\n");
+ }
+ else if (strcmp (command, "ban") == 0)
+ {
+ printf ("ban/banish yyyy/mm/dd hh:mm:ss <account name>\n");
+ printf
+ (" Changes the final date of a banishment of an account.\n");
+ printf (" Like banset, but <account name> is at end.\n");
+ }
+ else if (strcmp (command, "banadd") == 0)
+ {
+ printf ("banadd <account_name> <modifier>\n");
+ printf
+ (" Adds or substracts time from the final date of a banishment of an account.\n");
+ printf (" Modifier is done as follows:\n");
+ printf (" Adjustment value (-1, 1, +1, etc...)\n");
+ printf (" Modified element:\n");
+ printf (" a or y: year\n");
+ printf (" m: month\n");
+ printf (" j or d: day\n");
+ printf (" h: hour\n");
+ printf (" mn: minute\n");
+ printf (" s: second\n");
+ printf (" <example> banadd testname +1m-2mn1s-6y\n");
+ printf
+ (" this example adds 1 month and 1 second, and substracts 2 minutes\n");
+ printf (" and 6 years at the same time.\n");
+ printf
+ ("NOTE: If you modify the final date of a non-banished account,\n");
+ printf
+ (" you fix the final date to (actual time +- adjustments)\n");
+ }
+ else if (strcmp (command, "banset") == 0)
+ {
+ printf ("banset <account_name> yyyy/mm/dd [hh:mm:ss]\n");
+ printf
+ (" Changes the final date of a banishment of an account.\n");
+ printf (" Default time [hh:mm:ss]: 23:59:59.\n");
+ printf ("banset <account_name> 0\n");
+ printf (" Set a non-banished account (0 = unbanished).\n");
+ }
+ else if (strcmp (command, "block") == 0)
+ {
+ printf ("block <account name>\n");
+ printf
+ (" Set state 5 (You have been blocked by the GM Team) to an account.\n");
+ printf (" This command works like state <account_name> 5.\n");
+ }
+ else if (strcmp (command, "check") == 0)
+ {
+ printf ("check <account_name> <password>\n");
+ printf (" Check the validity of a password for an account.\n");
+ printf (" NOTE: Server will never sends back a password.\n");
+ printf
+ (" It's the only method you have to know if a password is correct.\n");
+ printf
+ (" The other method is to have a ('physical') access to the accounts file.\n");
+ }
+ else if (strcmp (command, "create") == 0)
+ {
+ printf ("create <account_name> <sex> <email> <password>\n");
+ printf (" Like the 'add' command, but with e-mail moreover.\n");
+ printf
+ (" <example> create testname Male my@mail.com testpass\n");
+ }
+ else if (strcmp (command, "delete") == 0)
+ {
+ printf ("del <account name>\n");
+ printf (" Remove an account.\n");
+ printf
+ (" This order requires confirmation. After confirmation, the account is deleted.\n");
+ }
+ else if (strcmp (command, "email") == 0)
+ {
+ printf ("email <account_name> <email>\n");
+ printf (" Modify the e-mail of an account.\n");
+ }
+ else if (strcmp (command, "getcount") == 0)
+ {
+ printf ("getcount\n");
+ printf
+ (" Give the number of players online on all char-servers.\n");
+ }
+ else if (strcmp (command, "gm") == 0)
+ {
+ printf ("gm <account_name> [GM_level]\n");
+ printf (" Modify the GM level of an account.\n");
+ printf (" Default value remove GM level (GM level = 0).\n");
+ printf (" <example> gm testname 80\n");
+ }
+ else if (strcmp (command, "id") == 0)
+ {
+ printf ("id <account name>\n");
+ printf (" Give the id of an account.\n");
+ }
+ else if (strcmp (command, "info") == 0)
+ {
+ printf ("info <account_id>\n");
+ printf (" Display complete information of an account.\n");
+ }
+ else if (strcmp (command, "kami") == 0)
+ {
+ printf ("kami <message>\n");
+ printf
+ (" Sends a broadcast message on all map-server (in yellow).\n");
+ }
+ else if (strcmp (command, "kamib") == 0)
+ {
+ printf ("kamib <message>\n");
+ printf
+ (" Sends a broadcast message on all map-server (in blue).\n");
+ }
+ else if (strcmp (command, "language") == 0)
+ {
+ printf ("language <language>\n");
+ printf (" Change the language of displaying.\n");
+ printf (" Possible languages: Français or English.\n");
+ }
+ else if (strcmp (command, "list") == 0)
+ {
+ printf ("list/ls [start_id [end_id]]\n");
+ printf (" Display a list of accounts.\n");
+ printf
+ (" 'start_id', 'end_id': indicate end and start identifiers.\n");
+ printf
+ (" Research by name is not possible with this command.\n");
+ printf (" <example> list 10 9999999\n");
+ }
+ else if (strcmp (command, "itemfrob") == 0)
+ {
+ printf ("itemfrob <source-id> <dest-id>\n");
+ printf (" Translates item IDs for all accounts.\n");
+ printf
+ (" Any items matching the source item ID will be mapped to the dest-id.\n");
+ printf (" <example> itemfrob 500 700\n");
+ }
+ else if (strcmp (command, "listban") == 0)
+ {
+ printf ("listBan/lsBan [start_id [end_id]]\n");
+ printf
+ (" Like list/ls, but only for accounts with state or banished.\n");
+ }
+ else if (strcmp (command, "listgm") == 0)
+ {
+ printf ("listGM/lsGM [start_id [end_id]]\n");
+ printf (" Like list/ls, but only for GM accounts.\n");
+ }
+ else if (strcmp (command, "listok") == 0)
+ {
+ printf ("listOK/lsOK [start_id [end_id]]\n");
+ printf
+ (" Like list/ls, but only for accounts without state and not banished.\n");
+ }
+ else if (strcmp (command, "memo") == 0)
+ {
+ printf ("memo <account_name> <memo>\n");
+ printf (" Modify the memo of an account.\n");
+ printf
+ (" 'memo': it can have until 253 characters (with spaces or not).\n");
+ }
+ else if (strcmp (command, "name") == 0)
+ {
+ printf ("name <account_id>\n");
+ printf (" Give the name of an account.\n");
+ }
+ else if (strcmp (command, "password") == 0)
+ {
+ printf ("passwd <account_name> <new_password>\n");
+ printf (" Change the password of an account.\n");
+ printf (" When new password is omitted,\n");
+ printf
+ (" the input is done without displaying of the pressed keys.\n");
+ }
+ else if (strcmp (command, "reloadgm") == 0)
+ {
+ printf ("reloadGM\n");
+ printf (" Reload GM configuration file\n");
+ }
+ else if (strcmp (command, "search") == 0)
+ {
+ printf ("search <expression>\n");
+ printf (" Seek accounts.\n");
+ printf (" Displays the accounts whose names correspond.\n");
+// printf("search -r/-e/--expr/--regex <expression>\n");
+// printf(" Seek accounts by regular expression.\n");
+// printf(" Displays the accounts whose names correspond.\n");
+ }
+ else if (strcmp (command, "sex") == 0)
+ {
+ printf ("sex <account_name> <sex>\n");
+ printf (" Modify the sex of an account.\n");
+ printf (" <example> sex testname Male\n");
+ }
+ else if (strcmp (command, "state") == 0)
+ {
+ printf ("state <account_name> <new_state> <error_message_#7>\n");
+ printf (" Change the state of an account.\n");
+ printf
+ (" 'new_state': state is the state of the packet 0x006a + 1.\n");
+ printf (" The possibilities are:\n");
+ printf (" 0 = Account ok\n");
+ printf (" 1 = Unregistered ID\n");
+ printf (" 2 = Incorrect Password\n");
+ printf (" 3 = This ID is expired\n");
+ printf (" 4 = Rejected from Server\n");
+ printf
+ (" 5 = You have been blocked by the GM Team\n");
+ printf
+ (" 6 = Your Game's EXE file is not the latest version\n");
+ printf
+ (" 7 = You are Prohibited to log in until...\n");
+ printf
+ (" 8 = Server is jammed due to over populated\n");
+ printf (" 9 = No MSG\n");
+ printf (" 100 = This ID has been totally erased\n");
+ printf
+ (" all other values are 'No MSG', then use state 9 please.\n");
+ printf (" 'error_message_#7': message of the code error 6\n");
+ printf
+ (" = Your are Prohibited to log in until... (packet 0x006a)\n");
+ }
+ else if (strcmp (command, "timeadd") == 0)
+ {
+ printf ("timeadd <account_name> <modifier>\n");
+ printf
+ (" Adds or substracts time from the validity limit of an account.\n");
+ printf (" Modifier is done as follows:\n");
+ printf (" Adjustment value (-1, 1, +1, etc...)\n");
+ printf (" Modified element:\n");
+ printf (" a or y: year\n");
+ printf (" m: month\n");
+ printf (" j or d: day\n");
+ printf (" h: hour\n");
+ printf (" mn: minute\n");
+ printf (" s: second\n");
+ printf (" <example> timeadd testname +1m-2mn1s-6y\n");
+ printf
+ (" this example adds 1 month and 1 second, and substracts 2 minutes\n");
+ printf (" and 6 years at the same time.\n");
+ printf ("NOTE: You can not modify a unlimited validity limit.\n");
+ printf
+ (" If you want modify it, you want probably create a limited validity limit.\n");
+ printf
+ (" So, at first, you must set the validity limit to a date/time.\n");
+ }
+ else if (strcmp (command, "timeadd") == 0)
+ {
+ printf ("timeset <account_name> yyyy/mm/dd [hh:mm:ss]\n");
+ printf (" Changes the validity limit of an account.\n");
+ printf (" Default time [hh:mm:ss]: 23:59:59.\n");
+ printf ("timeset <account_name> 0\n");
+ printf (" Gives an unlimited validity limit (0 = unlimited).\n");
+ }
+ else if (strcmp (command, "unban") == 0)
+ {
+ printf ("unban/unbanish <account name>\n");
+ printf (" Remove the banishment of an account.\n");
+ printf (" This command works like banset <account_name> 0.\n");
+ }
+ else if (strcmp (command, "unblock") == 0)
+ {
+ printf ("unblock <account name>\n");
+ printf (" Set state 0 (Account ok) to an account.\n");
+ printf (" This command works like state <account_name> 0.\n");
+ }
+ else if (strcmp (command, "version") == 0)
+ {
+ printf ("version\n");
+ printf (" Display the version of the login-server.\n");
+ }
+ else if (strcmp (command, "who") == 0)
+ {
+ printf ("who <account name>\n");
+ printf (" Displays complete information of an account.\n");
// quit
- } else if (strcmp(command, "quit") == 0 ||
- strcmp(command, "exit") == 0 ||
- strcmp(command, "end") == 0) {
- printf("quit/end/exit\n");
- printf(" End of the program of administration.\n");
+ }
+ else if (strcmp (command, "quit") == 0 ||
+ strcmp (command, "exit") == 0 ||
+ strcmp (command, "end") == 0)
+ {
+ printf ("quit/end/exit\n");
+ printf (" End of the program of administration.\n");
// unknown command
- } else {
- if (strlen(command) > 0)
- printf("Unknown command [%s] for help. Displaying of all commands.\n", command);
- printf(" aide/help/? -- Display this help\n");
- printf(" aide/help/? [command] -- Display the help of the command\n");
- printf(" add <account_name> <sex> <password> -- Create an account with default email\n");
- printf(" ban/banish yyyy/mm/dd hh:mm:ss <account name> -- Change final date of a ban\n");
- printf(" banadd/ba <account_name> <modifier> -- Add or substract time from the final\n");
- printf(" example: ba apple +1m-2mn1s-2y date of a banishment of an account\n");
- printf(" banset/bs <account_name> yyyy/mm/dd [hh:mm:ss] -- Change final date of a ban\n");
- printf(" banset/bs <account_name> 0 -- Un-banish an account\n");
- printf(" block <account name> -- Set state 5 (blocked by the GM Team) to an account\n");
- printf(" check <account_name> <password> -- Check the validity of a password\n");
- printf(" create <account_name> <sex> <email> <passwrd> -- Create an account with email\n");
- printf(" del <account name> -- Remove an account\n");
- printf(" email <account_name> <email> -- Modify an email of an account\n");
- printf(" getcount -- Give the number of players online\n");
- printf(" gm <account_name> [GM_level] -- Modify the GM level of an account\n");
- printf(" id <account name> -- Give the id of an account\n");
- printf(" info <account_id> -- Display all information of an account\n");
- printf(" itemfrob <source-id> <dest-id> -- Map all items from one item ID to another\n");
- printf(" kami <message> -- Sends a broadcast message (in yellow)\n");
- printf(" kamib <message> -- Sends a broadcast message (in blue)\n");
- printf(" language <language> -- Change the language of displaying.\n");
- printf(" list/ls [First_id [Last_id]] -- Display a list of accounts\n");
- printf(" listBan/lsBan [First_id [Last_id] ] -- Display a list of accounts\n");
- printf(" with state or banished\n");
- printf(" listGM/lsGM [First_id [Last_id]] -- Display a list of GM accounts\n");
- printf(" listOK/lsOK [First_id [Last_id] ] -- Display a list of accounts\n");
- printf(" without state and not banished\n");
- printf(" memo <account_name> <memo> -- Modify the memo of an account\n");
- printf(" name <account_id> -- Give the name of an account\n");
- printf(" passwd <account_name> <new_password> -- Change the password of an account\n");
- printf(" quit/end/exit -- End of the program of administation\n");
- printf(" reloadGM -- Reload GM configuration file\n");
- printf(" search <expression> -- Seek accounts\n");
-// printf(" search -e/-r/--expr/--regex <expressn> -- Seek accounts by regular-expression\n");
- printf(" sex <nomcompte> <sexe> -- Modify the sex of an account\n");
- printf(" state <account_name> <new_state> <error_message_#7> -- Change the state\n");
- printf(" timeadd/ta <account_name> <modifier> -- Add or substract time from the\n");
- printf(" example: ta apple +1m-2mn1s-2y validity limit of an account\n");
- printf(" timeset/ts <account_name> yyyy/mm/dd [hh:mm:ss] -- Change the validify limit\n");
- printf(" timeset/ts <account_name> 0 -- Give a unlimited validity limit\n");
- printf(" unban/unbanish <account name> -- Remove the banishment of an account\n");
- printf(" unblock <account name> -- Set state 0 (Account ok) to an account\n");
- printf(" version -- Gives the version of the login-server\n");
- printf(" who <account name> -- Display all information of an account\n");
- printf(" who <account name> -- Display all information of an account\n");
- printf(" Note: To use spaces in an account name, type \"<account name>\" (or ').\n");
- }
- }
+ }
+ else
+ {
+ if (strlen (command) > 0)
+ printf
+ ("Unknown command [%s] for help. Displaying of all commands.\n",
+ command);
+ printf
+ (" aide/help/? -- Display this help\n");
+ printf
+ (" aide/help/? [command] -- Display the help of the command\n");
+ printf
+ (" add <account_name> <sex> <password> -- Create an account with default email\n");
+ printf
+ (" ban/banish yyyy/mm/dd hh:mm:ss <account name> -- Change final date of a ban\n");
+ printf
+ (" banadd/ba <account_name> <modifier> -- Add or substract time from the final\n");
+ printf
+ (" example: ba apple +1m-2mn1s-2y date of a banishment of an account\n");
+ printf
+ (" banset/bs <account_name> yyyy/mm/dd [hh:mm:ss] -- Change final date of a ban\n");
+ printf
+ (" banset/bs <account_name> 0 -- Un-banish an account\n");
+ printf
+ (" block <account name> -- Set state 5 (blocked by the GM Team) to an account\n");
+ printf
+ (" check <account_name> <password> -- Check the validity of a password\n");
+ printf
+ (" create <account_name> <sex> <email> <passwrd> -- Create an account with email\n");
+ printf
+ (" del <account name> -- Remove an account\n");
+ printf
+ (" email <account_name> <email> -- Modify an email of an account\n");
+ printf
+ (" getcount -- Give the number of players online\n");
+ printf
+ (" gm <account_name> [GM_level] -- Modify the GM level of an account\n");
+ printf
+ (" id <account name> -- Give the id of an account\n");
+ printf
+ (" info <account_id> -- Display all information of an account\n");
+ printf
+ (" itemfrob <source-id> <dest-id> -- Map all items from one item ID to another\n");
+ printf
+ (" kami <message> -- Sends a broadcast message (in yellow)\n");
+ printf
+ (" kamib <message> -- Sends a broadcast message (in blue)\n");
+ printf
+ (" language <language> -- Change the language of displaying.\n");
+ printf
+ (" list/ls [First_id [Last_id]] -- Display a list of accounts\n");
+ printf
+ (" listBan/lsBan [First_id [Last_id] ] -- Display a list of accounts\n");
+ printf
+ (" with state or banished\n");
+ printf
+ (" listGM/lsGM [First_id [Last_id]] -- Display a list of GM accounts\n");
+ printf
+ (" listOK/lsOK [First_id [Last_id] ] -- Display a list of accounts\n");
+ printf
+ (" without state and not banished\n");
+ printf
+ (" memo <account_name> <memo> -- Modify the memo of an account\n");
+ printf
+ (" name <account_id> -- Give the name of an account\n");
+ printf
+ (" passwd <account_name> <new_password> -- Change the password of an account\n");
+ printf
+ (" quit/end/exit -- End of the program of administation\n");
+ printf
+ (" reloadGM -- Reload GM configuration file\n");
+ printf
+ (" search <expression> -- Seek accounts\n");
+// printf(" search -e/-r/--expr/--regex <expressn> -- Seek accounts by regular-expression\n");
+ printf
+ (" sex <nomcompte> <sexe> -- Modify the sex of an account\n");
+ printf
+ (" state <account_name> <new_state> <error_message_#7> -- Change the state\n");
+ printf
+ (" timeadd/ta <account_name> <modifier> -- Add or substract time from the\n");
+ printf
+ (" example: ta apple +1m-2mn1s-2y validity limit of an account\n");
+ printf
+ (" timeset/ts <account_name> yyyy/mm/dd [hh:mm:ss] -- Change the validify limit\n");
+ printf
+ (" timeset/ts <account_name> 0 -- Give a unlimited validity limit\n");
+ printf
+ (" unban/unbanish <account name> -- Remove the banishment of an account\n");
+ printf
+ (" unblock <account name> -- Set state 0 (Account ok) to an account\n");
+ printf
+ (" version -- Gives the version of the login-server\n");
+ printf
+ (" who <account name> -- Display all information of an account\n");
+ printf
+ (" who <account name> -- Display all information of an account\n");
+ printf
+ (" Note: To use spaces in an account name, type \"<account name>\" (or ').\n");
+ }
+ }
}
//-----------------------------
// Sub-function: add an account
//-----------------------------
-int addaccount(char* param, int emailflag) {
- char name[1023], sex[1023], email[1023], password[1023];
-// int i;
-
- memset(name, '\0', sizeof(name));
- memset(sex, '\0', sizeof(sex));
- memset(email, '\0', sizeof(email));
- memset(password, '\0', sizeof(password));
-
- if (emailflag == 0) { // add command
- if (sscanf(param, "\"%[^\"]\" %s %[^\r\n]", name, sex, password) < 2 && // password can be void
- sscanf(param, "'%[^']' %s %[^\r\n]", name, sex, password) < 2 && // password can be void
- sscanf(param, "%s %s %[^\r\n]", name, sex, password) < 2) { // password can be void
- if (defaultlanguage == 'F') {
- printf("Entrez un nom de compte, un sexe et un mot de passe svp.\n");
- printf("<exemple> add nomtest Male motdepassetest\n");
- ladmin_log("Nombre incorrect de paramètres pour créer un compte (commande 'add')." RETCODE);
- } else {
- printf("Please input an account name, a sex and a password.\n");
- printf("<example> add testname Male testpass\n");
- ladmin_log("Incomplete parameters to create an account ('add' command)." RETCODE);
- }
- return 136;
- }
- strcpy(email, "a@a.com"); // default email
- } else { // 1: create command
- if (sscanf(param, "\"%[^\"]\" %s %s %[^\r\n]", name, sex, email, password) < 3 && // password can be void
- sscanf(param, "'%[^']' %s %s %[^\r\n]", name, sex, email, password) < 3 && // password can be void
- sscanf(param, "%s %s %s %[^\r\n]", name, sex, email, password) < 3) { // password can be void
- if (defaultlanguage == 'F') {
- printf("Entrez un nom de compte, un sexe et un mot de passe svp.\n");
- printf("<exemple> create nomtest Male mo@mail.com motdepassetest\n");
- ladmin_log("Nombre incorrect de paramètres pour créer un compte (commande 'create')." RETCODE);
- } else {
- printf("Please input an account name, a sex and a password.\n");
- printf("<example> create testname Male my@mail.com testpass\n");
- ladmin_log("Incomplete parameters to create an account ('create' command)." RETCODE);
- }
- return 136;
- }
- }
- if (verify_accountname(name) == 0) {
- return 102;
- }
+int addaccount (char *param, int emailflag)
+{
+ char name[1023], sex[1023], email[1023], password[1023];
+// int i;
+
+ memset (name, '\0', sizeof (name));
+ memset (sex, '\0', sizeof (sex));
+ memset (email, '\0', sizeof (email));
+ memset (password, '\0', sizeof (password));
+
+ if (emailflag == 0)
+ { // add command
+ if (sscanf (param, "\"%[^\"]\" %s %[^\r\n]", name, sex, password) < 2 && // password can be void
+ sscanf (param, "'%[^']' %s %[^\r\n]", name, sex, password) < 2 && // password can be void
+ sscanf (param, "%s %s %[^\r\n]", name, sex, password) < 2)
+ { // password can be void
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Entrez un nom de compte, un sexe et un mot de passe svp.\n");
+ printf ("<exemple> add nomtest Male motdepassetest\n");
+ ladmin_log
+ ("Nombre incorrect de paramètres pour créer un compte (commande 'add')."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please input an account name, a sex and a password.\n");
+ printf ("<example> add testname Male testpass\n");
+ ladmin_log
+ ("Incomplete parameters to create an account ('add' command)."
+ RETCODE);
+ }
+ return 136;
+ }
+ strcpy (email, "a@a.com"); // default email
+ }
+ else
+ { // 1: create command
+ if (sscanf (param, "\"%[^\"]\" %s %s %[^\r\n]", name, sex, email, password) < 3 && // password can be void
+ sscanf (param, "'%[^']' %s %s %[^\r\n]", name, sex, email, password) < 3 && // password can be void
+ sscanf (param, "%s %s %s %[^\r\n]", name, sex, email,
+ password) < 3)
+ { // password can be void
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Entrez un nom de compte, un sexe et un mot de passe svp.\n");
+ printf
+ ("<exemple> create nomtest Male mo@mail.com motdepassetest\n");
+ ladmin_log
+ ("Nombre incorrect de paramètres pour créer un compte (commande 'create')."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please input an account name, a sex and a password.\n");
+ printf
+ ("<example> create testname Male my@mail.com testpass\n");
+ ladmin_log
+ ("Incomplete parameters to create an account ('create' command)."
+ RETCODE);
+ }
+ return 136;
+ }
+ }
+ if (verify_accountname (name) == 0)
+ {
+ return 102;
+ }
/* for(i = 0; name[i]; i++) {
if (strchr("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_", name[i]) == NULL) {
@@ -1205,1857 +1690,2717 @@ int addaccount(char* param, int emailflag) {
}
}*/
- sex[0] = toupper(sex[0]);
- if (strchr("MF", sex[0]) == NULL) {
- if (defaultlanguage == 'F') {
- printf("Sexe incorrect [%s]. Entrez M ou F svp.\n", sex);
- ladmin_log("Sexe incorrect [%s]. Entrez M ou F svp." RETCODE, sex);
- } else {
- printf("Illegal gender [%s]. Please input M or F.\n", sex);
- ladmin_log("Illegal gender [%s]. Please input M or F." RETCODE, sex);
- }
- return 103;
- }
-
- if (strlen(email) < 3) {
- if (defaultlanguage == 'F') {
- printf("Email trop courte [%s]. Entrez une e-mail valide svp.\n", email);
- ladmin_log("Email trop courte [%s]. Entrez une e-mail valide svp." RETCODE, email);
- } else {
- printf("Email is too short [%s]. Please input a valid e-mail.\n", email);
- ladmin_log("Email is too short [%s]. Please input a valid e-mail." RETCODE, email);
- }
- return 109;
- }
- if (strlen(email) > 39) {
- if (defaultlanguage == 'F') {
- printf("Email trop longue [%s]. Entrez une e-mail de 39 caractères maximum svp.\n", email);
- ladmin_log("Email trop longue [%s]. Entrez une e-mail de 39 caractères maximum svp." RETCODE, email);
- } else {
- printf("Email is too long [%s]. Please input an e-mail with 39 bytes at the most.\n", email);
- ladmin_log("Email is too long [%s]. Please input an e-mail with 39 bytes at the most." RETCODE, email);
- }
- return 109;
- }
- if (e_mail_check(email) == 0) {
- if (defaultlanguage == 'F') {
- printf("Email incorrecte [%s]. Entrez une e-mail valide svp.\n", email);
- ladmin_log("Email incorrecte [%s]. Entrez une e-mail valide svp." RETCODE, email);
- } else {
- printf("Invalid email [%s]. Please input a valid e-mail.\n", email);
- ladmin_log("Invalid email [%s]. Please input a valid e-mail." RETCODE, email);
- }
- return 109;
- }
-
- if (strlen(password) == 0) {
- if (typepasswd(password) == 0)
- return 108;
- }
- if (verify_password(password) == 0)
- return 104;
-
- if (defaultlanguage == 'F') {
- ladmin_log("Envoi d'un requête au serveur de logins pour créer un compte." RETCODE);
- } else {
- ladmin_log("Request to login-server to create an account." RETCODE);
- }
-
- WFIFOW(login_fd,0) = 0x7930;
- memcpy(WFIFOP(login_fd,2), name, 24);
- memcpy(WFIFOP(login_fd,26), password, 24);
- WFIFOB(login_fd,50) = sex[0];
- memcpy(WFIFOP(login_fd,51), email, 40);
- WFIFOSET(login_fd,91);
- bytes_to_read = 1;
-
- return 0;
+ sex[0] = toupper (sex[0]);
+ if (strchr ("MF", sex[0]) == NULL)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Sexe incorrect [%s]. Entrez M ou F svp.\n", sex);
+ ladmin_log ("Sexe incorrect [%s]. Entrez M ou F svp." RETCODE,
+ sex);
+ }
+ else
+ {
+ printf ("Illegal gender [%s]. Please input M or F.\n", sex);
+ ladmin_log ("Illegal gender [%s]. Please input M or F." RETCODE,
+ sex);
+ }
+ return 103;
+ }
+
+ if (strlen (email) < 3)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Email trop courte [%s]. Entrez une e-mail valide svp.\n",
+ email);
+ ladmin_log
+ ("Email trop courte [%s]. Entrez une e-mail valide svp."
+ RETCODE, email);
+ }
+ else
+ {
+ printf ("Email is too short [%s]. Please input a valid e-mail.\n",
+ email);
+ ladmin_log
+ ("Email is too short [%s]. Please input a valid e-mail."
+ RETCODE, email);
+ }
+ return 109;
+ }
+ if (strlen (email) > 39)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Email trop longue [%s]. Entrez une e-mail de 39 caractères maximum svp.\n",
+ email);
+ ladmin_log
+ ("Email trop longue [%s]. Entrez une e-mail de 39 caractères maximum svp."
+ RETCODE, email);
+ }
+ else
+ {
+ printf
+ ("Email is too long [%s]. Please input an e-mail with 39 bytes at the most.\n",
+ email);
+ ladmin_log
+ ("Email is too long [%s]. Please input an e-mail with 39 bytes at the most."
+ RETCODE, email);
+ }
+ return 109;
+ }
+ if (e_mail_check (email) == 0)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Email incorrecte [%s]. Entrez une e-mail valide svp.\n",
+ email);
+ ladmin_log ("Email incorrecte [%s]. Entrez une e-mail valide svp."
+ RETCODE, email);
+ }
+ else
+ {
+ printf ("Invalid email [%s]. Please input a valid e-mail.\n",
+ email);
+ ladmin_log ("Invalid email [%s]. Please input a valid e-mail."
+ RETCODE, email);
+ }
+ return 109;
+ }
+
+ if (strlen (password) == 0)
+ {
+ if (typepasswd (password) == 0)
+ return 108;
+ }
+ if (verify_password (password) == 0)
+ return 104;
+
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log
+ ("Envoi d'un requête au serveur de logins pour créer un compte."
+ RETCODE);
+ }
+ else
+ {
+ ladmin_log ("Request to login-server to create an account." RETCODE);
+ }
+
+ WFIFOW (login_fd, 0) = 0x7930;
+ memcpy (WFIFOP (login_fd, 2), name, 24);
+ memcpy (WFIFOP (login_fd, 26), password, 24);
+ WFIFOB (login_fd, 50) = sex[0];
+ memcpy (WFIFOP (login_fd, 51), email, 40);
+ WFIFOSET (login_fd, 91);
+ bytes_to_read = 1;
+
+ return 0;
}
//---------------------------------------------------------------------------------
// Sub-function: Add/substract time to the final date of a banishment of an account
//---------------------------------------------------------------------------------
-int banaddaccount(char* param) {
- char name[1023], modif[1023];
- int year, month, day, hour, minute, second;
- char * p_modif;
- int value, i;
-
- memset(name, '\0', sizeof(name));
- memset(modif, '\0', sizeof(modif));
- year = month = day = hour = minute = second = 0;
-
- if (sscanf(param, "\"%[^\"]\" %[^\r\n]", name, modif) < 2 &&
- sscanf(param, "'%[^']' %[^\r\n]", name, modif) < 2 &&
- sscanf(param, "%s %[^\r\n]", name, modif) < 2) {
- if (defaultlanguage == 'F') {
- printf("Entrez un nom de compte et un modificateur svp.\n");
- printf(" <exemple> banadd nomtest +1m-2mn1s-6y\n");
- printf(" Cette exemple ajoute 1 mois et 1 seconde, et soustrait 2 minutes\n");
- printf(" et 6 ans dans le même temps.\n");
- ladmin_log("Nombre incorrect de paramètres pour modifier la fin de ban d'un compte (commande 'banadd')." RETCODE);
- } else {
- printf("Please input an account name and a modifier.\n");
- printf(" <example>: banadd testname +1m-2mn1s-6y\n");
- printf(" this example adds 1 month and 1 second, and substracts 2 minutes\n");
- printf(" and 6 years at the same time.\n");
- ladmin_log("Incomplete parameters to modify the ban date/time of an account ('banadd' command)." RETCODE);
- }
- return 136;
- }
- if (verify_accountname(name) == 0) {
- return 102;
- }
-
- // lowercase for modif
- for (i = 0; modif[i]; i++)
- modif[i] = tolower(modif[i]);
- p_modif = modif;
- while (strlen(p_modif) > 0) {
- value = atoi(p_modif);
- if (value == 0) {
- p_modif++;
- } else {
- if (p_modif[0] == '-' || p_modif[0] == '+')
- p_modif++;
- while (strlen(p_modif) > 0 && p_modif[0] >= '0' && p_modif[0] <= '9') {
- p_modif++;
- }
- if (p_modif[0] == 's') {
- second = value;
- p_modif++;
- } else if (p_modif[0] == 'm' && p_modif[1] == 'n') {
- minute = value;
- p_modif += 2;
- } else if (p_modif[0] == 'h') {
- hour = value;
- p_modif++;
- } else if (p_modif[0] == 'd' || p_modif[0] == 'j') {
- day = value;
- p_modif += 2;
- } else if (p_modif[0] == 'm') {
- month = value;
- p_modif++;
- } else if (p_modif[0] == 'y' || p_modif[0] == 'a') {
- year = value;
- p_modif++;
- } else {
- p_modif++;
- }
- }
- }
-
- if (defaultlanguage == 'F') {
- printf(" année: %d\n", year);
- printf(" mois: %d\n", month);
- printf(" jour: %d\n", day);
- printf(" heure: %d\n", hour);
- printf(" minute: %d\n", minute);
- printf(" seconde: %d\n", second);
- } else {
- printf(" year: %d\n", year);
- printf(" month: %d\n", month);
- printf(" day: %d\n", day);
- printf(" hour: %d\n", hour);
- printf(" minute: %d\n", minute);
- printf(" second: %d\n", second);
- }
-
- if (year == 0 && month == 0 && day == 0 && hour == 0 && minute == 0 && second == 0) {
- if (defaultlanguage == 'F') {
- printf("Vous devez entrer un ajustement avec cette commande, svp:\n");
- printf(" Valeur d'ajustement (-1, 1, +1, etc...)\n");
- printf(" Element modifié:\n");
- printf(" a ou y: année\n");
- printf(" m: mois\n");
- printf(" j ou d: jour\n");
- printf(" h: heure\n");
- printf(" mn: minute\n");
- printf(" s: seconde\n");
- printf(" <exemple> banadd nomtest +1m-2mn1s-6y\n");
- printf(" Cette exemple ajoute 1 mois et 1 seconde, et soustrait 2 minutes\n");
- printf(" et 6 ans dans le même temps.\n");
- ladmin_log("Aucun ajustement n'est pas un ajustement (commande 'banadd')." RETCODE);
- } else {
- printf("Please give an adjustment with this command:\n");
- printf(" Adjustment value (-1, 1, +1, etc...)\n");
- printf(" Modified element:\n");
- printf(" a or y: year\n");
- printf(" m: month\n");
- printf(" j or d: day\n");
- printf(" h: hour\n");
- printf(" mn: minute\n");
- printf(" s: second\n");
- printf(" <example> banadd testname +1m-2mn1s-6y\n");
- printf(" this example adds 1 month and 1 second, and substracts 2 minutes\n");
- printf(" and 6 years at the same time.\n");
- ladmin_log("No adjustment isn't an adjustment ('banadd' command)." RETCODE);
- }
- return 137;
- }
- if (year > 127 || year < -127) {
- if (defaultlanguage == 'F') {
- printf("Entrez un ajustement d'années correct (de -127 à 127), svp.\n");
- ladmin_log("Ajustement de l'année hors norme (commande 'banadd')." RETCODE);
- } else {
- printf("Please give a correct adjustment for the years (from -127 to 127).\n");
- ladmin_log("Abnormal adjustement for the year ('banadd' command)." RETCODE);
- }
- return 137;
- }
- if (month > 255 || month < -255) {
- if (defaultlanguage == 'F') {
- printf("Entrez un ajustement de mois correct (de -255 à 255), svp.\n");
- ladmin_log("Ajustement du mois hors norme (commande 'banadd')." RETCODE);
- } else {
- printf("Please give a correct adjustment for the months (from -255 to 255).\n");
- ladmin_log("Abnormal adjustement for the month ('banadd' command)." RETCODE);
- }
- return 137;
- }
- if (day > 32767 || day < -32767) {
- if (defaultlanguage == 'F') {
- printf("Entrez un ajustement de jours correct (de -32767 à 32767), svp.\n");
- ladmin_log("Ajustement des jours hors norme (commande 'banadd')." RETCODE);
- } else {
- printf("Please give a correct adjustment for the days (from -32767 to 32767).\n");
- ladmin_log("Abnormal adjustement for the days ('banadd' command)." RETCODE);
- }
- return 137;
- }
- if (hour > 32767 || hour < -32767) {
- if (defaultlanguage == 'F') {
- printf("Entrez un ajustement d'heures correct (de -32767 à 32767), svp.\n");
- ladmin_log("Ajustement des heures hors norme (commande 'banadd')." RETCODE);
- } else {
- printf("Please give a correct adjustment for the hours (from -32767 to 32767).\n");
- ladmin_log("Abnormal adjustement for the hours ('banadd' command)." RETCODE);
- }
- return 137;
- }
- if (minute > 32767 || minute < -32767) {
- if (defaultlanguage == 'F') {
- printf("Entrez un ajustement de minutes correct (de -32767 à 32767), svp.\n");
- ladmin_log("Ajustement des minutes hors norme (commande 'banadd')." RETCODE);
- } else {
- printf("Please give a correct adjustment for the minutes (from -32767 to 32767).\n");
- ladmin_log("Abnormal adjustement for the minutes ('banadd' command)." RETCODE);
- }
- return 137;
- }
- if (second > 32767 || second < -32767) {
- if (defaultlanguage == 'F') {
- printf("Entrez un ajustement de secondes correct (de -32767 à 32767), svp.\n");
- ladmin_log("Ajustement des secondes hors norme (commande 'banadd')." RETCODE);
- } else {
- printf("Please give a correct adjustment for the seconds (from -32767 to 32767).\n");
- ladmin_log("Abnormal adjustement for the seconds ('banadd' command)." RETCODE);
- }
- return 137;
- }
-
- if (defaultlanguage == 'F') {
- ladmin_log("Envoi d'un requête au serveur de logins pour modifier la date d'un bannissement." RETCODE);
- } else {
- ladmin_log("Request to login-server to modify a ban date/time." RETCODE);
- }
-
- WFIFOW(login_fd,0) = 0x794c;
- memcpy(WFIFOP(login_fd,2), name, 24);
- WFIFOW(login_fd,26) = (short)year;
- WFIFOW(login_fd,28) = (short)month;
- WFIFOW(login_fd,30) = (short)day;
- WFIFOW(login_fd,32) = (short)hour;
- WFIFOW(login_fd,34) = (short)minute;
- WFIFOW(login_fd,36) = (short)second;
- WFIFOSET(login_fd,38);
- bytes_to_read = 1;
-
- return 0;
+int banaddaccount (char *param)
+{
+ char name[1023], modif[1023];
+ int year, month, day, hour, minute, second;
+ char *p_modif;
+ int value, i;
+
+ memset (name, '\0', sizeof (name));
+ memset (modif, '\0', sizeof (modif));
+ year = month = day = hour = minute = second = 0;
+
+ if (sscanf (param, "\"%[^\"]\" %[^\r\n]", name, modif) < 2 &&
+ sscanf (param, "'%[^']' %[^\r\n]", name, modif) < 2 &&
+ sscanf (param, "%s %[^\r\n]", name, modif) < 2)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez un nom de compte et un modificateur svp.\n");
+ printf (" <exemple> banadd nomtest +1m-2mn1s-6y\n");
+ printf
+ (" Cette exemple ajoute 1 mois et 1 seconde, et soustrait 2 minutes\n");
+ printf (" et 6 ans dans le même temps.\n");
+ ladmin_log
+ ("Nombre incorrect de paramètres pour modifier la fin de ban d'un compte (commande 'banadd')."
+ RETCODE);
+ }
+ else
+ {
+ printf ("Please input an account name and a modifier.\n");
+ printf (" <example>: banadd testname +1m-2mn1s-6y\n");
+ printf
+ (" this example adds 1 month and 1 second, and substracts 2 minutes\n");
+ printf (" and 6 years at the same time.\n");
+ ladmin_log
+ ("Incomplete parameters to modify the ban date/time of an account ('banadd' command)."
+ RETCODE);
+ }
+ return 136;
+ }
+ if (verify_accountname (name) == 0)
+ {
+ return 102;
+ }
+
+ // lowercase for modif
+ for (i = 0; modif[i]; i++)
+ modif[i] = tolower (modif[i]);
+ p_modif = modif;
+ while (strlen (p_modif) > 0)
+ {
+ value = atoi (p_modif);
+ if (value == 0)
+ {
+ p_modif++;
+ }
+ else
+ {
+ if (p_modif[0] == '-' || p_modif[0] == '+')
+ p_modif++;
+ while (strlen (p_modif) > 0 && p_modif[0] >= '0'
+ && p_modif[0] <= '9')
+ {
+ p_modif++;
+ }
+ if (p_modif[0] == 's')
+ {
+ second = value;
+ p_modif++;
+ }
+ else if (p_modif[0] == 'm' && p_modif[1] == 'n')
+ {
+ minute = value;
+ p_modif += 2;
+ }
+ else if (p_modif[0] == 'h')
+ {
+ hour = value;
+ p_modif++;
+ }
+ else if (p_modif[0] == 'd' || p_modif[0] == 'j')
+ {
+ day = value;
+ p_modif += 2;
+ }
+ else if (p_modif[0] == 'm')
+ {
+ month = value;
+ p_modif++;
+ }
+ else if (p_modif[0] == 'y' || p_modif[0] == 'a')
+ {
+ year = value;
+ p_modif++;
+ }
+ else
+ {
+ p_modif++;
+ }
+ }
+ }
+
+ if (defaultlanguage == 'F')
+ {
+ printf (" année: %d\n", year);
+ printf (" mois: %d\n", month);
+ printf (" jour: %d\n", day);
+ printf (" heure: %d\n", hour);
+ printf (" minute: %d\n", minute);
+ printf (" seconde: %d\n", second);
+ }
+ else
+ {
+ printf (" year: %d\n", year);
+ printf (" month: %d\n", month);
+ printf (" day: %d\n", day);
+ printf (" hour: %d\n", hour);
+ printf (" minute: %d\n", minute);
+ printf (" second: %d\n", second);
+ }
+
+ if (year == 0 && month == 0 && day == 0 && hour == 0 && minute == 0
+ && second == 0)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Vous devez entrer un ajustement avec cette commande, svp:\n");
+ printf (" Valeur d'ajustement (-1, 1, +1, etc...)\n");
+ printf (" Element modifié:\n");
+ printf (" a ou y: année\n");
+ printf (" m: mois\n");
+ printf (" j ou d: jour\n");
+ printf (" h: heure\n");
+ printf (" mn: minute\n");
+ printf (" s: seconde\n");
+ printf (" <exemple> banadd nomtest +1m-2mn1s-6y\n");
+ printf
+ (" Cette exemple ajoute 1 mois et 1 seconde, et soustrait 2 minutes\n");
+ printf (" et 6 ans dans le même temps.\n");
+ ladmin_log
+ ("Aucun ajustement n'est pas un ajustement (commande 'banadd')."
+ RETCODE);
+ }
+ else
+ {
+ printf ("Please give an adjustment with this command:\n");
+ printf (" Adjustment value (-1, 1, +1, etc...)\n");
+ printf (" Modified element:\n");
+ printf (" a or y: year\n");
+ printf (" m: month\n");
+ printf (" j or d: day\n");
+ printf (" h: hour\n");
+ printf (" mn: minute\n");
+ printf (" s: second\n");
+ printf (" <example> banadd testname +1m-2mn1s-6y\n");
+ printf
+ (" this example adds 1 month and 1 second, and substracts 2 minutes\n");
+ printf (" and 6 years at the same time.\n");
+ ladmin_log
+ ("No adjustment isn't an adjustment ('banadd' command)."
+ RETCODE);
+ }
+ return 137;
+ }
+ if (year > 127 || year < -127)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Entrez un ajustement d'années correct (de -127 à 127), svp.\n");
+ ladmin_log
+ ("Ajustement de l'année hors norme (commande 'banadd')."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please give a correct adjustment for the years (from -127 to 127).\n");
+ ladmin_log
+ ("Abnormal adjustement for the year ('banadd' command)."
+ RETCODE);
+ }
+ return 137;
+ }
+ if (month > 255 || month < -255)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Entrez un ajustement de mois correct (de -255 à 255), svp.\n");
+ ladmin_log ("Ajustement du mois hors norme (commande 'banadd')."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please give a correct adjustment for the months (from -255 to 255).\n");
+ ladmin_log
+ ("Abnormal adjustement for the month ('banadd' command)."
+ RETCODE);
+ }
+ return 137;
+ }
+ if (day > 32767 || day < -32767)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Entrez un ajustement de jours correct (de -32767 à 32767), svp.\n");
+ ladmin_log ("Ajustement des jours hors norme (commande 'banadd')."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please give a correct adjustment for the days (from -32767 to 32767).\n");
+ ladmin_log
+ ("Abnormal adjustement for the days ('banadd' command)."
+ RETCODE);
+ }
+ return 137;
+ }
+ if (hour > 32767 || hour < -32767)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Entrez un ajustement d'heures correct (de -32767 à 32767), svp.\n");
+ ladmin_log
+ ("Ajustement des heures hors norme (commande 'banadd')."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please give a correct adjustment for the hours (from -32767 to 32767).\n");
+ ladmin_log
+ ("Abnormal adjustement for the hours ('banadd' command)."
+ RETCODE);
+ }
+ return 137;
+ }
+ if (minute > 32767 || minute < -32767)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Entrez un ajustement de minutes correct (de -32767 à 32767), svp.\n");
+ ladmin_log
+ ("Ajustement des minutes hors norme (commande 'banadd')."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please give a correct adjustment for the minutes (from -32767 to 32767).\n");
+ ladmin_log
+ ("Abnormal adjustement for the minutes ('banadd' command)."
+ RETCODE);
+ }
+ return 137;
+ }
+ if (second > 32767 || second < -32767)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Entrez un ajustement de secondes correct (de -32767 à 32767), svp.\n");
+ ladmin_log
+ ("Ajustement des secondes hors norme (commande 'banadd')."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please give a correct adjustment for the seconds (from -32767 to 32767).\n");
+ ladmin_log
+ ("Abnormal adjustement for the seconds ('banadd' command)."
+ RETCODE);
+ }
+ return 137;
+ }
+
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log
+ ("Envoi d'un requête au serveur de logins pour modifier la date d'un bannissement."
+ RETCODE);
+ }
+ else
+ {
+ ladmin_log ("Request to login-server to modify a ban date/time."
+ RETCODE);
+ }
+
+ WFIFOW (login_fd, 0) = 0x794c;
+ memcpy (WFIFOP (login_fd, 2), name, 24);
+ WFIFOW (login_fd, 26) = (short) year;
+ WFIFOW (login_fd, 28) = (short) month;
+ WFIFOW (login_fd, 30) = (short) day;
+ WFIFOW (login_fd, 32) = (short) hour;
+ WFIFOW (login_fd, 34) = (short) minute;
+ WFIFOW (login_fd, 36) = (short) second;
+ WFIFOSET (login_fd, 38);
+ bytes_to_read = 1;
+
+ return 0;
}
//-----------------------------------------------------------------------
// Sub-function of sub-function banaccount, unbanaccount or bansetaccount
// Set the final date of a banishment of an account
//-----------------------------------------------------------------------
-int bansetaccountsub(char* name, char* date, char* time) {
- int year, month, day, hour, minute, second;
- time_t ban_until_time; // # of seconds 1/1/1970 (timestamp): ban time limit of the account (0 = no ban)
- struct tm *tmtime;
-
- year = month = day = hour = minute = second = 0;
- ban_until_time = 0;
- tmtime = localtime(&ban_until_time); // initialize
-
- if (verify_accountname(name) == 0) {
- return 102;
- }
-
- if (atoi(date) != 0 &&
- ((sscanf(date, "%d/%d/%d", &year, &month, &day) < 3 &&
- sscanf(date, "%d-%d-%d", &year, &month, &day) < 3 &&
- sscanf(date, "%d.%d.%d", &year, &month, &day) < 3) ||
- sscanf(time, "%d:%d:%d", &hour, &minute, &second) < 3)) {
- if (defaultlanguage == 'F') {
- printf("Entrez une date et une heure svp (format: aaaa/mm/jj hh:mm:ss).\n");
- printf("Vous pouvez aussi mettre 0 à la place si vous utilisez la commande 'banset'.\n");
- ladmin_log("Format incorrect pour la date/heure (commande'banset' ou 'ban')." RETCODE);
- } else {
- printf("Please input a date and a time (format: yyyy/mm/dd hh:mm:ss).\n");
- printf("You can imput 0 instead of if you use 'banset' command.\n");
- ladmin_log("Invalid format for the date/time ('banset' or 'ban' command)." RETCODE);
- }
- return 102;
- }
-
- if (atoi(date) == 0) {
- ban_until_time = 0;
- } else {
- if (year < 70) {
- year = year + 100;
- }
- if (year >= 1900) {
- year = year - 1900;
- }
- if (month < 1 || month > 12) {
- if (defaultlanguage == 'F') {
- printf("Entrez un mois correct svp (entre 1 et 12).\n");
- ladmin_log("Mois incorrect pour la date (command 'banset' ou 'ban')." RETCODE);
- } else {
- printf("Please give a correct value for the month (from 1 to 12).\n");
- ladmin_log("Invalid month for the date ('banset' or 'ban' command)." RETCODE);
- }
- return 102;
- }
- month = month - 1;
- if (day < 1 || day > 31) {
- if (defaultlanguage == 'F') {
- printf("Entrez un jour correct svp (entre 1 et 31).\n");
- ladmin_log("Jour incorrect pour la date (command 'banset' ou 'ban')." RETCODE);
- } else {
- printf("Please give a correct value for the day (from 1 to 31).\n");
- ladmin_log("Invalid day for the date ('banset' or 'ban' command)." RETCODE);
- }
- return 102;
- }
- if (((month == 3 || month == 5 || month == 8 || month == 10) && day > 30) ||
- (month == 1 && day > 29)) {
- if (defaultlanguage == 'F') {
- printf("Entrez un jour correct en fonction du mois (%d) svp.\n", month);
- ladmin_log("Jour incorrect pour ce mois correspondant (command 'banset' ou 'ban')." RETCODE);
- } else {
- printf("Please give a correct value for a day of this month (%d).\n", month);
- ladmin_log("Invalid day for this month ('banset' or 'ban' command)." RETCODE);
- }
- return 102;
- }
- if (hour < 0 || hour > 23) {
- if (defaultlanguage == 'F') {
- printf("Entrez une heure correcte svp (entre 0 et 23).\n");
- ladmin_log("Heure incorrecte pour l'heure (command 'banset' ou 'ban')." RETCODE);
- } else {
- printf("Please give a correct value for the hour (from 0 to 23).\n");
- ladmin_log("Invalid hour for the time ('banset' or 'ban' command)." RETCODE);
- }
- return 102;
- }
- if (minute < 0 || minute > 59) {
- if (defaultlanguage == 'F') {
- printf("Entrez des minutes correctes svp (entre 0 et 59).\n");
- ladmin_log("Minute incorrecte pour l'heure (command 'banset' ou 'ban')." RETCODE);
- } else {
- printf("Please give a correct value for the minutes (from 0 to 59).\n");
- ladmin_log("Invalid minute for the time ('banset' or 'ban' command)." RETCODE);
- }
- return 102;
- }
- if (second < 0 || second > 59) {
- if (defaultlanguage == 'F') {
- printf("Entrez des secondes correctes svp (entre 0 et 59).\n");
- ladmin_log("Seconde incorrecte pour l'heure (command 'banset' ou 'ban')." RETCODE);
- } else {
- printf("Please give a correct value for the seconds (from 0 to 59).\n");
- ladmin_log("Invalid second for the time ('banset' or 'ban' command)." RETCODE);
- }
- return 102;
- }
- tmtime->tm_year = year;
- tmtime->tm_mon = month;
- tmtime->tm_mday = day;
- tmtime->tm_hour = hour;
- tmtime->tm_min = minute;
- tmtime->tm_sec = second;
- tmtime->tm_isdst = -1; // -1: no winter/summer time modification
- ban_until_time = timegm(tmtime);
- if (ban_until_time == -1) {
- if (defaultlanguage == 'F') {
- printf("Date incorrecte.\n");
- printf("Entrez une date et une heure svp (format: aaaa/mm/jj hh:mm:ss).\n");
- printf("Vous pouvez aussi mettre 0 à la place si vous utilisez la commande 'banset'.\n");
- ladmin_log("Date incorrecte. (command 'banset' ou 'ban')." RETCODE);
- } else {
- printf("Invalid date.\n");
- printf("Please input a date and a time (format: yyyy/mm/dd hh:mm:ss).\n");
- printf("You can imput 0 instead of if you use 'banset' command.\n");
- ladmin_log("Invalid date. ('banset' or 'ban' command)." RETCODE);
- }
- return 102;
- }
- }
-
- if (defaultlanguage == 'F') {
- ladmin_log("Envoi d'un requête au serveur de logins pour fixer un ban." RETCODE);
- } else {
- ladmin_log("Request to login-server to set a ban." RETCODE);
- }
-
- WFIFOW(login_fd,0) = 0x794a;
- memcpy(WFIFOP(login_fd,2), name, 24);
- WFIFOL(login_fd,26) = (int)ban_until_time;
- WFIFOSET(login_fd,30);
- bytes_to_read = 1;
-
- return 0;
+int bansetaccountsub (char *name, char *date, char *time)
+{
+ int year, month, day, hour, minute, second;
+ time_t ban_until_time; // # of seconds 1/1/1970 (timestamp): ban time limit of the account (0 = no ban)
+ struct tm *tmtime;
+
+ year = month = day = hour = minute = second = 0;
+ ban_until_time = 0;
+ tmtime = localtime (&ban_until_time); // initialize
+
+ if (verify_accountname (name) == 0)
+ {
+ return 102;
+ }
+
+ if (atoi (date) != 0 &&
+ ((sscanf (date, "%d/%d/%d", &year, &month, &day) < 3 &&
+ sscanf (date, "%d-%d-%d", &year, &month, &day) < 3 &&
+ sscanf (date, "%d.%d.%d", &year, &month, &day) < 3) ||
+ sscanf (time, "%d:%d:%d", &hour, &minute, &second) < 3))
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Entrez une date et une heure svp (format: aaaa/mm/jj hh:mm:ss).\n");
+ printf
+ ("Vous pouvez aussi mettre 0 à la place si vous utilisez la commande 'banset'.\n");
+ ladmin_log
+ ("Format incorrect pour la date/heure (commande'banset' ou 'ban')."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please input a date and a time (format: yyyy/mm/dd hh:mm:ss).\n");
+ printf
+ ("You can imput 0 instead of if you use 'banset' command.\n");
+ ladmin_log
+ ("Invalid format for the date/time ('banset' or 'ban' command)."
+ RETCODE);
+ }
+ return 102;
+ }
+
+ if (atoi (date) == 0)
+ {
+ ban_until_time = 0;
+ }
+ else
+ {
+ if (year < 70)
+ {
+ year = year + 100;
+ }
+ if (year >= 1900)
+ {
+ year = year - 1900;
+ }
+ if (month < 1 || month > 12)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez un mois correct svp (entre 1 et 12).\n");
+ ladmin_log
+ ("Mois incorrect pour la date (command 'banset' ou 'ban')."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please give a correct value for the month (from 1 to 12).\n");
+ ladmin_log
+ ("Invalid month for the date ('banset' or 'ban' command)."
+ RETCODE);
+ }
+ return 102;
+ }
+ month = month - 1;
+ if (day < 1 || day > 31)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez un jour correct svp (entre 1 et 31).\n");
+ ladmin_log
+ ("Jour incorrect pour la date (command 'banset' ou 'ban')."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please give a correct value for the day (from 1 to 31).\n");
+ ladmin_log
+ ("Invalid day for the date ('banset' or 'ban' command)."
+ RETCODE);
+ }
+ return 102;
+ }
+ if (((month == 3 || month == 5 || month == 8 || month == 10)
+ && day > 30) || (month == 1 && day > 29))
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Entrez un jour correct en fonction du mois (%d) svp.\n",
+ month);
+ ladmin_log
+ ("Jour incorrect pour ce mois correspondant (command 'banset' ou 'ban')."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please give a correct value for a day of this month (%d).\n",
+ month);
+ ladmin_log
+ ("Invalid day for this month ('banset' or 'ban' command)."
+ RETCODE);
+ }
+ return 102;
+ }
+ if (hour < 0 || hour > 23)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez une heure correcte svp (entre 0 et 23).\n");
+ ladmin_log
+ ("Heure incorrecte pour l'heure (command 'banset' ou 'ban')."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please give a correct value for the hour (from 0 to 23).\n");
+ ladmin_log
+ ("Invalid hour for the time ('banset' or 'ban' command)."
+ RETCODE);
+ }
+ return 102;
+ }
+ if (minute < 0 || minute > 59)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Entrez des minutes correctes svp (entre 0 et 59).\n");
+ ladmin_log
+ ("Minute incorrecte pour l'heure (command 'banset' ou 'ban')."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please give a correct value for the minutes (from 0 to 59).\n");
+ ladmin_log
+ ("Invalid minute for the time ('banset' or 'ban' command)."
+ RETCODE);
+ }
+ return 102;
+ }
+ if (second < 0 || second > 59)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Entrez des secondes correctes svp (entre 0 et 59).\n");
+ ladmin_log
+ ("Seconde incorrecte pour l'heure (command 'banset' ou 'ban')."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please give a correct value for the seconds (from 0 to 59).\n");
+ ladmin_log
+ ("Invalid second for the time ('banset' or 'ban' command)."
+ RETCODE);
+ }
+ return 102;
+ }
+ tmtime->tm_year = year;
+ tmtime->tm_mon = month;
+ tmtime->tm_mday = day;
+ tmtime->tm_hour = hour;
+ tmtime->tm_min = minute;
+ tmtime->tm_sec = second;
+ tmtime->tm_isdst = -1; // -1: no winter/summer time modification
+ ban_until_time = timegm (tmtime);
+ if (ban_until_time == -1)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Date incorrecte.\n");
+ printf
+ ("Entrez une date et une heure svp (format: aaaa/mm/jj hh:mm:ss).\n");
+ printf
+ ("Vous pouvez aussi mettre 0 à la place si vous utilisez la commande 'banset'.\n");
+ ladmin_log ("Date incorrecte. (command 'banset' ou 'ban')."
+ RETCODE);
+ }
+ else
+ {
+ printf ("Invalid date.\n");
+ printf
+ ("Please input a date and a time (format: yyyy/mm/dd hh:mm:ss).\n");
+ printf
+ ("You can imput 0 instead of if you use 'banset' command.\n");
+ ladmin_log ("Invalid date. ('banset' or 'ban' command)."
+ RETCODE);
+ }
+ return 102;
+ }
+ }
+
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log
+ ("Envoi d'un requête au serveur de logins pour fixer un ban."
+ RETCODE);
+ }
+ else
+ {
+ ladmin_log ("Request to login-server to set a ban." RETCODE);
+ }
+
+ WFIFOW (login_fd, 0) = 0x794a;
+ memcpy (WFIFOP (login_fd, 2), name, 24);
+ WFIFOL (login_fd, 26) = (int) ban_until_time;
+ WFIFOSET (login_fd, 30);
+ bytes_to_read = 1;
+
+ return 0;
}
//---------------------------------------------------------------------
// Sub-function: Set the final date of a banishment of an account (ban)
//---------------------------------------------------------------------
-int banaccount(char* param) {
- char name[1023], date[1023], time[1023];
-
- memset(name, '\0', sizeof(name));
- memset(date, '\0', sizeof(date));
- memset(time, '\0', sizeof(time));
-
- if (sscanf(param, "%s %s \"%[^\"]\"", date, time, name) < 3 &&
- sscanf(param, "%s %s '%[^']'", date, time, name) < 3 &&
- sscanf(param, "%s %s %[^\r\n]", date, time, name) < 3) {
- if (defaultlanguage == 'F') {
- printf("Entrez un nom de compte, une date et une heure svp.\n");
- printf("<exemple>: banset <nom_du_compte> aaaa/mm/jj [hh:mm:ss]\n");
- printf(" banset <nom_du_compte> 0 (0 = dé-bani)\n");
- printf(" ban/banish aaaa/mm/jj hh:mm:ss <nom du compte>\n");
- printf(" unban/unbanish <nom du compte>\n");
- printf(" Heure par défaut [hh:mm:ss]: 23:59:59.\n");
- ladmin_log("Nombre incorrect de paramètres pour fixer un ban (commande 'banset' ou 'ban')." RETCODE);
- } else {
- printf("Please input an account name, a date and a hour.\n");
- printf("<example>: banset <account_name> yyyy/mm/dd [hh:mm:ss]\n");
- printf(" banset <account_name> 0 (0 = un-banished)\n");
- printf(" ban/banish yyyy/mm/dd hh:mm:ss <account name>\n");
- printf(" unban/unbanish <account name>\n");
- printf(" Default time [hh:mm:ss]: 23:59:59.\n");
- ladmin_log("Incomplete parameters to set a ban ('banset' or 'ban' command)." RETCODE);
- }
- return 136;
- }
+int banaccount (char *param)
+{
+ char name[1023], date[1023], time[1023];
+
+ memset (name, '\0', sizeof (name));
+ memset (date, '\0', sizeof (date));
+ memset (time, '\0', sizeof (time));
+
+ if (sscanf (param, "%s %s \"%[^\"]\"", date, time, name) < 3 &&
+ sscanf (param, "%s %s '%[^']'", date, time, name) < 3 &&
+ sscanf (param, "%s %s %[^\r\n]", date, time, name) < 3)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez un nom de compte, une date et une heure svp.\n");
+ printf
+ ("<exemple>: banset <nom_du_compte> aaaa/mm/jj [hh:mm:ss]\n");
+ printf (" banset <nom_du_compte> 0 (0 = dé-bani)\n");
+ printf
+ (" ban/banish aaaa/mm/jj hh:mm:ss <nom du compte>\n");
+ printf (" unban/unbanish <nom du compte>\n");
+ printf (" Heure par défaut [hh:mm:ss]: 23:59:59.\n");
+ ladmin_log
+ ("Nombre incorrect de paramètres pour fixer un ban (commande 'banset' ou 'ban')."
+ RETCODE);
+ }
+ else
+ {
+ printf ("Please input an account name, a date and a hour.\n");
+ printf
+ ("<example>: banset <account_name> yyyy/mm/dd [hh:mm:ss]\n");
+ printf
+ (" banset <account_name> 0 (0 = un-banished)\n");
+ printf
+ (" ban/banish yyyy/mm/dd hh:mm:ss <account name>\n");
+ printf (" unban/unbanish <account name>\n");
+ printf (" Default time [hh:mm:ss]: 23:59:59.\n");
+ ladmin_log
+ ("Incomplete parameters to set a ban ('banset' or 'ban' command)."
+ RETCODE);
+ }
+ return 136;
+ }
- return bansetaccountsub(name, date, time);
+ return bansetaccountsub (name, date, time);
}
//------------------------------------------------------------------------
// Sub-function: Set the final date of a banishment of an account (banset)
//------------------------------------------------------------------------
-int bansetaccount(char* param) {
- char name[1023], date[1023], time[1023];
-
- memset(name, '\0', sizeof(name));
- memset(date, '\0', sizeof(date));
- memset(time, '\0', sizeof(time));
-
- if (sscanf(param, "\"%[^\"]\" %s %[^\r\n]", name, date, time) < 2 && // if date = 0, time can be void
- sscanf(param, "'%[^']' %s %[^\r\n]", name, date, time) < 2 && // if date = 0, time can be void
- sscanf(param, "%s %s %[^\r\n]", name, date, time) < 2) { // if date = 0, time can be void
- if (defaultlanguage == 'F') {
- printf("Entrez un nom de compte, une date et une heure svp.\n");
- printf("<exemple>: banset <nom_du_compte> aaaa/mm/jj [hh:mm:ss]\n");
- printf(" banset <nom_du_compte> 0 (0 = dé-bani)\n");
- printf(" ban/banish aaaa/mm/jj hh:mm:ss <nom du compte>\n");
- printf(" unban/unbanish <nom du compte>\n");
- printf(" Heure par défaut [hh:mm:ss]: 23:59:59.\n");
- ladmin_log("Nombre incorrect de paramètres pour fixer un ban (commande 'banset' ou 'ban')." RETCODE);
- } else {
- printf("Please input an account name, a date and a hour.\n");
- printf("<example>: banset <account_name> yyyy/mm/dd [hh:mm:ss]\n");
- printf(" banset <account_name> 0 (0 = un-banished)\n");
- printf(" ban/banish yyyy/mm/dd hh:mm:ss <account name>\n");
- printf(" unban/unbanish <account name>\n");
- printf(" Default time [hh:mm:ss]: 23:59:59.\n");
- ladmin_log("Incomplete parameters to set a ban ('banset' or 'ban' command)." RETCODE);
- }
- return 136;
- }
+int bansetaccount (char *param)
+{
+ char name[1023], date[1023], time[1023];
+
+ memset (name, '\0', sizeof (name));
+ memset (date, '\0', sizeof (date));
+ memset (time, '\0', sizeof (time));
+
+ if (sscanf (param, "\"%[^\"]\" %s %[^\r\n]", name, date, time) < 2 && // if date = 0, time can be void
+ sscanf (param, "'%[^']' %s %[^\r\n]", name, date, time) < 2 && // if date = 0, time can be void
+ sscanf (param, "%s %s %[^\r\n]", name, date, time) < 2)
+ { // if date = 0, time can be void
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez un nom de compte, une date et une heure svp.\n");
+ printf
+ ("<exemple>: banset <nom_du_compte> aaaa/mm/jj [hh:mm:ss]\n");
+ printf (" banset <nom_du_compte> 0 (0 = dé-bani)\n");
+ printf
+ (" ban/banish aaaa/mm/jj hh:mm:ss <nom du compte>\n");
+ printf (" unban/unbanish <nom du compte>\n");
+ printf (" Heure par défaut [hh:mm:ss]: 23:59:59.\n");
+ ladmin_log
+ ("Nombre incorrect de paramètres pour fixer un ban (commande 'banset' ou 'ban')."
+ RETCODE);
+ }
+ else
+ {
+ printf ("Please input an account name, a date and a hour.\n");
+ printf
+ ("<example>: banset <account_name> yyyy/mm/dd [hh:mm:ss]\n");
+ printf
+ (" banset <account_name> 0 (0 = un-banished)\n");
+ printf
+ (" ban/banish yyyy/mm/dd hh:mm:ss <account name>\n");
+ printf (" unban/unbanish <account name>\n");
+ printf (" Default time [hh:mm:ss]: 23:59:59.\n");
+ ladmin_log
+ ("Incomplete parameters to set a ban ('banset' or 'ban' command)."
+ RETCODE);
+ }
+ return 136;
+ }
- if (time[0] == '\0')
- strcpy(time, "23:59:59");
+ if (time[0] == '\0')
+ strcpy (time, "23:59:59");
- return bansetaccountsub(name, date, time);
+ return bansetaccountsub (name, date, time);
}
//-------------------------------------------------
// Sub-function: unbanishment of an account (unban)
//-------------------------------------------------
-int unbanaccount(char* param) {
- char name[1023];
-
- memset(name, '\0', sizeof(name));
-
- if (strlen(param) == 0 ||
- (sscanf(param, "\"%[^\"]\"", name) < 1 &&
- sscanf(param, "'%[^']'", name) < 1 &&
- sscanf(param, "%[^\r\n]", name) < 1) ||
- strlen(name) == 0) {
- if (defaultlanguage == 'F') {
- printf("Entrez un nom de compte svp.\n");
- printf("<exemple>: banset <nom_du_compte> aaaa/mm/jj [hh:mm:ss]\n");
- printf(" banset <nom_du_compte> 0 (0 = dé-bani)\n");
- printf(" ban/banish aaaa/mm/jj hh:mm:ss <nom du compte>\n");
- printf(" unban/unbanish <nom du compte>\n");
- printf(" Heure par défaut [hh:mm:ss]: 23:59:59.\n");
- ladmin_log("Nombre incorrect de paramètres pour fixer un ban (commande 'unban')." RETCODE);
- } else {
- printf("Please input an account name.\n");
- printf("<example>: banset <account_name> yyyy/mm/dd [hh:mm:ss]\n");
- printf(" banset <account_name> 0 (0 = un-banished)\n");
- printf(" ban/banish yyyy/mm/dd hh:mm:ss <account name>\n");
- printf(" unban/unbanish <account name>\n");
- printf(" Default time [hh:mm:ss]: 23:59:59.\n");
- ladmin_log("Incomplete parameters to set a ban ('unban' command)." RETCODE);
- }
- return 136;
- }
+int unbanaccount (char *param)
+{
+ char name[1023];
+
+ memset (name, '\0', sizeof (name));
+
+ if (strlen (param) == 0 ||
+ (sscanf (param, "\"%[^\"]\"", name) < 1 &&
+ sscanf (param, "'%[^']'", name) < 1 &&
+ sscanf (param, "%[^\r\n]", name) < 1) || strlen (name) == 0)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez un nom de compte svp.\n");
+ printf
+ ("<exemple>: banset <nom_du_compte> aaaa/mm/jj [hh:mm:ss]\n");
+ printf (" banset <nom_du_compte> 0 (0 = dé-bani)\n");
+ printf
+ (" ban/banish aaaa/mm/jj hh:mm:ss <nom du compte>\n");
+ printf (" unban/unbanish <nom du compte>\n");
+ printf (" Heure par défaut [hh:mm:ss]: 23:59:59.\n");
+ ladmin_log
+ ("Nombre incorrect de paramètres pour fixer un ban (commande 'unban')."
+ RETCODE);
+ }
+ else
+ {
+ printf ("Please input an account name.\n");
+ printf
+ ("<example>: banset <account_name> yyyy/mm/dd [hh:mm:ss]\n");
+ printf
+ (" banset <account_name> 0 (0 = un-banished)\n");
+ printf
+ (" ban/banish yyyy/mm/dd hh:mm:ss <account name>\n");
+ printf (" unban/unbanish <account name>\n");
+ printf (" Default time [hh:mm:ss]: 23:59:59.\n");
+ ladmin_log
+ ("Incomplete parameters to set a ban ('unban' command)."
+ RETCODE);
+ }
+ return 136;
+ }
- return bansetaccountsub(name, "0", "");
+ return bansetaccountsub (name, "0", "");
}
//---------------------------------------------------------
// Sub-function: Asking to check the validity of a password
// (Note: never send back a password with login-server!! security of passwords)
//---------------------------------------------------------
-int checkaccount(char* param) {
- char name[1023], password[1023];
-
- memset(name, '\0', sizeof(name));
- memset(password, '\0', sizeof(password));
-
- if (sscanf(param, "\"%[^\"]\" %[^\r\n]", name, password) < 1 && // password can be void
- sscanf(param, "'%[^']' %[^\r\n]", name, password) < 1 && // password can be void
- sscanf(param, "%s %[^\r\n]", name, password) < 1) { // password can be void
- if (defaultlanguage == 'F') {
- printf("Entrez un nom de compte svp.\n");
- printf("<exemple> check testname motdepasse\n");
- ladmin_log("Nombre incorrect de paramètres pour tester le mot d'un passe d'un compte (commande 'check')." RETCODE);
- } else {
- printf("Please input an account name.\n");
- printf("<example> check testname password\n");
- ladmin_log("Incomplete parameters to check the password of an account ('check' command)." RETCODE);
- }
- return 136;
- }
-
- if (verify_accountname(name) == 0) {
- return 102;
- }
-
- if (strlen(password) == 0) {
- if (typepasswd(password) == 0)
- return 134;
- }
- if (verify_password(password) == 0)
- return 131;
-
- if (defaultlanguage == 'F') {
- ladmin_log("Envoi d'un requête au serveur de logins pour test un mot de passe." RETCODE);
- } else {
- ladmin_log("Request to login-server to check a password." RETCODE);
- }
-
- WFIFOW(login_fd,0) = 0x793a;
- memcpy(WFIFOP(login_fd,2), name, 24);
- memcpy(WFIFOP(login_fd,26), password, 24);
- WFIFOSET(login_fd,50);
- bytes_to_read = 1;
-
- return 0;
+int checkaccount (char *param)
+{
+ char name[1023], password[1023];
+
+ memset (name, '\0', sizeof (name));
+ memset (password, '\0', sizeof (password));
+
+ if (sscanf (param, "\"%[^\"]\" %[^\r\n]", name, password) < 1 && // password can be void
+ sscanf (param, "'%[^']' %[^\r\n]", name, password) < 1 && // password can be void
+ sscanf (param, "%s %[^\r\n]", name, password) < 1)
+ { // password can be void
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez un nom de compte svp.\n");
+ printf ("<exemple> check testname motdepasse\n");
+ ladmin_log
+ ("Nombre incorrect de paramètres pour tester le mot d'un passe d'un compte (commande 'check')."
+ RETCODE);
+ }
+ else
+ {
+ printf ("Please input an account name.\n");
+ printf ("<example> check testname password\n");
+ ladmin_log
+ ("Incomplete parameters to check the password of an account ('check' command)."
+ RETCODE);
+ }
+ return 136;
+ }
+
+ if (verify_accountname (name) == 0)
+ {
+ return 102;
+ }
+
+ if (strlen (password) == 0)
+ {
+ if (typepasswd (password) == 0)
+ return 134;
+ }
+ if (verify_password (password) == 0)
+ return 131;
+
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log
+ ("Envoi d'un requête au serveur de logins pour test un mot de passe."
+ RETCODE);
+ }
+ else
+ {
+ ladmin_log ("Request to login-server to check a password." RETCODE);
+ }
+
+ WFIFOW (login_fd, 0) = 0x793a;
+ memcpy (WFIFOP (login_fd, 2), name, 24);
+ memcpy (WFIFOP (login_fd, 26), password, 24);
+ WFIFOSET (login_fd, 50);
+ bytes_to_read = 1;
+
+ return 0;
}
//------------------------------------------------
// Sub-function: Asking for deletion of an account
//------------------------------------------------
-int delaccount(char* param) {
- char name[1023];
- char letter;
- char confirm[1023];
- int i;
-
- memset(name, '\0', sizeof(name));
-
- if (strlen(param) == 0 ||
- (sscanf(param, "\"%[^\"]\"", name) < 1 &&
- sscanf(param, "'%[^']'", name) < 1 &&
- sscanf(param, "%[^\r\n]", name) < 1) ||
- strlen(name) == 0) {
- if (defaultlanguage == 'F') {
- printf("Entrez un nom de compte svp.\n");
- printf("<exemple> del nomtestasupprimer\n");
- ladmin_log("Aucun nom donné pour supprimer un compte (commande 'delete')." RETCODE);
- } else {
- printf("Please input an account name.\n");
- printf("<example> del testnametodelete\n");
- ladmin_log("No name given to delete an account ('delete' command)." RETCODE);
- }
- return 136;
- }
-
- if (verify_accountname(name) == 0) {
- return 102;
- }
-
- memset(confirm, '\0', sizeof(confirm));
- while ((confirm[0] != 'o' || defaultlanguage != 'F') && confirm[0] != 'n' && (confirm[0] != 'y' || defaultlanguage == 'F')) {
- if (defaultlanguage == 'F')
- printf("\033[1;36m ** Etes-vous vraiment sûr de vouloir SUPPRIMER le compte [$userid]? (o/n) > \033[0m");
- else
- printf("\033[1;36m ** Are you really sure to DELETE account [$userid]? (y/n) > \033[0m");
- fflush(stdout);
- memset(confirm, '\0', sizeof(confirm));
- i = 0;
- while ((letter = getchar()) != '\n')
- confirm[i++] = letter;
- }
-
- if (confirm[0] == 'n') {
- if (defaultlanguage == 'F') {
- printf("Suppression annulée.\n");
- ladmin_log("Suppression annulée par l'utilisateur (commande 'delete')." RETCODE);
- } else {
- printf("Deletion canceled.\n");
- ladmin_log("Deletion canceled by user ('delete' command)." RETCODE);
- }
- return 121;
- }
-
- if (defaultlanguage == 'F') {
- ladmin_log("Envoi d'un requête au serveur de logins pour détruire un compte." RETCODE);
- } else {
- ladmin_log("Request to login-server to delete an acount." RETCODE);
- }
-
- WFIFOW(login_fd,0) = 0x7932;
- memcpy(WFIFOP(login_fd,2), name, 24);
- WFIFOSET(login_fd,26);
- bytes_to_read = 1;
-
- return 0;
+int delaccount (char *param)
+{
+ char name[1023];
+ char letter;
+ char confirm[1023];
+ int i;
+
+ memset (name, '\0', sizeof (name));
+
+ if (strlen (param) == 0 ||
+ (sscanf (param, "\"%[^\"]\"", name) < 1 &&
+ sscanf (param, "'%[^']'", name) < 1 &&
+ sscanf (param, "%[^\r\n]", name) < 1) || strlen (name) == 0)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez un nom de compte svp.\n");
+ printf ("<exemple> del nomtestasupprimer\n");
+ ladmin_log
+ ("Aucun nom donné pour supprimer un compte (commande 'delete')."
+ RETCODE);
+ }
+ else
+ {
+ printf ("Please input an account name.\n");
+ printf ("<example> del testnametodelete\n");
+ ladmin_log
+ ("No name given to delete an account ('delete' command)."
+ RETCODE);
+ }
+ return 136;
+ }
+
+ if (verify_accountname (name) == 0)
+ {
+ return 102;
+ }
+
+ memset (confirm, '\0', sizeof (confirm));
+ while ((confirm[0] != 'o' || defaultlanguage != 'F') && confirm[0] != 'n'
+ && (confirm[0] != 'y' || defaultlanguage == 'F'))
+ {
+ if (defaultlanguage == 'F')
+ printf
+ ("\033[1;36m ** Etes-vous vraiment sûr de vouloir SUPPRIMER le compte [$userid]? (o/n) > \033[0m");
+ else
+ printf
+ ("\033[1;36m ** Are you really sure to DELETE account [$userid]? (y/n) > \033[0m");
+ fflush (stdout);
+ memset (confirm, '\0', sizeof (confirm));
+ i = 0;
+ while ((letter = getchar ()) != '\n')
+ confirm[i++] = letter;
+ }
+
+ if (confirm[0] == 'n')
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Suppression annulée.\n");
+ ladmin_log
+ ("Suppression annulée par l'utilisateur (commande 'delete')."
+ RETCODE);
+ }
+ else
+ {
+ printf ("Deletion canceled.\n");
+ ladmin_log ("Deletion canceled by user ('delete' command)."
+ RETCODE);
+ }
+ return 121;
+ }
+
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log
+ ("Envoi d'un requête au serveur de logins pour détruire un compte."
+ RETCODE);
+ }
+ else
+ {
+ ladmin_log ("Request to login-server to delete an acount." RETCODE);
+ }
+
+ WFIFOW (login_fd, 0) = 0x7932;
+ memcpy (WFIFOP (login_fd, 2), name, 24);
+ WFIFOSET (login_fd, 26);
+ bytes_to_read = 1;
+
+ return 0;
}
//----------------------------------------------------------
// Sub-function: Asking to modification of an account e-mail
//----------------------------------------------------------
-int changeemail(char* param) {
- char name[1023], email[1023];
-
- memset(name, '\0', sizeof(name));
- memset(email, '\0', sizeof(email));
-
- if (sscanf(param, "\"%[^\"]\" %[^\r\n]", name, email) < 2 &&
- sscanf(param, "'%[^']' %[^\r\n]", name, email) < 2 &&
- sscanf(param, "%s %[^\r\n]", name, email) < 2) {
- if (defaultlanguage == 'F') {
- printf("Entrez un nom de compte et une email svp.\n");
- printf("<exemple> email testname nouveauemail\n");
- ladmin_log("Nombre incorrect de paramètres pour changer l'email d'un compte (commande 'email')." RETCODE);
- } else {
- printf("Please input an account name and an email.\n");
- printf("<example> email testname newemail\n");
- ladmin_log("Incomplete parameters to change the email of an account ('email' command)." RETCODE);
- }
- return 136;
- }
-
- if (verify_accountname(name) == 0) {
- return 102;
- }
-
- if (strlen(email) < 3) {
- if (defaultlanguage == 'F') {
- printf("Email trop courte [%s]. Entrez une e-mail valide svp.\n", email);
- ladmin_log("Email trop courte [%s]. Entrez une e-mail valide svp." RETCODE, email);
- } else {
- printf("Email is too short [%s]. Please input a valid e-mail.\n", email);
- ladmin_log("Email is too short [%s]. Please input a valid e-mail." RETCODE, email);
- }
- return 109;
- }
- if (strlen(email) > 39) {
- if (defaultlanguage == 'F') {
- printf("Email trop longue [%s]. Entrez une e-mail de 39 caractères maximum svp.\n", email);
- ladmin_log("Email trop longue [%s]. Entrez une e-mail de 39 caractères maximum svp." RETCODE, email);
- } else {
- printf("Email is too long [%s]. Please input an e-mail with 39 bytes at the most.\n", email);
- ladmin_log("Email is too long [%s]. Please input an e-mail with 39 bytes at the most." RETCODE, email);
- }
- return 109;
- }
- if (e_mail_check(email) == 0) {
- if (defaultlanguage == 'F') {
- printf("Email incorrecte [%s]. Entrez une e-mail valide svp.\n", email);
- ladmin_log("Email incorrecte [%s]. Entrez une e-mail valide svp." RETCODE, email);
- } else {
- printf("Invalid email [%s]. Please input a valid e-mail.\n", email);
- ladmin_log("Invalid email [%s]. Please input a valid e-mail." RETCODE, email);
- }
- return 109;
- }
-
- if (defaultlanguage == 'F') {
- ladmin_log("Envoi d'un requête au serveur de logins pour changer une email." RETCODE);
- } else {
- ladmin_log("Request to login-server to change an email." RETCODE);
- }
-
- WFIFOW(login_fd,0) = 0x7940;
- memcpy(WFIFOP(login_fd,2), name, 24);
- memcpy(WFIFOP(login_fd,26), email, 40);
- WFIFOSET(login_fd,66);
- bytes_to_read = 1;
-
- return 0;
+int changeemail (char *param)
+{
+ char name[1023], email[1023];
+
+ memset (name, '\0', sizeof (name));
+ memset (email, '\0', sizeof (email));
+
+ if (sscanf (param, "\"%[^\"]\" %[^\r\n]", name, email) < 2 &&
+ sscanf (param, "'%[^']' %[^\r\n]", name, email) < 2 &&
+ sscanf (param, "%s %[^\r\n]", name, email) < 2)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez un nom de compte et une email svp.\n");
+ printf ("<exemple> email testname nouveauemail\n");
+ ladmin_log
+ ("Nombre incorrect de paramètres pour changer l'email d'un compte (commande 'email')."
+ RETCODE);
+ }
+ else
+ {
+ printf ("Please input an account name and an email.\n");
+ printf ("<example> email testname newemail\n");
+ ladmin_log
+ ("Incomplete parameters to change the email of an account ('email' command)."
+ RETCODE);
+ }
+ return 136;
+ }
+
+ if (verify_accountname (name) == 0)
+ {
+ return 102;
+ }
+
+ if (strlen (email) < 3)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Email trop courte [%s]. Entrez une e-mail valide svp.\n",
+ email);
+ ladmin_log
+ ("Email trop courte [%s]. Entrez une e-mail valide svp."
+ RETCODE, email);
+ }
+ else
+ {
+ printf ("Email is too short [%s]. Please input a valid e-mail.\n",
+ email);
+ ladmin_log
+ ("Email is too short [%s]. Please input a valid e-mail."
+ RETCODE, email);
+ }
+ return 109;
+ }
+ if (strlen (email) > 39)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Email trop longue [%s]. Entrez une e-mail de 39 caractères maximum svp.\n",
+ email);
+ ladmin_log
+ ("Email trop longue [%s]. Entrez une e-mail de 39 caractères maximum svp."
+ RETCODE, email);
+ }
+ else
+ {
+ printf
+ ("Email is too long [%s]. Please input an e-mail with 39 bytes at the most.\n",
+ email);
+ ladmin_log
+ ("Email is too long [%s]. Please input an e-mail with 39 bytes at the most."
+ RETCODE, email);
+ }
+ return 109;
+ }
+ if (e_mail_check (email) == 0)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Email incorrecte [%s]. Entrez une e-mail valide svp.\n",
+ email);
+ ladmin_log ("Email incorrecte [%s]. Entrez une e-mail valide svp."
+ RETCODE, email);
+ }
+ else
+ {
+ printf ("Invalid email [%s]. Please input a valid e-mail.\n",
+ email);
+ ladmin_log ("Invalid email [%s]. Please input a valid e-mail."
+ RETCODE, email);
+ }
+ return 109;
+ }
+
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log
+ ("Envoi d'un requête au serveur de logins pour changer une email."
+ RETCODE);
+ }
+ else
+ {
+ ladmin_log ("Request to login-server to change an email." RETCODE);
+ }
+
+ WFIFOW (login_fd, 0) = 0x7940;
+ memcpy (WFIFOP (login_fd, 2), name, 24);
+ memcpy (WFIFOP (login_fd, 26), email, 40);
+ WFIFOSET (login_fd, 66);
+ bytes_to_read = 1;
+
+ return 0;
}
//-----------------------------------------------------
// Sub-function: Asking of the number of online players
//-----------------------------------------------------
-int getlogincount() {
- if (defaultlanguage == 'F') {
- ladmin_log("Envoi d'un requête au serveur de logins pour obtenir le nombre de joueurs en jeu." RETCODE);
- } else {
- ladmin_log("Request to login-server to obtain the # of online players." RETCODE);
- }
-
- WFIFOW(login_fd,0) = 0x7938;
- WFIFOSET(login_fd,2);
- bytes_to_read = 1;
-
- return 0;
+int getlogincount ()
+{
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log
+ ("Envoi d'un requête au serveur de logins pour obtenir le nombre de joueurs en jeu."
+ RETCODE);
+ }
+ else
+ {
+ ladmin_log
+ ("Request to login-server to obtain the # of online players."
+ RETCODE);
+ }
+
+ WFIFOW (login_fd, 0) = 0x7938;
+ WFIFOSET (login_fd, 2);
+ bytes_to_read = 1;
+
+ return 0;
}
//----------------------------------------------------------
// Sub-function: Asking to modify the GM level of an account
//----------------------------------------------------------
-int changegmlevel(char* param) {
- char name[1023];
- int GM_level;
-
- memset(name, '\0', sizeof(name));
- GM_level = 0;
-
- if (sscanf(param, "\"%[^\"]\" %d", name, &GM_level) < 1 &&
- sscanf(param, "'%[^']' %d", name, &GM_level) < 1 &&
- sscanf(param, "%s %d", name, &GM_level) < 1) {
- if (defaultlanguage == 'F') {
- printf("Entrez un nom de compte et un niveau de GM svp.\n");
- printf("<exemple> gm nomtest 80\n");
- ladmin_log("Nombre incorrect de paramètres pour changer le Niveau de GM d'un compte (commande 'gm')." RETCODE);
- } else {
- printf("Please input an account name and a GM level.\n");
- printf("<example> gm testname 80\n");
- ladmin_log("Incomplete parameters to change the GM level of an account ('gm' command)." RETCODE);
- }
- return 136;
- }
-
- if (verify_accountname(name) == 0) {
- return 102;
- }
-
- if (GM_level < 0 || GM_level > 99) {
- if (defaultlanguage == 'F') {
- printf("Niveau de GM incorrect [%d]. Entrez une valeur de 0 à 99 svp.\n", GM_level);
- ladmin_log("Niveau de GM incorrect [%d]. La valeur peut être de 0 à 99." RETCODE, GM_level);
- } else {
- printf("Illegal GM level [%d]. Please input a value from 0 to 99.\n", GM_level);
- ladmin_log("Illegal GM level [%d]. The value can be from 0 to 99." RETCODE, GM_level);
- }
- return 103;
- }
-
- if (defaultlanguage == 'F') {
- ladmin_log("Envoi d'un requête au serveur de logins pour changer un niveau de GM." RETCODE);
- } else {
- ladmin_log("Request to login-server to change a GM level." RETCODE);
- }
-
- WFIFOW(login_fd,0) = 0x793e;
- memcpy(WFIFOP(login_fd,2), name, 24);
- WFIFOB(login_fd,26) = GM_level;
- WFIFOSET(login_fd,27);
- bytes_to_read = 1;
-
- return 0;
+int changegmlevel (char *param)
+{
+ char name[1023];
+ int GM_level;
+
+ memset (name, '\0', sizeof (name));
+ GM_level = 0;
+
+ if (sscanf (param, "\"%[^\"]\" %d", name, &GM_level) < 1 &&
+ sscanf (param, "'%[^']' %d", name, &GM_level) < 1 &&
+ sscanf (param, "%s %d", name, &GM_level) < 1)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez un nom de compte et un niveau de GM svp.\n");
+ printf ("<exemple> gm nomtest 80\n");
+ ladmin_log
+ ("Nombre incorrect de paramètres pour changer le Niveau de GM d'un compte (commande 'gm')."
+ RETCODE);
+ }
+ else
+ {
+ printf ("Please input an account name and a GM level.\n");
+ printf ("<example> gm testname 80\n");
+ ladmin_log
+ ("Incomplete parameters to change the GM level of an account ('gm' command)."
+ RETCODE);
+ }
+ return 136;
+ }
+
+ if (verify_accountname (name) == 0)
+ {
+ return 102;
+ }
+
+ if (GM_level < 0 || GM_level > 99)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Niveau de GM incorrect [%d]. Entrez une valeur de 0 à 99 svp.\n",
+ GM_level);
+ ladmin_log
+ ("Niveau de GM incorrect [%d]. La valeur peut être de 0 à 99."
+ RETCODE, GM_level);
+ }
+ else
+ {
+ printf
+ ("Illegal GM level [%d]. Please input a value from 0 to 99.\n",
+ GM_level);
+ ladmin_log
+ ("Illegal GM level [%d]. The value can be from 0 to 99."
+ RETCODE, GM_level);
+ }
+ return 103;
+ }
+
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log
+ ("Envoi d'un requête au serveur de logins pour changer un niveau de GM."
+ RETCODE);
+ }
+ else
+ {
+ ladmin_log ("Request to login-server to change a GM level." RETCODE);
+ }
+
+ WFIFOW (login_fd, 0) = 0x793e;
+ memcpy (WFIFOP (login_fd, 2), name, 24);
+ WFIFOB (login_fd, 26) = GM_level;
+ WFIFOSET (login_fd, 27);
+ bytes_to_read = 1;
+
+ return 0;
}
//---------------------------------------------
// Sub-function: Asking to obtain an account id
//---------------------------------------------
-int idaccount(char* param) {
- char name[1023];
-
- memset(name, '\0', sizeof(name));
-
- if (strlen(param) == 0 ||
- (sscanf(param, "\"%[^\"]\"", name) < 1 &&
- sscanf(param, "'%[^']'", name) < 1 &&
- sscanf(param, "%[^\r\n]", name) < 1) ||
- strlen(name) == 0) {
- if (defaultlanguage == 'F') {
- printf("Entrez un nom de compte svp.\n");
- printf("<exemple> id nomtest\n");
- ladmin_log("Aucun nom donné pour rechecher l'id d'un compte (commande 'id')." RETCODE);
- } else {
- printf("Please input an account name.\n");
- printf("<example> id testname\n");
- ladmin_log("No name given to search an account id ('id' command)." RETCODE);
- }
- return 136;
- }
-
- if (verify_accountname(name) == 0) {
- return 102;
- }
-
- if (defaultlanguage == 'F') {
- ladmin_log("Envoi d'un requête au serveur de logins pour connaître l'id d'un compte." RETCODE);
- } else {
- ladmin_log("Request to login-server to know an account id." RETCODE);
- }
-
- WFIFOW(login_fd,0) = 0x7944;
- memcpy(WFIFOP(login_fd,2), name, 24);
- WFIFOSET(login_fd,26);
- bytes_to_read = 1;
-
- return 0;
+int idaccount (char *param)
+{
+ char name[1023];
+
+ memset (name, '\0', sizeof (name));
+
+ if (strlen (param) == 0 ||
+ (sscanf (param, "\"%[^\"]\"", name) < 1 &&
+ sscanf (param, "'%[^']'", name) < 1 &&
+ sscanf (param, "%[^\r\n]", name) < 1) || strlen (name) == 0)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez un nom de compte svp.\n");
+ printf ("<exemple> id nomtest\n");
+ ladmin_log
+ ("Aucun nom donné pour rechecher l'id d'un compte (commande 'id')."
+ RETCODE);
+ }
+ else
+ {
+ printf ("Please input an account name.\n");
+ printf ("<example> id testname\n");
+ ladmin_log
+ ("No name given to search an account id ('id' command)."
+ RETCODE);
+ }
+ return 136;
+ }
+
+ if (verify_accountname (name) == 0)
+ {
+ return 102;
+ }
+
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log
+ ("Envoi d'un requête au serveur de logins pour connaître l'id d'un compte."
+ RETCODE);
+ }
+ else
+ {
+ ladmin_log ("Request to login-server to know an account id." RETCODE);
+ }
+
+ WFIFOW (login_fd, 0) = 0x7944;
+ memcpy (WFIFOP (login_fd, 2), name, 24);
+ WFIFOSET (login_fd, 26);
+ bytes_to_read = 1;
+
+ return 0;
}
//----------------------------------------------------------------------------
// Sub-function: Asking to displaying information about an account (by its id)
//----------------------------------------------------------------------------
-int infoaccount(int account_id) {
- if (account_id < 0) {
- if (defaultlanguage == 'F') {
- printf("Entrez un id ayant une valeur positive svp.\n");
- ladmin_log("Une valeur négative a été donné pour trouver le compte." RETCODE);
- } else {
- printf("Please input a positive value for the id.\n");
- ladmin_log("Negative value was given to found the account." RETCODE);
- }
- return 136;
- }
-
- if (defaultlanguage == 'F') {
- ladmin_log("Envoi d'un requête au serveur de logins pour obtenir le information d'un compte (par l'id)." RETCODE);
- } else {
- ladmin_log("Request to login-server to obtain information about an account (by its id)." RETCODE);
- }
-
- WFIFOW(login_fd,0) = 0x7954;
- WFIFOL(login_fd,2) = account_id;
- WFIFOSET(login_fd,6);
- bytes_to_read = 1;
-
- return 0;
+int infoaccount (int account_id)
+{
+ if (account_id < 0)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez un id ayant une valeur positive svp.\n");
+ ladmin_log
+ ("Une valeur négative a été donné pour trouver le compte."
+ RETCODE);
+ }
+ else
+ {
+ printf ("Please input a positive value for the id.\n");
+ ladmin_log ("Negative value was given to found the account."
+ RETCODE);
+ }
+ return 136;
+ }
+
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log
+ ("Envoi d'un requête au serveur de logins pour obtenir le information d'un compte (par l'id)."
+ RETCODE);
+ }
+ else
+ {
+ ladmin_log
+ ("Request to login-server to obtain information about an account (by its id)."
+ RETCODE);
+ }
+
+ WFIFOW (login_fd, 0) = 0x7954;
+ WFIFOL (login_fd, 2) = account_id;
+ WFIFOSET (login_fd, 6);
+ bytes_to_read = 1;
+
+ return 0;
}
//---------------------------------------
// Sub-function: Send a broadcast message
//---------------------------------------
-int sendbroadcast(short type, char* message) {
- if (strlen(message) == 0) {
- if (defaultlanguage == 'F') {
- printf("Entrez un message svp.\n");
- if (type == 0) {
- printf("<exemple> kami un message\n");
- } else {
- printf("<exemple> kamib un message\n");
- }
- ladmin_log("Le message est vide (commande 'kami(b)')." RETCODE);
- } else {
- printf("Please input a message.\n");
- if (type == 0) {
- printf("<example> kami a message\n");
- } else {
- printf("<example> kamib a message\n");
- }
- ladmin_log("The message is void ('kami(b)' command)." RETCODE);
- }
- return 136;
- }
+int sendbroadcast (short type, char *message)
+{
+ if (strlen (message) == 0)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez un message svp.\n");
+ if (type == 0)
+ {
+ printf ("<exemple> kami un message\n");
+ }
+ else
+ {
+ printf ("<exemple> kamib un message\n");
+ }
+ ladmin_log ("Le message est vide (commande 'kami(b)')." RETCODE);
+ }
+ else
+ {
+ printf ("Please input a message.\n");
+ if (type == 0)
+ {
+ printf ("<example> kami a message\n");
+ }
+ else
+ {
+ printf ("<example> kamib a message\n");
+ }
+ ladmin_log ("The message is void ('kami(b)' command)." RETCODE);
+ }
+ return 136;
+ }
- WFIFOW(login_fd,0) = 0x794e;
- WFIFOW(login_fd,2) = type;
- WFIFOL(login_fd,4) = strlen(message)+1;
- memcpy(WFIFOP(login_fd,8), message, strlen(message)+1);
- WFIFOSET(login_fd,8+strlen(message)+1);
- bytes_to_read = 1;
+ WFIFOW (login_fd, 0) = 0x794e;
+ WFIFOW (login_fd, 2) = type;
+ WFIFOL (login_fd, 4) = strlen (message) + 1;
+ memcpy (WFIFOP (login_fd, 8), message, strlen (message) + 1);
+ WFIFOSET (login_fd, 8 + strlen (message) + 1);
+ bytes_to_read = 1;
- return 0;
+ return 0;
}
//--------------------------------------------
// Sub-function: Change language of displaying
//--------------------------------------------
-int changelanguage(char* language) {
- if (strlen(language) == 0) {
- if (defaultlanguage == 'F') {
- printf("Entrez une langue svp.\n");
- printf("<exemple> language english\n");
- printf(" language français\n");
- ladmin_log("La langue est vide (commande 'language')." RETCODE);
- } else {
- printf("Please input a language.\n");
- printf("<example> language english\n");
- printf(" language français\n");
- ladmin_log("The language is void ('language' command)." RETCODE);
- }
- return 136;
- }
-
- language[0] = toupper(language[0]);
- if (language[0] == 'F' || language[0] == 'E') {
- defaultlanguage = language[0];
- if (defaultlanguage == 'F') {
- printf("Changement de la langue d'affichage en Français.\n");
- ladmin_log("Changement de la langue d'affichage en Français." RETCODE);
- } else {
- printf("Displaying language changed to English.\n");
- ladmin_log("Displaying language changed to English." RETCODE);
- }
- } else {
- if (defaultlanguage == 'F') {
- printf("Langue non paramétrée (langues possibles: 'Français' ou 'English').\n");
- ladmin_log("Langue non paramétrée (Français ou English nécessaire)." RETCODE);
- } else {
- printf("Undefined language (possible languages: Français or English).\n");
- ladmin_log("Undefined language (must be Français or English)." RETCODE);
- }
- }
+int changelanguage (char *language)
+{
+ if (strlen (language) == 0)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez une langue svp.\n");
+ printf ("<exemple> language english\n");
+ printf (" language français\n");
+ ladmin_log ("La langue est vide (commande 'language')." RETCODE);
+ }
+ else
+ {
+ printf ("Please input a language.\n");
+ printf ("<example> language english\n");
+ printf (" language français\n");
+ ladmin_log ("The language is void ('language' command)." RETCODE);
+ }
+ return 136;
+ }
+
+ language[0] = toupper (language[0]);
+ if (language[0] == 'F' || language[0] == 'E')
+ {
+ defaultlanguage = language[0];
+ if (defaultlanguage == 'F')
+ {
+ printf ("Changement de la langue d'affichage en Français.\n");
+ ladmin_log ("Changement de la langue d'affichage en Français."
+ RETCODE);
+ }
+ else
+ {
+ printf ("Displaying language changed to English.\n");
+ ladmin_log ("Displaying language changed to English." RETCODE);
+ }
+ }
+ else
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Langue non paramétrée (langues possibles: 'Français' ou 'English').\n");
+ ladmin_log
+ ("Langue non paramétrée (Français ou English nécessaire)."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Undefined language (possible languages: Français or English).\n");
+ ladmin_log ("Undefined language (must be Français or English)."
+ RETCODE);
+ }
+ }
- return 0;
+ return 0;
}
//--------------------------------------------------------
// Sub-function: Asking to Displaying of the accounts list
//--------------------------------------------------------
-int listaccount(char* param, int type) {
+int listaccount (char *param, int type)
+{
//int list_first, list_last, list_type; // parameter to display a list of accounts
- int i;
-
- list_type = type;
-
- // set default values
- list_first = 0;
- list_last = 0;
-
- if (list_type == 1) { // if listgm
- // get all accounts = use default
- } else if (list_type == 2) { // if search
- for (i = 0; param[i]; i++)
- param[i] = tolower(param[i]);
- // get all accounts = use default
- } else if (list_type == 3) { // if listban
- // get all accounts = use default
- } else if (list_type == 4) { // if listok
- // get all accounts = use default
- } else { // if list (list_type == 0)
- switch(sscanf(param, "%d %d", &list_first, &list_last)) {
- case 0:
- // get all accounts = use default
- break;
- case 1:
- list_last = 0;
- // use tests of the following value
- default:
- if (list_first < 0)
- list_first = 0;
- if (list_last < list_first || list_last < 0)
- list_last = 0;
- break;
- }
- }
-
- if (defaultlanguage == 'F') {
- ladmin_log("Envoi d'un requête au serveur de logins pour obtenir la liste des comptes de %d à %d." RETCODE, list_first, list_last);
- } else {
- ladmin_log("Request to login-server to obtain the list of accounts from %d to %d." RETCODE, list_first, list_last);
- }
-
- WFIFOW(login_fd,0) = 0x7920;
- WFIFOL(login_fd,2) = list_first;
- WFIFOL(login_fd,6) = list_last;
- WFIFOSET(login_fd,10);
- bytes_to_read = 1;
-
- // 0123456789 01 01234567890123456789012301234 012345 0123456789012345678901234567
- if (defaultlanguage == 'F') {
- Iprintf(" id_compte GM nom_utilisateur sexe count statut\n");
- } else {
- Iprintf("account_id GM user_name sex count state\n");
- }
- Iprintf("-------------------------------------------------------------------------------\n");
- list_count = 0;
-
- return 0;
+ int i;
+
+ list_type = type;
+
+ // set default values
+ list_first = 0;
+ list_last = 0;
+
+ if (list_type == 1)
+ { // if listgm
+ // get all accounts = use default
+ }
+ else if (list_type == 2)
+ { // if search
+ for (i = 0; param[i]; i++)
+ param[i] = tolower (param[i]);
+ // get all accounts = use default
+ }
+ else if (list_type == 3)
+ { // if listban
+ // get all accounts = use default
+ }
+ else if (list_type == 4)
+ { // if listok
+ // get all accounts = use default
+ }
+ else
+ { // if list (list_type == 0)
+ switch (sscanf (param, "%d %d", &list_first, &list_last))
+ {
+ case 0:
+ // get all accounts = use default
+ break;
+ case 1:
+ list_last = 0;
+ // use tests of the following value
+ default:
+ if (list_first < 0)
+ list_first = 0;
+ if (list_last < list_first || list_last < 0)
+ list_last = 0;
+ break;
+ }
+ }
+
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log
+ ("Envoi d'un requête au serveur de logins pour obtenir la liste des comptes de %d à %d."
+ RETCODE, list_first, list_last);
+ }
+ else
+ {
+ ladmin_log
+ ("Request to login-server to obtain the list of accounts from %d to %d."
+ RETCODE, list_first, list_last);
+ }
+
+ WFIFOW (login_fd, 0) = 0x7920;
+ WFIFOL (login_fd, 2) = list_first;
+ WFIFOL (login_fd, 6) = list_last;
+ WFIFOSET (login_fd, 10);
+ bytes_to_read = 1;
+
+ // 0123456789 01 01234567890123456789012301234 012345 0123456789012345678901234567
+ if (defaultlanguage == 'F')
+ {
+ Iprintf
+ (" id_compte GM nom_utilisateur sexe count statut\n");
+ }
+ else
+ {
+ Iprintf
+ ("account_id GM user_name sex count state\n");
+ }
+ Iprintf
+ ("-------------------------------------------------------------------------------\n");
+ list_count = 0;
+
+ return 0;
}
//--------------------------------------------------------
// Sub-function: Frobnicate items
//--------------------------------------------------------
-int itemfrob(char* param)
+int itemfrob (char *param)
{
- int source_id, dest_id;
+ int source_id, dest_id;
- if (sscanf(param, "%d %d", &source_id, &dest_id) < 2) {
- printf("You must provide the source and destination item IDs.\n");
- return 1;
- }
+ if (sscanf (param, "%d %d", &source_id, &dest_id) < 2)
+ {
+ printf ("You must provide the source and destination item IDs.\n");
+ return 1;
+ }
- WFIFOW(login_fd,0) = 0x7924;
- WFIFOL(login_fd,2) = source_id;
- WFIFOL(login_fd,6) = dest_id;
- WFIFOSET(login_fd,10);
- bytes_to_read = 1; // all logging is done to the three main servers
+ WFIFOW (login_fd, 0) = 0x7924;
+ WFIFOL (login_fd, 2) = source_id;
+ WFIFOL (login_fd, 6) = dest_id;
+ WFIFOSET (login_fd, 10);
+ bytes_to_read = 1; // all logging is done to the three main servers
-
- return 0;
+ return 0;
}
-
//--------------------------------------------
// Sub-function: Asking to modify a memo field
//--------------------------------------------
-int changememo(char* param) {
- char name[1023], memo[1023];
-
- memset(name, '\0', sizeof(name));
- memset(memo, '\0', sizeof(memo));
-
- if (sscanf(param, "\"%[^\"]\" %[^\r\n]", name, memo) < 1 && // memo can be void
- sscanf(param, "'%[^']' %[^\r\n]", name, memo) < 1 && // memo can be void
- sscanf(param, "%s %[^\r\n]", name, memo) < 1) { // memo can be void
- if (defaultlanguage == 'F') {
- printf("Entrez un nom de compte et un mémo svp.\n");
- printf("<exemple> memo nomtest nouveau memo\n");
- ladmin_log("Nombre incorrect de paramètres pour changer le mémo d'un compte (commande 'email')." RETCODE);
- } else {
- printf("Please input an account name and a memo.\n");
- printf("<example> memo testname new memo\n");
- ladmin_log("Incomplete parameters to change the memo of an account ('email' command)." RETCODE);
- }
- return 136;
- }
-
- if (verify_accountname(name) == 0) {
- return 102;
- }
-
- if (strlen(memo) > 254) {
- if (defaultlanguage == 'F') {
- printf("Mémo trop long (%d caractères).\n", strlen(memo));
- printf("Entrez un mémo de 254 caractères maximum svp.\n");
- ladmin_log("Mémo trop long (%d caractères). Entrez un mémo de 254 caractères maximum svp." RETCODE, strlen(memo));
- } else {
- printf("Memo is too long (%d characters).\n", strlen(memo));
- printf("Please input a memo of 254 bytes at the maximum.\n");
- ladmin_log("Email is too long (%d characters). Please input a memo of 254 bytes at the maximum." RETCODE, strlen(memo));
- }
- return 102;
- }
-
- if (defaultlanguage == 'F') {
- ladmin_log("Envoi d'un requête au serveur de logins pour changer un mémo." RETCODE);
- } else {
- ladmin_log("Request to login-server to change a memo." RETCODE);
- }
-
- WFIFOW(login_fd,0) = 0x7942;
- memcpy(WFIFOP(login_fd,2), name, 24);
- WFIFOW(login_fd,26) = strlen(memo);
- if (strlen(memo) > 0)
- memcpy(WFIFOP(login_fd,28), memo, strlen(memo));
- WFIFOSET(login_fd,28+strlen(memo));
- bytes_to_read = 1;
-
- return 0;
+int changememo (char *param)
+{
+ char name[1023], memo[1023];
+
+ memset (name, '\0', sizeof (name));
+ memset (memo, '\0', sizeof (memo));
+
+ if (sscanf (param, "\"%[^\"]\" %[^\r\n]", name, memo) < 1 && // memo can be void
+ sscanf (param, "'%[^']' %[^\r\n]", name, memo) < 1 && // memo can be void
+ sscanf (param, "%s %[^\r\n]", name, memo) < 1)
+ { // memo can be void
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez un nom de compte et un mémo svp.\n");
+ printf ("<exemple> memo nomtest nouveau memo\n");
+ ladmin_log
+ ("Nombre incorrect de paramètres pour changer le mémo d'un compte (commande 'email')."
+ RETCODE);
+ }
+ else
+ {
+ printf ("Please input an account name and a memo.\n");
+ printf ("<example> memo testname new memo\n");
+ ladmin_log
+ ("Incomplete parameters to change the memo of an account ('email' command)."
+ RETCODE);
+ }
+ return 136;
+ }
+
+ if (verify_accountname (name) == 0)
+ {
+ return 102;
+ }
+
+ if (strlen (memo) > 254)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Mémo trop long (%d caractères).\n", strlen (memo));
+ printf ("Entrez un mémo de 254 caractères maximum svp.\n");
+ ladmin_log
+ ("Mémo trop long (%d caractères). Entrez un mémo de 254 caractères maximum svp."
+ RETCODE, strlen (memo));
+ }
+ else
+ {
+ printf ("Memo is too long (%d characters).\n", strlen (memo));
+ printf ("Please input a memo of 254 bytes at the maximum.\n");
+ ladmin_log
+ ("Email is too long (%d characters). Please input a memo of 254 bytes at the maximum."
+ RETCODE, strlen (memo));
+ }
+ return 102;
+ }
+
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log
+ ("Envoi d'un requête au serveur de logins pour changer un mémo."
+ RETCODE);
+ }
+ else
+ {
+ ladmin_log ("Request to login-server to change a memo." RETCODE);
+ }
+
+ WFIFOW (login_fd, 0) = 0x7942;
+ memcpy (WFIFOP (login_fd, 2), name, 24);
+ WFIFOW (login_fd, 26) = strlen (memo);
+ if (strlen (memo) > 0)
+ memcpy (WFIFOP (login_fd, 28), memo, strlen (memo));
+ WFIFOSET (login_fd, 28 + strlen (memo));
+ bytes_to_read = 1;
+
+ return 0;
}
//-----------------------------------------------
// Sub-function: Asking to obtain an account name
//-----------------------------------------------
-int nameaccount(int id) {
- if (id < 0) {
- if (defaultlanguage == 'F') {
- printf("Entrez un id ayant une valeur positive svp.\n");
- ladmin_log("Id négatif donné pour rechecher le nom d'un compte (commande 'name')." RETCODE);
- } else {
- printf("Please input a positive value for the id.\n");
- ladmin_log("Negativ id given to search an account name ('name' command)." RETCODE);
- }
- return 136;
- }
-
- if (defaultlanguage == 'F')
- ladmin_log("Envoi d'un requête au serveur de logins pour connaître le nom d'un compte." RETCODE);
- else
- ladmin_log("Request to login-server to know an account name." RETCODE);
-
- WFIFOW(login_fd,0) = 0x7946;
- WFIFOL(login_fd,2) = id;
- WFIFOSET(login_fd,6);
- bytes_to_read = 1;
-
- return 0;
+int nameaccount (int id)
+{
+ if (id < 0)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez un id ayant une valeur positive svp.\n");
+ ladmin_log
+ ("Id négatif donné pour rechecher le nom d'un compte (commande 'name')."
+ RETCODE);
+ }
+ else
+ {
+ printf ("Please input a positive value for the id.\n");
+ ladmin_log
+ ("Negativ id given to search an account name ('name' command)."
+ RETCODE);
+ }
+ return 136;
+ }
+
+ if (defaultlanguage == 'F')
+ ladmin_log
+ ("Envoi d'un requête au serveur de logins pour connaître le nom d'un compte."
+ RETCODE);
+ else
+ ladmin_log ("Request to login-server to know an account name."
+ RETCODE);
+
+ WFIFOW (login_fd, 0) = 0x7946;
+ WFIFOL (login_fd, 2) = id;
+ WFIFOSET (login_fd, 6);
+ bytes_to_read = 1;
+
+ return 0;
}
//------------------------------------------
// Sub-function: Asking to modify a password
// (Note: never send back a password with login-server!! security of passwords)
//------------------------------------------
-int changepasswd(char* param) {
- char name[1023], password[1023];
-
- memset(name, '\0', sizeof(name));
- memset(password, '\0', sizeof(password));
-
- if (sscanf(param, "\"%[^\"]\" %[^\r\n]", name, password) < 1 &&
- sscanf(param, "'%[^']' %[^\r\n]", name, password) < 1 &&
- sscanf(param, "%s %[^\r\n]", name, password) < 1) {
- if (defaultlanguage == 'F') {
- printf("Entrez un nom de compte svp.\n");
- printf("<exemple> passwd nomtest nouveaumotdepasse\n");
- ladmin_log("Nombre incorrect de paramètres pour changer le mot d'un passe d'un compte (commande 'password')." RETCODE);
- } else {
- printf("Please input an account name.\n");
- printf("<example> passwd testname newpassword\n");
- ladmin_log("Incomplete parameters to change the password of an account ('password' command)." RETCODE);
- }
- return 136;
- }
-
- if (verify_accountname(name) == 0) {
- return 102;
- }
-
- if (strlen(password) == 0) {
- if (typepasswd(password) == 0)
- return 134;
- }
- if (verify_password(password) == 0)
- return 131;
-
- if (defaultlanguage == 'F') {
- ladmin_log("Envoi d'un requête au serveur de logins pour changer un mot de passe." RETCODE);
- } else {
- ladmin_log("Request to login-server to change a password." RETCODE);
- }
-
- WFIFOW(login_fd,0) = 0x7934;
- memcpy(WFIFOP(login_fd,2), name, 24);
- memcpy(WFIFOP(login_fd,26), password, 24);
- WFIFOSET(login_fd,50);
- bytes_to_read = 1;
-
- return 0;
+int changepasswd (char *param)
+{
+ char name[1023], password[1023];
+
+ memset (name, '\0', sizeof (name));
+ memset (password, '\0', sizeof (password));
+
+ if (sscanf (param, "\"%[^\"]\" %[^\r\n]", name, password) < 1 &&
+ sscanf (param, "'%[^']' %[^\r\n]", name, password) < 1 &&
+ sscanf (param, "%s %[^\r\n]", name, password) < 1)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez un nom de compte svp.\n");
+ printf ("<exemple> passwd nomtest nouveaumotdepasse\n");
+ ladmin_log
+ ("Nombre incorrect de paramètres pour changer le mot d'un passe d'un compte (commande 'password')."
+ RETCODE);
+ }
+ else
+ {
+ printf ("Please input an account name.\n");
+ printf ("<example> passwd testname newpassword\n");
+ ladmin_log
+ ("Incomplete parameters to change the password of an account ('password' command)."
+ RETCODE);
+ }
+ return 136;
+ }
+
+ if (verify_accountname (name) == 0)
+ {
+ return 102;
+ }
+
+ if (strlen (password) == 0)
+ {
+ if (typepasswd (password) == 0)
+ return 134;
+ }
+ if (verify_password (password) == 0)
+ return 131;
+
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log
+ ("Envoi d'un requête au serveur de logins pour changer un mot de passe."
+ RETCODE);
+ }
+ else
+ {
+ ladmin_log ("Request to login-server to change a password." RETCODE);
+ }
+
+ WFIFOW (login_fd, 0) = 0x7934;
+ memcpy (WFIFOP (login_fd, 2), name, 24);
+ memcpy (WFIFOP (login_fd, 26), password, 24);
+ WFIFOSET (login_fd, 50);
+ bytes_to_read = 1;
+
+ return 0;
}
//----------------------------------------------------------------------
// Sub-function: Request to login-server to reload GM configuration file
// this function have no answer
//----------------------------------------------------------------------
-int reloadGM() {
- WFIFOW(login_fd,0) = 0x7955;
- WFIFOSET(login_fd,2);
- bytes_to_read = 0;
-
- if (defaultlanguage == 'F') {
- ladmin_log("Demande de recharger le fichier de configuration des GM envoyée." RETCODE);
- printf("Demande de recharger le fichier de configuration des GM envoyée.\n");
- printf("Vérifiez les comptes GM actuels (après rechargement):\n");
- } else {
- ladmin_log("Request to reload the GM configuration file sended." RETCODE);
- printf("Request to reload the GM configuration file sended.\n");
- printf("Check the actual GM accounts (after reloading):\n");
- }
- listaccount(parameters, 1); // 1: to list only GM
-
- return 180;
+int reloadGM ()
+{
+ WFIFOW (login_fd, 0) = 0x7955;
+ WFIFOSET (login_fd, 2);
+ bytes_to_read = 0;
+
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log
+ ("Demande de recharger le fichier de configuration des GM envoyée."
+ RETCODE);
+ printf
+ ("Demande de recharger le fichier de configuration des GM envoyée.\n");
+ printf ("Vérifiez les comptes GM actuels (après rechargement):\n");
+ }
+ else
+ {
+ ladmin_log ("Request to reload the GM configuration file sended."
+ RETCODE);
+ printf ("Request to reload the GM configuration file sended.\n");
+ printf ("Check the actual GM accounts (after reloading):\n");
+ }
+ listaccount (parameters, 1); // 1: to list only GM
+
+ return 180;
}
//-----------------------------------------------------
// Sub-function: Asking to modify the sex of an account
//-----------------------------------------------------
-int changesex(char* param) {
- char name[1023], sex[1023];
-
- memset(name, '\0', sizeof(name));
- memset(sex, '\0', sizeof(sex));
-
- if (sscanf(param, "\"%[^\"]\" %[^\r\n]", name, sex) < 2 &&
- sscanf(param, "'%[^']' %[^\r\n]", name, sex) < 2 &&
- sscanf(param, "%s %[^\r\n]", name, sex) < 2) {
- if (defaultlanguage == 'F') {
- printf("Entrez un nom de compte et un sexe svp.\n");
- printf("<exemple> sex nomtest Male\n");
- ladmin_log("Nombre incorrect de paramètres pour changer le sexe d'un compte (commande 'sex')." RETCODE);
- } else {
- printf("Please input an account name and a sex.\n");
- printf("<example> sex testname Male\n");
- ladmin_log("Incomplete parameters to change the sex of an account ('sex' command)." RETCODE);
- }
- return 136;
- }
-
- if (verify_accountname(name) == 0) {
- return 102;
- }
-
- sex[0] = toupper(sex[0]);
- if (strchr("MF", sex[0]) == NULL) {
- if (defaultlanguage == 'F') {
- printf("Sexe incorrect [%s]. Entrez M ou F svp.\n", sex);
- ladmin_log("Sexe incorrect [%s]. Entrez M ou F svp." RETCODE, sex);
- } else {
- printf("Illegal gender [%s]. Please input M or F.\n", sex);
- ladmin_log("Illegal gender [%s]. Please input M or F." RETCODE, sex);
- }
- return 103;
- }
-
- if (defaultlanguage == 'F') {
- ladmin_log("Envoi d'un requête au serveur de logins pour changer un sexe." RETCODE);
- } else {
- ladmin_log("Request to login-server to change a sex." RETCODE);
- }
-
- WFIFOW(login_fd,0) = 0x793c;
- memcpy(WFIFOP(login_fd,2), name, 24);
- WFIFOB(login_fd,26) = sex[0];
- WFIFOSET(login_fd,27);
- bytes_to_read = 1;
-
- return 0;
+int changesex (char *param)
+{
+ char name[1023], sex[1023];
+
+ memset (name, '\0', sizeof (name));
+ memset (sex, '\0', sizeof (sex));
+
+ if (sscanf (param, "\"%[^\"]\" %[^\r\n]", name, sex) < 2 &&
+ sscanf (param, "'%[^']' %[^\r\n]", name, sex) < 2 &&
+ sscanf (param, "%s %[^\r\n]", name, sex) < 2)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez un nom de compte et un sexe svp.\n");
+ printf ("<exemple> sex nomtest Male\n");
+ ladmin_log
+ ("Nombre incorrect de paramètres pour changer le sexe d'un compte (commande 'sex')."
+ RETCODE);
+ }
+ else
+ {
+ printf ("Please input an account name and a sex.\n");
+ printf ("<example> sex testname Male\n");
+ ladmin_log
+ ("Incomplete parameters to change the sex of an account ('sex' command)."
+ RETCODE);
+ }
+ return 136;
+ }
+
+ if (verify_accountname (name) == 0)
+ {
+ return 102;
+ }
+
+ sex[0] = toupper (sex[0]);
+ if (strchr ("MF", sex[0]) == NULL)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Sexe incorrect [%s]. Entrez M ou F svp.\n", sex);
+ ladmin_log ("Sexe incorrect [%s]. Entrez M ou F svp." RETCODE,
+ sex);
+ }
+ else
+ {
+ printf ("Illegal gender [%s]. Please input M or F.\n", sex);
+ ladmin_log ("Illegal gender [%s]. Please input M or F." RETCODE,
+ sex);
+ }
+ return 103;
+ }
+
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log
+ ("Envoi d'un requête au serveur de logins pour changer un sexe."
+ RETCODE);
+ }
+ else
+ {
+ ladmin_log ("Request to login-server to change a sex." RETCODE);
+ }
+
+ WFIFOW (login_fd, 0) = 0x793c;
+ memcpy (WFIFOP (login_fd, 2), name, 24);
+ WFIFOB (login_fd, 26) = sex[0];
+ WFIFOSET (login_fd, 27);
+ bytes_to_read = 1;
+
+ return 0;
}
//-------------------------------------------------------------------------
// Sub-function of sub-function changestate, blockaccount or unblockaccount
// Asking to modify the state of an account
//-------------------------------------------------------------------------
-int changestatesub(char* name, int state, char* error_message7) {
- char error_message[1023]; // need to use, because we can modify error_message7
-
- memset(error_message, '\0', sizeof(error_message));
- strncpy(error_message, error_message7, sizeof(error_message)-1);
-
- if ((state < 0 || state > 9) && state != 100) { // Valid values: 0: ok, or value of the 0x006a packet + 1
- if (defaultlanguage == 'F') {
- printf("Entrez une des statuts suivantes svp:\n");
- printf(" 0 = Compte ok 6 = Your Game's EXE file is not the latest version\n");
- } else {
- printf("Please input one of these states:\n");
- printf(" 0 = Account ok 6 = Your Game's EXE file is not the latest version\n");
- }
- printf(" 1 = Unregistered ID 7 = You are Prohibited to log in until + message\n");
- printf(" 2 = Incorrect Password 8 = Server is jammed due to over populated\n");
- printf(" 3 = This ID is expired 9 = No MSG\n");
- printf(" 4 = Rejected from Server 100 = This ID has been totally erased\n");
- printf(" 5 = You have been blocked by the GM Team\n");
- if (defaultlanguage == 'F') {
- printf("<exemples> state nomtest 5\n");
- printf(" state nomtest 7 fin de votre ban\n");
- printf(" block <nom compte>\n");
- printf(" unblock <nom compte>\n");
- ladmin_log("Valeur incorrecte pour le statut d'un compte (commande 'state', 'block' ou 'unblock')." RETCODE);
- } else {
- printf("<examples> state testname 5\n");
- printf(" state testname 7 end of your ban\n");
- printf(" block <account name>\n");
- printf(" unblock <account name>\n");
- ladmin_log("Invalid value for the state of an account ('state', 'block' or 'unblock' command)." RETCODE);
- }
- return 151;
- }
-
- if (verify_accountname(name) == 0) {
- return 102;
- }
-
- if (state != 7) {
- strcpy(error_message, "-");
- } else {
- if (strlen(error_message) < 1) {
- if (defaultlanguage == 'F') {
- printf("Message d'erreur trop court. Entrez un message de 1-19 caractères.\n");
- ladmin_log("Message d'erreur trop court. Entrez un message de 1-19 caractères." RETCODE);
- } else {
- printf("Error message is too short. Please input a message of 1-19 bytes.\n");
- ladmin_log("Error message is too short. Please input a message of 1-19 bytes." RETCODE);
- }
- return 102;
- }
- if (strlen(error_message) > 19) {
- if (defaultlanguage == 'F') {
- printf("Message d'erreur trop long. Entrez un message de 1-19 caractères.\n");
- ladmin_log("Message d'erreur trop long. Entrez un message de 1-19 caractères." RETCODE);
- } else {
- printf("Error message is too long. Please input a message of 1-19 bytes.\n");
- ladmin_log("Error message is too long. Please input a message of 1-19 bytes." RETCODE);
- }
- return 102;
- }
- }
-
- if (defaultlanguage == 'F') {
- ladmin_log("Envoi d'un requête au serveur de logins pour changer un statut." RETCODE);
- } else {
- ladmin_log("Request to login-server to change a state." RETCODE);
- }
-
- WFIFOW(login_fd,0) = 0x7936;
- memcpy(WFIFOP(login_fd,2), name, 24);
- WFIFOL(login_fd,26) = state;
- memcpy(WFIFOP(login_fd,30), error_message, 20);
- WFIFOSET(login_fd,50);
- bytes_to_read = 1;
-
- return 0;
+int changestatesub (char *name, int state, char *error_message7)
+{
+ char error_message[1023]; // need to use, because we can modify error_message7
+
+ memset (error_message, '\0', sizeof (error_message));
+ strncpy (error_message, error_message7, sizeof (error_message) - 1);
+
+ if ((state < 0 || state > 9) && state != 100)
+ { // Valid values: 0: ok, or value of the 0x006a packet + 1
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez une des statuts suivantes svp:\n");
+ printf
+ (" 0 = Compte ok 6 = Your Game's EXE file is not the latest version\n");
+ }
+ else
+ {
+ printf ("Please input one of these states:\n");
+ printf
+ (" 0 = Account ok 6 = Your Game's EXE file is not the latest version\n");
+ }
+ printf
+ (" 1 = Unregistered ID 7 = You are Prohibited to log in until + message\n");
+ printf
+ (" 2 = Incorrect Password 8 = Server is jammed due to over populated\n");
+ printf (" 3 = This ID is expired 9 = No MSG\n");
+ printf
+ (" 4 = Rejected from Server 100 = This ID has been totally erased\n");
+ printf (" 5 = You have been blocked by the GM Team\n");
+ if (defaultlanguage == 'F')
+ {
+ printf ("<exemples> state nomtest 5\n");
+ printf (" state nomtest 7 fin de votre ban\n");
+ printf (" block <nom compte>\n");
+ printf (" unblock <nom compte>\n");
+ ladmin_log
+ ("Valeur incorrecte pour le statut d'un compte (commande 'state', 'block' ou 'unblock')."
+ RETCODE);
+ }
+ else
+ {
+ printf ("<examples> state testname 5\n");
+ printf (" state testname 7 end of your ban\n");
+ printf (" block <account name>\n");
+ printf (" unblock <account name>\n");
+ ladmin_log
+ ("Invalid value for the state of an account ('state', 'block' or 'unblock' command)."
+ RETCODE);
+ }
+ return 151;
+ }
+
+ if (verify_accountname (name) == 0)
+ {
+ return 102;
+ }
+
+ if (state != 7)
+ {
+ strcpy (error_message, "-");
+ }
+ else
+ {
+ if (strlen (error_message) < 1)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Message d'erreur trop court. Entrez un message de 1-19 caractères.\n");
+ ladmin_log
+ ("Message d'erreur trop court. Entrez un message de 1-19 caractères."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Error message is too short. Please input a message of 1-19 bytes.\n");
+ ladmin_log
+ ("Error message is too short. Please input a message of 1-19 bytes."
+ RETCODE);
+ }
+ return 102;
+ }
+ if (strlen (error_message) > 19)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Message d'erreur trop long. Entrez un message de 1-19 caractères.\n");
+ ladmin_log
+ ("Message d'erreur trop long. Entrez un message de 1-19 caractères."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Error message is too long. Please input a message of 1-19 bytes.\n");
+ ladmin_log
+ ("Error message is too long. Please input a message of 1-19 bytes."
+ RETCODE);
+ }
+ return 102;
+ }
+ }
+
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log
+ ("Envoi d'un requête au serveur de logins pour changer un statut."
+ RETCODE);
+ }
+ else
+ {
+ ladmin_log ("Request to login-server to change a state." RETCODE);
+ }
+
+ WFIFOW (login_fd, 0) = 0x7936;
+ memcpy (WFIFOP (login_fd, 2), name, 24);
+ WFIFOL (login_fd, 26) = state;
+ memcpy (WFIFOP (login_fd, 30), error_message, 20);
+ WFIFOSET (login_fd, 50);
+ bytes_to_read = 1;
+
+ return 0;
}
//-------------------------------------------------------
// Sub-function: Asking to modify the state of an account
//-------------------------------------------------------
-int changestate(char* param) {
- char name[1023], error_message[1023];
- int state;
-
- memset(name, '\0', sizeof(name));
- memset(error_message, '\0', sizeof(error_message));
-
- if (sscanf(param, "\"%[^\"]\" %d %[^\r\n]", name, &state, error_message) < 2 &&
- sscanf(param, "'%[^']' %d %[^\r\n]", name, &state, error_message) < 2 &&
- sscanf(param, "%s %d %[^\r\n]", name, &state, error_message) < 2) {
- if (defaultlanguage == 'F') {
- printf("Entrez un nom de compte et un statut svp.\n");
- printf("<exemples> state nomtest 5\n");
- printf(" state nomtest 7 fin de votre ban\n");
- printf(" block <nom compte>\n");
- printf(" unblock <nom compte>\n");
- ladmin_log("Nombre incorrect de paramètres pour changer le statut d'un compte (commande 'state')." RETCODE);
- } else {
- printf("Please input an account name and a state.\n");
- printf("<examples> state testname 5\n");
- printf(" state testname 7 end of your ban\n");
- printf(" block <account name>\n");
- printf(" unblock <account name>\n");
- ladmin_log("Incomplete parameters to change the state of an account ('state' command)." RETCODE);
- }
- return 136;
- }
+int changestate (char *param)
+{
+ char name[1023], error_message[1023];
+ int state;
+
+ memset (name, '\0', sizeof (name));
+ memset (error_message, '\0', sizeof (error_message));
+
+ if (sscanf (param, "\"%[^\"]\" %d %[^\r\n]", name, &state, error_message)
+ < 2
+ && sscanf (param, "'%[^']' %d %[^\r\n]", name, &state,
+ error_message) < 2
+ && sscanf (param, "%s %d %[^\r\n]", name, &state, error_message) < 2)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez un nom de compte et un statut svp.\n");
+ printf ("<exemples> state nomtest 5\n");
+ printf (" state nomtest 7 fin de votre ban\n");
+ printf (" block <nom compte>\n");
+ printf (" unblock <nom compte>\n");
+ ladmin_log
+ ("Nombre incorrect de paramètres pour changer le statut d'un compte (commande 'state')."
+ RETCODE);
+ }
+ else
+ {
+ printf ("Please input an account name and a state.\n");
+ printf ("<examples> state testname 5\n");
+ printf (" state testname 7 end of your ban\n");
+ printf (" block <account name>\n");
+ printf (" unblock <account name>\n");
+ ladmin_log
+ ("Incomplete parameters to change the state of an account ('state' command)."
+ RETCODE);
+ }
+ return 136;
+ }
- return changestatesub(name, state, error_message);
+ return changestatesub (name, state, error_message);
}
//-------------------------------------------
// Sub-function: Asking to unblock an account
//-------------------------------------------
-int unblockaccount(char* param) {
- char name[1023];
-
- memset(name, '\0', sizeof(name));
-
- if (strlen(param) == 0 ||
- (sscanf(param, "\"%[^\"]\"", name) < 1 &&
- sscanf(param, "'%[^']'", name) < 1 &&
- sscanf(param, "%[^\r\n]", name) < 1) ||
- strlen(name) == 0) {
- if (defaultlanguage == 'F') {
- printf("Entrez un nom de compte svp.\n");
- printf("<exemples> state nomtest 5\n");
- printf(" state nomtest 7 fin de votre ban\n");
- printf(" block <nom compte>\n");
- printf(" unblock <nom compte>\n");
- ladmin_log("Nombre incorrect de paramètres pour changer le statut d'un compte (commande 'unblock')." RETCODE);
- } else {
- printf("Please input an account name.\n");
- printf("<examples> state testname 5\n");
- printf(" state testname 7 end of your ban\n");
- printf(" block <account name>\n");
- printf(" unblock <account name>\n");
- ladmin_log("Incomplete parameters to change the state of an account ('unblock' command)." RETCODE);
- }
- return 136;
- }
+int unblockaccount (char *param)
+{
+ char name[1023];
+
+ memset (name, '\0', sizeof (name));
+
+ if (strlen (param) == 0 ||
+ (sscanf (param, "\"%[^\"]\"", name) < 1 &&
+ sscanf (param, "'%[^']'", name) < 1 &&
+ sscanf (param, "%[^\r\n]", name) < 1) || strlen (name) == 0)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez un nom de compte svp.\n");
+ printf ("<exemples> state nomtest 5\n");
+ printf (" state nomtest 7 fin de votre ban\n");
+ printf (" block <nom compte>\n");
+ printf (" unblock <nom compte>\n");
+ ladmin_log
+ ("Nombre incorrect de paramètres pour changer le statut d'un compte (commande 'unblock')."
+ RETCODE);
+ }
+ else
+ {
+ printf ("Please input an account name.\n");
+ printf ("<examples> state testname 5\n");
+ printf (" state testname 7 end of your ban\n");
+ printf (" block <account name>\n");
+ printf (" unblock <account name>\n");
+ ladmin_log
+ ("Incomplete parameters to change the state of an account ('unblock' command)."
+ RETCODE);
+ }
+ return 136;
+ }
- return changestatesub(name, 0, "-"); // state 0, no error message
+ return changestatesub (name, 0, "-"); // state 0, no error message
}
//-------------------------------------------
// Sub-function: Asking to unblock an account
//-------------------------------------------
-int blockaccount(char* param) {
- char name[1023];
-
- memset(name, '\0', sizeof(name));
-
- if (strlen(param) == 0 ||
- (sscanf(param, "\"%[^\"]\"", name) < 1 &&
- sscanf(param, "'%[^']'", name) < 1 &&
- sscanf(param, "%[^\r\n]", name) < 1) ||
- strlen(name) == 0) {
- if (defaultlanguage == 'F') {
- printf("Entrez un nom de compte svp.\n");
- printf("<exemples> state nomtest 5\n");
- printf(" state nomtest 7 fin de votre ban\n");
- printf(" block <nom compte>\n");
- printf(" unblock <nom compte>\n");
- ladmin_log("Nombre incorrect de paramètres pour changer le statut d'un compte (commande 'block')." RETCODE);
- } else {
- printf("Please input an account name.\n");
- printf("<examples> state testname 5\n");
- printf(" state testname 7 end of your ban\n");
- printf(" block <account name>\n");
- printf(" unblock <account name>\n");
- ladmin_log("Incomplete parameters to change the state of an account ('block' command)." RETCODE);
- }
- return 136;
- }
+int blockaccount (char *param)
+{
+ char name[1023];
+
+ memset (name, '\0', sizeof (name));
+
+ if (strlen (param) == 0 ||
+ (sscanf (param, "\"%[^\"]\"", name) < 1 &&
+ sscanf (param, "'%[^']'", name) < 1 &&
+ sscanf (param, "%[^\r\n]", name) < 1) || strlen (name) == 0)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez un nom de compte svp.\n");
+ printf ("<exemples> state nomtest 5\n");
+ printf (" state nomtest 7 fin de votre ban\n");
+ printf (" block <nom compte>\n");
+ printf (" unblock <nom compte>\n");
+ ladmin_log
+ ("Nombre incorrect de paramètres pour changer le statut d'un compte (commande 'block')."
+ RETCODE);
+ }
+ else
+ {
+ printf ("Please input an account name.\n");
+ printf ("<examples> state testname 5\n");
+ printf (" state testname 7 end of your ban\n");
+ printf (" block <account name>\n");
+ printf (" unblock <account name>\n");
+ ladmin_log
+ ("Incomplete parameters to change the state of an account ('block' command)."
+ RETCODE);
+ }
+ return 136;
+ }
- return changestatesub(name, 5, "-"); // state 5, no error message
+ return changestatesub (name, 5, "-"); // state 5, no error message
}
//---------------------------------------------------------------------
// Sub-function: Add/substract time to the validity limit of an account
//---------------------------------------------------------------------
-int timeaddaccount(char* param) {
- char name[1023], modif[1023];
- int year, month, day, hour, minute, second;
- char * p_modif;
- int value, i;
-
- memset(name, '\0', sizeof(name));
- memset(modif, '\0', sizeof(modif));
- year = month = day = hour = minute = second = 0;
-
- if (sscanf(param, "\"%[^\"]\" %[^\r\n]", name, modif) < 2 &&
- sscanf(param, "'%[^']' %[^\r\n]", name, modif) < 2 &&
- sscanf(param, "%s %[^\r\n]", name, modif) < 2) {
- if (defaultlanguage == 'F') {
- printf("Entrez un nom de compte et un modificateur svp.\n");
- printf(" <exemple> timeadd nomtest +1m-2mn1s-6y\n");
- printf(" Cette exemple ajoute 1 mois et 1 seconde, et soustrait 2 minutes\n");
- printf(" et 6 ans dans le même temps.\n");
- ladmin_log("Nombre incorrect de paramètres pour modifier une date limite d'utilisation (commande 'timeadd')." RETCODE);
- } else {
- printf("Please input an account name and a modifier.\n");
- printf(" <example>: timeadd testname +1m-2mn1s-6y\n");
- printf(" this example adds 1 month and 1 second, and substracts 2 minutes\n");
- printf(" and 6 years at the same time.\n");
- ladmin_log("Incomplete parameters to modify a limit time ('timeadd' command)." RETCODE);
- }
- return 136;
- }
- if (verify_accountname(name) == 0) {
- return 102;
- }
-
- // lowercase for modif
- for (i = 0; modif[i]; i++)
- modif[i] = tolower(modif[i]);
- p_modif = modif;
- while (strlen(p_modif) > 0) {
- value = atoi(p_modif);
- if (value == 0) {
- p_modif++;
- } else {
- if (p_modif[0] == '-' || p_modif[0] == '+')
- p_modif++;
- while (strlen(p_modif) > 0 && p_modif[0] >= '0' && p_modif[0] <= '9') {
- p_modif++;
- }
- if (p_modif[0] == 's') {
- second = value;
- p_modif++;
- } else if (p_modif[0] == 'm' && p_modif[1] == 'n') {
- minute = value;
- p_modif += 2;
- } else if (p_modif[0] == 'h') {
- hour = value;
- p_modif++;
- } else if (p_modif[0] == 'd' || p_modif[0] == 'j') {
- day = value;
- p_modif += 2;
- } else if (p_modif[0] == 'm') {
- month = value;
- p_modif++;
- } else if (p_modif[0] == 'y' || p_modif[0] == 'a') {
- year = value;
- p_modif++;
- } else {
- p_modif++;
- }
- }
- }
-
- if (defaultlanguage == 'F') {
- printf(" année: %d\n", year);
- printf(" mois: %d\n", month);
- printf(" jour: %d\n", day);
- printf(" heure: %d\n", hour);
- printf(" minute: %d\n", minute);
- printf(" seconde: %d\n", second);
- } else {
- printf(" year: %d\n", year);
- printf(" month: %d\n", month);
- printf(" day: %d\n", day);
- printf(" hour: %d\n", hour);
- printf(" minute: %d\n", minute);
- printf(" second: %d\n", second);
- }
-
- if (year == 0 && month == 0 && day == 0 && hour == 0 && minute == 0 && second == 0) {
- if (defaultlanguage == 'F') {
- printf("Vous devez entrer un ajustement avec cette commande, svp:\n");
- printf(" Valeur d'ajustement (-1, 1, +1, etc...)\n");
- printf(" Elément modifié:\n");
- printf(" a ou y: année\n");
- printf(" m: mois\n");
- printf(" j ou d: jour\n");
- printf(" h: heure\n");
- printf(" mn: minute\n");
- printf(" s: seconde\n");
- printf(" <exemple> timeadd nomtest +1m-2mn1s-6y\n");
- printf(" Cette exemple ajoute 1 mois et 1 seconde, et soustrait 2 minutes\n");
- printf(" et 6 ans dans le même temps.\n");
- ladmin_log("Aucun ajustement n'est pas un ajustement (commande 'timeadd')." RETCODE);
- } else {
- printf("Please give an adjustment with this command:\n");
- printf(" Adjustment value (-1, 1, +1, etc...)\n");
- printf(" Modified element:\n");
- printf(" a or y: year\n");
- printf(" m: month\n");
- printf(" j or d: day\n");
- printf(" h: hour\n");
- printf(" mn: minute\n");
- printf(" s: second\n");
- printf(" <example> timeadd testname +1m-2mn1s-6y\n");
- printf(" this example adds 1 month and 1 second, and substracts 2 minutes\n");
- printf(" and 6 years at the same time.\n");
- ladmin_log("No adjustment isn't an adjustment ('timeadd' command)." RETCODE);
- }
- return 137;
- }
- if (year > 127 || year < -127) {
- if (defaultlanguage == 'F') {
- printf("Entrez un ajustement d'années correct (de -127 à 127), svp.\n");
- ladmin_log("Ajustement de l'année hors norme ('timeadd' command)." RETCODE);
- } else {
- printf("Please give a correct adjustment for the years (from -127 to 127).\n");
- ladmin_log("Abnormal adjustement for the year ('timeadd' command)." RETCODE);
- }
- return 137;
- }
- if (month > 255 || month < -255) {
- if (defaultlanguage == 'F') {
- printf("Entrez un ajustement de mois correct (de -255 à 255), svp.\n");
- ladmin_log("Ajustement du mois hors norme ('timeadd' command)." RETCODE);
- } else {
- printf("Please give a correct adjustment for the months (from -255 to 255).\n");
- ladmin_log("Abnormal adjustement for the month ('timeadd' command)." RETCODE);
- }
- return 137;
- }
- if (day > 32767 || day < -32767) {
- if (defaultlanguage == 'F') {
- printf("Entrez un ajustement de jours correct (de -32767 à 32767), svp.\n");
- ladmin_log("Ajustement des jours hors norme ('timeadd' command)." RETCODE);
- } else {
- printf("Please give a correct adjustment for the days (from -32767 to 32767).\n");
- ladmin_log("Abnormal adjustement for the days ('timeadd' command)." RETCODE);
- }
- return 137;
- }
- if (hour > 32767 || hour < -32767) {
- if (defaultlanguage == 'F') {
- printf("Entrez un ajustement d'heures correct (de -32767 à 32767), svp.\n");
- ladmin_log("Ajustement des heures hors norme ('timeadd' command)." RETCODE);
- } else {
- printf("Please give a correct adjustment for the hours (from -32767 to 32767).\n");
- ladmin_log("Abnormal adjustement for the hours ('timeadd' command)." RETCODE);
- }
- return 137;
- }
- if (minute > 32767 || minute < -32767) {
- if (defaultlanguage == 'F') {
- printf("Entrez un ajustement de minutes correct (de -32767 à 32767), svp.\n");
- ladmin_log("Ajustement des minutes hors norme ('timeadd' command)." RETCODE);
- } else {
- printf("Please give a correct adjustment for the minutes (from -32767 to 32767).\n");
- ladmin_log("Abnormal adjustement for the minutes ('timeadd' command)." RETCODE);
- }
- return 137;
- }
- if (second > 32767 || second < -32767) {
- if (defaultlanguage == 'F') {
- printf("Entrez un ajustement de secondes correct (de -32767 à 32767), svp.\n");
- ladmin_log("Ajustement des secondes hors norme ('timeadd' command)." RETCODE);
- } else {
- printf("Please give a correct adjustment for the seconds (from -32767 to 32767).\n");
- ladmin_log("Abnormal adjustement for the seconds ('timeadd' command)." RETCODE);
- }
- return 137;
- }
-
- if (defaultlanguage == 'F') {
- ladmin_log("Envoi d'un requête au serveur de logins pour modifier une date limite d'utilisation." RETCODE);
- } else {
- ladmin_log("Request to login-server to modify a time limit." RETCODE);
- }
-
- WFIFOW(login_fd,0) = 0x7950;
- memcpy(WFIFOP(login_fd,2), name, 24);
- WFIFOW(login_fd,26) = (short)year;
- WFIFOW(login_fd,28) = (short)month;
- WFIFOW(login_fd,30) = (short)day;
- WFIFOW(login_fd,32) = (short)hour;
- WFIFOW(login_fd,34) = (short)minute;
- WFIFOW(login_fd,36) = (short)second;
- WFIFOSET(login_fd,38);
- bytes_to_read = 1;
-
- return 0;
+int timeaddaccount (char *param)
+{
+ char name[1023], modif[1023];
+ int year, month, day, hour, minute, second;
+ char *p_modif;
+ int value, i;
+
+ memset (name, '\0', sizeof (name));
+ memset (modif, '\0', sizeof (modif));
+ year = month = day = hour = minute = second = 0;
+
+ if (sscanf (param, "\"%[^\"]\" %[^\r\n]", name, modif) < 2 &&
+ sscanf (param, "'%[^']' %[^\r\n]", name, modif) < 2 &&
+ sscanf (param, "%s %[^\r\n]", name, modif) < 2)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez un nom de compte et un modificateur svp.\n");
+ printf (" <exemple> timeadd nomtest +1m-2mn1s-6y\n");
+ printf
+ (" Cette exemple ajoute 1 mois et 1 seconde, et soustrait 2 minutes\n");
+ printf (" et 6 ans dans le même temps.\n");
+ ladmin_log
+ ("Nombre incorrect de paramètres pour modifier une date limite d'utilisation (commande 'timeadd')."
+ RETCODE);
+ }
+ else
+ {
+ printf ("Please input an account name and a modifier.\n");
+ printf (" <example>: timeadd testname +1m-2mn1s-6y\n");
+ printf
+ (" this example adds 1 month and 1 second, and substracts 2 minutes\n");
+ printf (" and 6 years at the same time.\n");
+ ladmin_log
+ ("Incomplete parameters to modify a limit time ('timeadd' command)."
+ RETCODE);
+ }
+ return 136;
+ }
+ if (verify_accountname (name) == 0)
+ {
+ return 102;
+ }
+
+ // lowercase for modif
+ for (i = 0; modif[i]; i++)
+ modif[i] = tolower (modif[i]);
+ p_modif = modif;
+ while (strlen (p_modif) > 0)
+ {
+ value = atoi (p_modif);
+ if (value == 0)
+ {
+ p_modif++;
+ }
+ else
+ {
+ if (p_modif[0] == '-' || p_modif[0] == '+')
+ p_modif++;
+ while (strlen (p_modif) > 0 && p_modif[0] >= '0'
+ && p_modif[0] <= '9')
+ {
+ p_modif++;
+ }
+ if (p_modif[0] == 's')
+ {
+ second = value;
+ p_modif++;
+ }
+ else if (p_modif[0] == 'm' && p_modif[1] == 'n')
+ {
+ minute = value;
+ p_modif += 2;
+ }
+ else if (p_modif[0] == 'h')
+ {
+ hour = value;
+ p_modif++;
+ }
+ else if (p_modif[0] == 'd' || p_modif[0] == 'j')
+ {
+ day = value;
+ p_modif += 2;
+ }
+ else if (p_modif[0] == 'm')
+ {
+ month = value;
+ p_modif++;
+ }
+ else if (p_modif[0] == 'y' || p_modif[0] == 'a')
+ {
+ year = value;
+ p_modif++;
+ }
+ else
+ {
+ p_modif++;
+ }
+ }
+ }
+
+ if (defaultlanguage == 'F')
+ {
+ printf (" année: %d\n", year);
+ printf (" mois: %d\n", month);
+ printf (" jour: %d\n", day);
+ printf (" heure: %d\n", hour);
+ printf (" minute: %d\n", minute);
+ printf (" seconde: %d\n", second);
+ }
+ else
+ {
+ printf (" year: %d\n", year);
+ printf (" month: %d\n", month);
+ printf (" day: %d\n", day);
+ printf (" hour: %d\n", hour);
+ printf (" minute: %d\n", minute);
+ printf (" second: %d\n", second);
+ }
+
+ if (year == 0 && month == 0 && day == 0 && hour == 0 && minute == 0
+ && second == 0)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Vous devez entrer un ajustement avec cette commande, svp:\n");
+ printf (" Valeur d'ajustement (-1, 1, +1, etc...)\n");
+ printf (" Elément modifié:\n");
+ printf (" a ou y: année\n");
+ printf (" m: mois\n");
+ printf (" j ou d: jour\n");
+ printf (" h: heure\n");
+ printf (" mn: minute\n");
+ printf (" s: seconde\n");
+ printf (" <exemple> timeadd nomtest +1m-2mn1s-6y\n");
+ printf
+ (" Cette exemple ajoute 1 mois et 1 seconde, et soustrait 2 minutes\n");
+ printf (" et 6 ans dans le même temps.\n");
+ ladmin_log
+ ("Aucun ajustement n'est pas un ajustement (commande 'timeadd')."
+ RETCODE);
+ }
+ else
+ {
+ printf ("Please give an adjustment with this command:\n");
+ printf (" Adjustment value (-1, 1, +1, etc...)\n");
+ printf (" Modified element:\n");
+ printf (" a or y: year\n");
+ printf (" m: month\n");
+ printf (" j or d: day\n");
+ printf (" h: hour\n");
+ printf (" mn: minute\n");
+ printf (" s: second\n");
+ printf (" <example> timeadd testname +1m-2mn1s-6y\n");
+ printf
+ (" this example adds 1 month and 1 second, and substracts 2 minutes\n");
+ printf (" and 6 years at the same time.\n");
+ ladmin_log
+ ("No adjustment isn't an adjustment ('timeadd' command)."
+ RETCODE);
+ }
+ return 137;
+ }
+ if (year > 127 || year < -127)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Entrez un ajustement d'années correct (de -127 à 127), svp.\n");
+ ladmin_log
+ ("Ajustement de l'année hors norme ('timeadd' command)."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please give a correct adjustment for the years (from -127 to 127).\n");
+ ladmin_log
+ ("Abnormal adjustement for the year ('timeadd' command)."
+ RETCODE);
+ }
+ return 137;
+ }
+ if (month > 255 || month < -255)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Entrez un ajustement de mois correct (de -255 à 255), svp.\n");
+ ladmin_log ("Ajustement du mois hors norme ('timeadd' command)."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please give a correct adjustment for the months (from -255 to 255).\n");
+ ladmin_log
+ ("Abnormal adjustement for the month ('timeadd' command)."
+ RETCODE);
+ }
+ return 137;
+ }
+ if (day > 32767 || day < -32767)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Entrez un ajustement de jours correct (de -32767 à 32767), svp.\n");
+ ladmin_log ("Ajustement des jours hors norme ('timeadd' command)."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please give a correct adjustment for the days (from -32767 to 32767).\n");
+ ladmin_log
+ ("Abnormal adjustement for the days ('timeadd' command)."
+ RETCODE);
+ }
+ return 137;
+ }
+ if (hour > 32767 || hour < -32767)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Entrez un ajustement d'heures correct (de -32767 à 32767), svp.\n");
+ ladmin_log
+ ("Ajustement des heures hors norme ('timeadd' command)."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please give a correct adjustment for the hours (from -32767 to 32767).\n");
+ ladmin_log
+ ("Abnormal adjustement for the hours ('timeadd' command)."
+ RETCODE);
+ }
+ return 137;
+ }
+ if (minute > 32767 || minute < -32767)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Entrez un ajustement de minutes correct (de -32767 à 32767), svp.\n");
+ ladmin_log
+ ("Ajustement des minutes hors norme ('timeadd' command)."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please give a correct adjustment for the minutes (from -32767 to 32767).\n");
+ ladmin_log
+ ("Abnormal adjustement for the minutes ('timeadd' command)."
+ RETCODE);
+ }
+ return 137;
+ }
+ if (second > 32767 || second < -32767)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Entrez un ajustement de secondes correct (de -32767 à 32767), svp.\n");
+ ladmin_log
+ ("Ajustement des secondes hors norme ('timeadd' command)."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please give a correct adjustment for the seconds (from -32767 to 32767).\n");
+ ladmin_log
+ ("Abnormal adjustement for the seconds ('timeadd' command)."
+ RETCODE);
+ }
+ return 137;
+ }
+
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log
+ ("Envoi d'un requête au serveur de logins pour modifier une date limite d'utilisation."
+ RETCODE);
+ }
+ else
+ {
+ ladmin_log ("Request to login-server to modify a time limit."
+ RETCODE);
+ }
+
+ WFIFOW (login_fd, 0) = 0x7950;
+ memcpy (WFIFOP (login_fd, 2), name, 24);
+ WFIFOW (login_fd, 26) = (short) year;
+ WFIFOW (login_fd, 28) = (short) month;
+ WFIFOW (login_fd, 30) = (short) day;
+ WFIFOW (login_fd, 32) = (short) hour;
+ WFIFOW (login_fd, 34) = (short) minute;
+ WFIFOW (login_fd, 36) = (short) second;
+ WFIFOSET (login_fd, 38);
+ bytes_to_read = 1;
+
+ return 0;
}
//-------------------------------------------------
// Sub-function: Set a validity limit of an account
//-------------------------------------------------
-int timesetaccount(char* param) {
- char name[1023], date[1023], time[1023];
- int year, month, day, hour, minute, second;
- time_t connect_until_time; // # of seconds 1/1/1970 (timestamp): Validity limit of the account (0 = unlimited)
- struct tm *tmtime;
-
- memset(name, '\0', sizeof(name));
- memset(date, '\0', sizeof(date));
- memset(time, '\0', sizeof(time));
- year = month = day = hour = minute = second = 0;
- connect_until_time = 0;
- tmtime = localtime(&connect_until_time); // initialize
-
- if (sscanf(param, "\"%[^\"]\" %s %[^\r\n]", name, date, time) < 2 && // if date = 0, time can be void
- sscanf(param, "'%[^']' %s %[^\r\n]", name, date, time) < 2 && // if date = 0, time can be void
- sscanf(param, "%s %s %[^\r\n]", name, date, time) < 2) { // if date = 0, time can be void
- if (defaultlanguage == 'F') {
- printf("Entrez un nom de compte, une date et une heure svp.\n");
- printf("<exemple>: timeset <nom_du_compte> aaaa/mm/jj [hh:mm:ss]\n");
- printf(" timeset <nom_du_compte> 0 (0 = illimité)\n");
- printf(" Heure par défaut [hh:mm:ss]: 23:59:59.\n");
- ladmin_log("Nombre incorrect de paramètres pour fixer une date limite d'utilisation (commande 'timeset')." RETCODE);
- } else {
- printf("Please input an account name, a date and a hour.\n");
- printf("<example>: timeset <account_name> yyyy/mm/dd [hh:mm:ss]\n");
- printf(" timeset <account_name> 0 (0 = unlimited)\n");
- printf(" Default time [hh:mm:ss]: 23:59:59.\n");
- ladmin_log("Incomplete parameters to set a limit time ('timeset' command)." RETCODE);
- }
- return 136;
- }
- if (verify_accountname(name) == 0) {
- return 102;
- }
-
- if (time[0] == '\0')
- strcpy(time, "23:59:59");
-
- if (atoi(date) != 0 &&
- ((sscanf(date, "%d/%d/%d", &year, &month, &day) < 3 &&
- sscanf(date, "%d-%d-%d", &year, &month, &day) < 3 &&
- sscanf(date, "%d.%d.%d", &year, &month, &day) < 3 &&
- sscanf(date, "%d'%d'%d", &year, &month, &day) < 3) ||
- sscanf(time, "%d:%d:%d", &hour, &minute, &second) < 3)) {
- if (defaultlanguage == 'F') {
- printf("Entrez 0 ou une date et une heure svp (format: 0 ou aaaa/mm/jj hh:mm:ss).\n");
- ladmin_log("Format incorrect pour la date/heure ('timeset' command)." RETCODE);
- } else {
- printf("Please input 0 or a date and a time (format: 0 or yyyy/mm/dd hh:mm:ss).\n");
- ladmin_log("Invalid format for the date/time ('timeset' command)." RETCODE);
- }
- return 102;
- }
-
- if (atoi(date) == 0) {
- connect_until_time = 0;
- } else {
- if (year < 70) {
- year = year + 100;
- }
- if (year >= 1900) {
- year = year - 1900;
- }
- if (month < 1 || month > 12) {
- if (defaultlanguage == 'F') {
- printf("Entrez un mois correct svp (entre 1 et 12).\n");
- ladmin_log("Mois incorrect pour la date ('timeset' command)." RETCODE);
- } else {
- printf("Please give a correct value for the month (from 1 to 12).\n");
- ladmin_log("Invalid month for the date ('timeset' command)." RETCODE);
- }
- return 102;
- }
- month = month - 1;
- if (day < 1 || day > 31) {
- if (defaultlanguage == 'F') {
- printf("Entrez un jour correct svp (entre 1 et 31).\n");
- ladmin_log("Jour incorrect pour la date ('timeset' command)." RETCODE);
- } else {
- printf("Please give a correct value for the day (from 1 to 31).\n");
- ladmin_log("Invalid day for the date ('timeset' command)." RETCODE);
- }
- return 102;
- }
- if (((month == 3 || month == 5 || month == 8 || month == 10) && day > 30) ||
- (month == 1 && day > 29)) {
- if (defaultlanguage == 'F') {
- printf("Entrez un jour correct en fonction du mois (%d) svp.\n", month);
- ladmin_log("Jour incorrect pour ce mois correspondant ('timeset' command)." RETCODE);
- } else {
- printf("Please give a correct value for a day of this month (%d).\n", month);
- ladmin_log("Invalid day for this month ('timeset' command)." RETCODE);
- }
- return 102;
- }
- if (hour < 0 || hour > 23) {
- if (defaultlanguage == 'F') {
- printf("Entrez une heure correcte svp (entre 0 et 23).\n");
- ladmin_log("Heure incorrecte pour l'heure ('timeset' command)." RETCODE);
- } else {
- printf("Please give a correct value for the hour (from 0 to 23).\n");
- ladmin_log("Invalid hour for the time ('timeset' command)." RETCODE);
- }
- return 102;
- }
- if (minute < 0 || minute > 59) {
- if (defaultlanguage == 'F') {
- printf("Entrez des minutes correctes svp (entre 0 et 59).\n");
- ladmin_log("Minute incorrecte pour l'heure ('timeset' command)." RETCODE);
- } else {
- printf("Please give a correct value for the minutes (from 0 to 59).\n");
- ladmin_log("Invalid minute for the time ('timeset' command)." RETCODE);
- }
- return 102;
- }
- if (second < 0 || second > 59) {
- if (defaultlanguage == 'F') {
- printf("Entrez des secondes correctes svp (entre 0 et 59).\n");
- ladmin_log("Seconde incorrecte pour l'heure ('timeset' command)." RETCODE);
- } else {
- printf("Please give a correct value for the seconds (from 0 to 59).\n");
- ladmin_log("Invalid second for the time ('timeset' command)." RETCODE);
- }
- return 102;
- }
- tmtime->tm_year = year;
- tmtime->tm_mon = month;
- tmtime->tm_mday = day;
- tmtime->tm_hour = hour;
- tmtime->tm_min = minute;
- tmtime->tm_sec = second;
- tmtime->tm_isdst = -1; // -1: no winter/summer time modification
- connect_until_time = timegm(tmtime);
- if (connect_until_time == -1) {
- if (defaultlanguage == 'F') {
- printf("Date incorrecte.\n");
- printf("Ajoutez 0 ou une date et une heure svp (format: 0 ou aaaa/mm/jj hh:mm:ss).\n");
- ladmin_log("Date incorrecte. ('timeset' command)." RETCODE);
- } else {
- printf("Invalid date.\n");
- printf("Please add 0 or a date and a time (format: 0 or yyyy/mm/dd hh:mm:ss).\n");
- ladmin_log("Invalid date. ('timeset' command)." RETCODE);
- }
- return 102;
- }
- }
-
- if (defaultlanguage == 'F') {
- ladmin_log("Envoi d'un requête au serveur de logins pour fixer une date limite d'utilisation." RETCODE);
- } else {
- ladmin_log("Request to login-server to set a time limit." RETCODE);
- }
-
- WFIFOW(login_fd,0) = 0x7948;
- memcpy(WFIFOP(login_fd,2), name, 24);
- WFIFOL(login_fd,26) = (int)connect_until_time;
- WFIFOSET(login_fd,30);
- bytes_to_read = 1;
-
- return 0;
+int timesetaccount (char *param)
+{
+ char name[1023], date[1023], time[1023];
+ int year, month, day, hour, minute, second;
+ time_t connect_until_time; // # of seconds 1/1/1970 (timestamp): Validity limit of the account (0 = unlimited)
+ struct tm *tmtime;
+
+ memset (name, '\0', sizeof (name));
+ memset (date, '\0', sizeof (date));
+ memset (time, '\0', sizeof (time));
+ year = month = day = hour = minute = second = 0;
+ connect_until_time = 0;
+ tmtime = localtime (&connect_until_time); // initialize
+
+ if (sscanf (param, "\"%[^\"]\" %s %[^\r\n]", name, date, time) < 2 && // if date = 0, time can be void
+ sscanf (param, "'%[^']' %s %[^\r\n]", name, date, time) < 2 && // if date = 0, time can be void
+ sscanf (param, "%s %s %[^\r\n]", name, date, time) < 2)
+ { // if date = 0, time can be void
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez un nom de compte, une date et une heure svp.\n");
+ printf
+ ("<exemple>: timeset <nom_du_compte> aaaa/mm/jj [hh:mm:ss]\n");
+ printf
+ (" timeset <nom_du_compte> 0 (0 = illimité)\n");
+ printf (" Heure par défaut [hh:mm:ss]: 23:59:59.\n");
+ ladmin_log
+ ("Nombre incorrect de paramètres pour fixer une date limite d'utilisation (commande 'timeset')."
+ RETCODE);
+ }
+ else
+ {
+ printf ("Please input an account name, a date and a hour.\n");
+ printf
+ ("<example>: timeset <account_name> yyyy/mm/dd [hh:mm:ss]\n");
+ printf
+ (" timeset <account_name> 0 (0 = unlimited)\n");
+ printf (" Default time [hh:mm:ss]: 23:59:59.\n");
+ ladmin_log
+ ("Incomplete parameters to set a limit time ('timeset' command)."
+ RETCODE);
+ }
+ return 136;
+ }
+ if (verify_accountname (name) == 0)
+ {
+ return 102;
+ }
+
+ if (time[0] == '\0')
+ strcpy (time, "23:59:59");
+
+ if (atoi (date) != 0 &&
+ ((sscanf (date, "%d/%d/%d", &year, &month, &day) < 3 &&
+ sscanf (date, "%d-%d-%d", &year, &month, &day) < 3 &&
+ sscanf (date, "%d.%d.%d", &year, &month, &day) < 3 &&
+ sscanf (date, "%d'%d'%d", &year, &month, &day) < 3) ||
+ sscanf (time, "%d:%d:%d", &hour, &minute, &second) < 3))
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Entrez 0 ou une date et une heure svp (format: 0 ou aaaa/mm/jj hh:mm:ss).\n");
+ ladmin_log
+ ("Format incorrect pour la date/heure ('timeset' command)."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please input 0 or a date and a time (format: 0 or yyyy/mm/dd hh:mm:ss).\n");
+ ladmin_log
+ ("Invalid format for the date/time ('timeset' command)."
+ RETCODE);
+ }
+ return 102;
+ }
+
+ if (atoi (date) == 0)
+ {
+ connect_until_time = 0;
+ }
+ else
+ {
+ if (year < 70)
+ {
+ year = year + 100;
+ }
+ if (year >= 1900)
+ {
+ year = year - 1900;
+ }
+ if (month < 1 || month > 12)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez un mois correct svp (entre 1 et 12).\n");
+ ladmin_log ("Mois incorrect pour la date ('timeset' command)."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please give a correct value for the month (from 1 to 12).\n");
+ ladmin_log ("Invalid month for the date ('timeset' command)."
+ RETCODE);
+ }
+ return 102;
+ }
+ month = month - 1;
+ if (day < 1 || day > 31)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez un jour correct svp (entre 1 et 31).\n");
+ ladmin_log ("Jour incorrect pour la date ('timeset' command)."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please give a correct value for the day (from 1 to 31).\n");
+ ladmin_log ("Invalid day for the date ('timeset' command)."
+ RETCODE);
+ }
+ return 102;
+ }
+ if (((month == 3 || month == 5 || month == 8 || month == 10)
+ && day > 30) || (month == 1 && day > 29))
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Entrez un jour correct en fonction du mois (%d) svp.\n",
+ month);
+ ladmin_log
+ ("Jour incorrect pour ce mois correspondant ('timeset' command)."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please give a correct value for a day of this month (%d).\n",
+ month);
+ ladmin_log ("Invalid day for this month ('timeset' command)."
+ RETCODE);
+ }
+ return 102;
+ }
+ if (hour < 0 || hour > 23)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez une heure correcte svp (entre 0 et 23).\n");
+ ladmin_log
+ ("Heure incorrecte pour l'heure ('timeset' command)."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please give a correct value for the hour (from 0 to 23).\n");
+ ladmin_log ("Invalid hour for the time ('timeset' command)."
+ RETCODE);
+ }
+ return 102;
+ }
+ if (minute < 0 || minute > 59)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Entrez des minutes correctes svp (entre 0 et 59).\n");
+ ladmin_log
+ ("Minute incorrecte pour l'heure ('timeset' command)."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please give a correct value for the minutes (from 0 to 59).\n");
+ ladmin_log ("Invalid minute for the time ('timeset' command)."
+ RETCODE);
+ }
+ return 102;
+ }
+ if (second < 0 || second > 59)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Entrez des secondes correctes svp (entre 0 et 59).\n");
+ ladmin_log
+ ("Seconde incorrecte pour l'heure ('timeset' command)."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Please give a correct value for the seconds (from 0 to 59).\n");
+ ladmin_log ("Invalid second for the time ('timeset' command)."
+ RETCODE);
+ }
+ return 102;
+ }
+ tmtime->tm_year = year;
+ tmtime->tm_mon = month;
+ tmtime->tm_mday = day;
+ tmtime->tm_hour = hour;
+ tmtime->tm_min = minute;
+ tmtime->tm_sec = second;
+ tmtime->tm_isdst = -1; // -1: no winter/summer time modification
+ connect_until_time = timegm (tmtime);
+ if (connect_until_time == -1)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Date incorrecte.\n");
+ printf
+ ("Ajoutez 0 ou une date et une heure svp (format: 0 ou aaaa/mm/jj hh:mm:ss).\n");
+ ladmin_log ("Date incorrecte. ('timeset' command)." RETCODE);
+ }
+ else
+ {
+ printf ("Invalid date.\n");
+ printf
+ ("Please add 0 or a date and a time (format: 0 or yyyy/mm/dd hh:mm:ss).\n");
+ ladmin_log ("Invalid date. ('timeset' command)." RETCODE);
+ }
+ return 102;
+ }
+ }
+
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log
+ ("Envoi d'un requête au serveur de logins pour fixer une date limite d'utilisation."
+ RETCODE);
+ }
+ else
+ {
+ ladmin_log ("Request to login-server to set a time limit." RETCODE);
+ }
+
+ WFIFOW (login_fd, 0) = 0x7948;
+ memcpy (WFIFOP (login_fd, 2), name, 24);
+ WFIFOL (login_fd, 26) = (int) connect_until_time;
+ WFIFOSET (login_fd, 30);
+ bytes_to_read = 1;
+
+ return 0;
}
//------------------------------------------------------------------------------
// Sub-function: Asking to displaying information about an account (by its name)
//------------------------------------------------------------------------------
-int whoaccount(char* param) {
- char name[1023];
-
- memset(name, '\0', sizeof(name));
-
- if (strlen(param) == 0 ||
- (sscanf(param, "\"%[^\"]\"", name) < 1 &&
- sscanf(param, "'%[^']'", name) < 1 &&
- sscanf(param, "%[^\r\n]", name) < 1) ||
- strlen(name) == 0) {
- if (defaultlanguage == 'F') {
- printf("Entrez un nom de compte svp.\n");
- printf("<exemple> who nomtest\n");
- ladmin_log("Aucun nom n'a été donné pour trouver le compte." RETCODE);
- } else {
- printf("Please input an account name.\n");
- printf("<example> who testname\n");
- ladmin_log("No name was given to found the account." RETCODE);
- }
- return 136;
- }
- if (verify_accountname(name) == 0) {
- return 102;
- }
-
- if (defaultlanguage == 'F') {
- ladmin_log("Envoi d'un requête au serveur de logins pour obtenir le information d'un compte (par le nom)." RETCODE);
- } else {
- ladmin_log("Request to login-server to obtain information about an account (by its name)." RETCODE);
- }
-
- WFIFOW(login_fd,0) = 0x7952;
- memcpy(WFIFOP(login_fd,2), name, 24);
- WFIFOSET(login_fd,26);
- bytes_to_read = 1;
-
- return 0;
+int whoaccount (char *param)
+{
+ char name[1023];
+
+ memset (name, '\0', sizeof (name));
+
+ if (strlen (param) == 0 ||
+ (sscanf (param, "\"%[^\"]\"", name) < 1 &&
+ sscanf (param, "'%[^']'", name) < 1 &&
+ sscanf (param, "%[^\r\n]", name) < 1) || strlen (name) == 0)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Entrez un nom de compte svp.\n");
+ printf ("<exemple> who nomtest\n");
+ ladmin_log ("Aucun nom n'a été donné pour trouver le compte."
+ RETCODE);
+ }
+ else
+ {
+ printf ("Please input an account name.\n");
+ printf ("<example> who testname\n");
+ ladmin_log ("No name was given to found the account." RETCODE);
+ }
+ return 136;
+ }
+ if (verify_accountname (name) == 0)
+ {
+ return 102;
+ }
+
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log
+ ("Envoi d'un requête au serveur de logins pour obtenir le information d'un compte (par le nom)."
+ RETCODE);
+ }
+ else
+ {
+ ladmin_log
+ ("Request to login-server to obtain information about an account (by its name)."
+ RETCODE);
+ }
+
+ WFIFOW (login_fd, 0) = 0x7952;
+ memcpy (WFIFOP (login_fd, 2), name, 24);
+ WFIFOSET (login_fd, 26);
+ bytes_to_read = 1;
+
+ return 0;
}
//--------------------------------------------------------
// Sub-function: Asking of the version of the login-server
//--------------------------------------------------------
-int checkloginversion() {
- if (defaultlanguage == 'F')
- ladmin_log("Envoi d'un requête au serveur de logins pour obtenir sa version." RETCODE);
- else
- ladmin_log("Request to login-server to obtain its version." RETCODE);
-
- WFIFOW(login_fd,0) = 0x7530;
- WFIFOSET(login_fd,2);
- bytes_to_read = 1;
-
- return 0;
+int checkloginversion ()
+{
+ if (defaultlanguage == 'F')
+ ladmin_log
+ ("Envoi d'un requête au serveur de logins pour obtenir sa version."
+ RETCODE);
+ else
+ ladmin_log ("Request to login-server to obtain its version." RETCODE);
+
+ WFIFOW (login_fd, 0) = 0x7530;
+ WFIFOSET (login_fd, 2);
+ bytes_to_read = 1;
+
+ return 0;
}
//---------------------------------------------
@@ -3063,1371 +4408,2243 @@ int checkloginversion() {
// this function wait until user type a command
// and analyse the command.
//---------------------------------------------
-int prompt() {
- int i, j;
- char buf[1024];
- char *p;
-
- // while we don't wait new packets
- while (bytes_to_read == 0) {
- // for help with the console colors look here:
- // http://www.edoceo.com/liberum/?doc=printf-with-color
- // some code explanation (used here):
- // \033[2J : clear screen and go up/left (0, 0 position)
- // \033[K : clear line from actual position to end of the line
- // \033[0m : reset color parameter
- // \033[1m : use bold for font
- Iprintf("\n");
- if (defaultlanguage == 'F') {
- Iprintf("\033[32mPour afficher les commandes, tapez 'Entrée'.\033[0m\n");
- } else
- Iprintf("\033[32mTo list the commands, type 'enter'.\033[0m\n");
- Iprintf("\033[0;36mLadmin-> \033[0m");
- Iprintf("\033[1m");
- fflush(stdout);
-
- // get command and parameter
- memset(buf, '\0', sizeof(buf));
- fflush(stdin);
- fgets(buf, 1023, stdin);
- buf[1023] = '\0';
-
- Iprintf("\033[0m");
- fflush(stdout);
-
- if (!eathena_interactive_session && !strlen(buf))
- exit(0);
-
- // remove final \n
- if((p = strrchr(buf, '\n')) != NULL)
- p[0] = '\0';
- // remove all control char
- for (i = 0; buf[i]; i++)
- if (buf[i] < 32) {
- // remove cursor control.
- if (buf[i] == 27 && buf[i+1] == '[' &&
- (buf[i+2] == 'H' || // home position (cursor)
- buf[i+2] == 'J' || // clear screen
- buf[i+2] == 'A' || // up 1 line
- buf[i+2] == 'B' || // down 1 line
- buf[i+2] == 'C' || // right 1 position
- buf[i+2] == 'D' || // left 1 position
- buf[i+2] == 'G')) { // center cursor (windows)
- for (j = i; buf[j]; j++)
- buf[j] = buf[j+3];
- } else if (buf[i] == 27 && buf[i+1] == '[' && buf[i+2] == '2' && buf[i+3] == 'J') { // clear screen
- for (j = i; buf[j]; j++)
- buf[j] = buf[j+4];
- } else if (buf[i] == 27 && buf[i+1] == '[' && buf[i+3] == '~' &&
- (buf[i+2] == '1' || // home (windows)
- buf[i+2] == '2' || // insert (windows)
- buf[i+2] == '3' || // del (windows)
- buf[i+2] == '4' || // end (windows)
- buf[i+2] == '5' || // pgup (windows)
- buf[i+2] == '6')) { // pgdown (windows)
- for (j = i; buf[j]; j++)
- buf[j] = buf[j+4];
- } else {
- // remove other control char.
- for (j = i; buf[j]; j++)
- buf[j] = buf[j+1];
- }
- i--;
- }
-
- // extract command name and parameters
- memset(command, '\0', sizeof(command));
- memset(parameters, '\0', sizeof(parameters));
- sscanf(buf, "%1023s %[^\n]", command, parameters);
- command[1023] = '\0';
- parameters[1023] = '\0';
-
- // lowercase for command line
- for (i = 0; command[i]; i++)
- command[i] = tolower(command[i]);
-
- if (command[0] == '?' || strlen(command) == 0) {
- if (defaultlanguage == 'F') {
- strcpy(buf, "aide");
- strcpy(command, "aide");
- } else {
- strcpy(buf, "help");
- strcpy(command, "help");
- }
- }
-
- // Analyse of the command
- check_command(command); // give complete name to the command
+int prompt ()
+{
+ int i, j;
+ char buf[1024];
+ char *p;
+
+ // while we don't wait new packets
+ while (bytes_to_read == 0)
+ {
+ // for help with the console colors look here:
+ // http://www.edoceo.com/liberum/?doc=printf-with-color
+ // some code explanation (used here):
+ // \033[2J : clear screen and go up/left (0, 0 position)
+ // \033[K : clear line from actual position to end of the line
+ // \033[0m : reset color parameter
+ // \033[1m : use bold for font
+ Iprintf ("\n");
+ if (defaultlanguage == 'F')
+ {
+ Iprintf
+ ("\033[32mPour afficher les commandes, tapez 'Entrée'.\033[0m\n");
+ }
+ else
+ Iprintf ("\033[32mTo list the commands, type 'enter'.\033[0m\n");
+ Iprintf ("\033[0;36mLadmin-> \033[0m");
+ Iprintf ("\033[1m");
+ fflush (stdout);
+
+ // get command and parameter
+ memset (buf, '\0', sizeof (buf));
+ fflush (stdin);
+ fgets (buf, 1023, stdin);
+ buf[1023] = '\0';
+
+ Iprintf ("\033[0m");
+ fflush (stdout);
+
+ if (!eathena_interactive_session && !strlen (buf))
+ exit (0);
+
+ // remove final \n
+ if ((p = strrchr (buf, '\n')) != NULL)
+ p[0] = '\0';
+ // remove all control char
+ for (i = 0; buf[i]; i++)
+ if (buf[i] < 32)
+ {
+ // remove cursor control.
+ if (buf[i] == 27 && buf[i + 1] == '[' && (buf[i + 2] == 'H' || // home position (cursor)
+ buf[i + 2] == 'J' || // clear screen
+ buf[i + 2] == 'A' || // up 1 line
+ buf[i + 2] == 'B' || // down 1 line
+ buf[i + 2] == 'C' || // right 1 position
+ buf[i + 2] == 'D' || // left 1 position
+ buf[i + 2] == 'G'))
+ { // center cursor (windows)
+ for (j = i; buf[j]; j++)
+ buf[j] = buf[j + 3];
+ }
+ else if (buf[i] == 27 && buf[i + 1] == '['
+ && buf[i + 2] == '2' && buf[i + 3] == 'J')
+ { // clear screen
+ for (j = i; buf[j]; j++)
+ buf[j] = buf[j + 4];
+ }
+ else if (buf[i] == 27 && buf[i + 1] == '[' && buf[i + 3] == '~' && (buf[i + 2] == '1' || // home (windows)
+ buf[i + 2] == '2' || // insert (windows)
+ buf[i + 2] == '3' || // del (windows)
+ buf[i + 2] == '4' || // end (windows)
+ buf[i + 2] == '5' || // pgup (windows)
+ buf
+ [i
+ +
+ 2]
+ ==
+ '6'))
+ { // pgdown (windows)
+ for (j = i; buf[j]; j++)
+ buf[j] = buf[j + 4];
+ }
+ else
+ {
+ // remove other control char.
+ for (j = i; buf[j]; j++)
+ buf[j] = buf[j + 1];
+ }
+ i--;
+ }
+
+ // extract command name and parameters
+ memset (command, '\0', sizeof (command));
+ memset (parameters, '\0', sizeof (parameters));
+ sscanf (buf, "%1023s %[^\n]", command, parameters);
+ command[1023] = '\0';
+ parameters[1023] = '\0';
+
+ // lowercase for command line
+ for (i = 0; command[i]; i++)
+ command[i] = tolower (command[i]);
+
+ if (command[0] == '?' || strlen (command) == 0)
+ {
+ if (defaultlanguage == 'F')
+ {
+ strcpy (buf, "aide");
+ strcpy (command, "aide");
+ }
+ else
+ {
+ strcpy (buf, "help");
+ strcpy (command, "help");
+ }
+ }
- if (strlen(parameters) == 0) {
- if (defaultlanguage == 'F') {
- ladmin_log("Commande: '%s' (sans paramètre)" RETCODE, command, parameters);
- } else {
- ladmin_log("Command: '%s' (without parameters)" RETCODE, command, parameters);
- }
- } else {
- if (defaultlanguage == 'F') {
- ladmin_log("Commande: '%s', paramètres: '%s'" RETCODE, command, parameters);
- } else {
- ladmin_log("Command: '%s', parameters: '%s'" RETCODE, command, parameters);
- }
- }
+ // Analyse of the command
+ check_command (command); // give complete name to the command
+
+ if (strlen (parameters) == 0)
+ {
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log ("Commande: '%s' (sans paramètre)" RETCODE,
+ command, parameters);
+ }
+ else
+ {
+ ladmin_log ("Command: '%s' (without parameters)" RETCODE,
+ command, parameters);
+ }
+ }
+ else
+ {
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log ("Commande: '%s', paramètres: '%s'" RETCODE,
+ command, parameters);
+ }
+ else
+ {
+ ladmin_log ("Command: '%s', parameters: '%s'" RETCODE,
+ command, parameters);
+ }
+ }
- // Analyse of the command
+ // Analyse of the command
// help
- if (strcmp(command, "aide") == 0) {
- display_help(parameters, 1); // 1: french
- } else if (strcmp(command, "help") == 0 ) {
- display_help(parameters, 0); // 0: english
+ if (strcmp (command, "aide") == 0)
+ {
+ display_help (parameters, 1); // 1: french
+ }
+ else if (strcmp (command, "help") == 0)
+ {
+ display_help (parameters, 0); // 0: english
// general commands
- } else if (strcmp(command, "add") == 0) {
- addaccount(parameters, 0); // 0: no email
- } else if (strcmp(command, "ban") == 0) {
- banaccount(parameters);
- } else if (strcmp(command, "banadd") == 0) {
- banaddaccount(parameters);
- } else if (strcmp(command, "banset") == 0) {
- bansetaccount(parameters);
- } else if (strcmp(command, "block") == 0) {
- blockaccount(parameters);
- } else if (strcmp(command, "check") == 0) {
- checkaccount(parameters);
- } else if (strcmp(command, "create") == 0) {
- addaccount(parameters, 1); // 1: with email
- } else if (strcmp(command, "delete") == 0) {
- delaccount(parameters);
- } else if (strcmp(command, "email") == 0) {
- changeemail(parameters);
- } else if (strcmp(command, "getcount") == 0) {
- getlogincount();
- } else if (strcmp(command, "gm") == 0) {
- changegmlevel(parameters);
- } else if (strcmp(command, "id") == 0) {
- idaccount(parameters);
- } else if (strcmp(command, "info") == 0) {
- infoaccount(atoi(parameters));
- } else if (strcmp(command, "kami") == 0) {
- sendbroadcast(0, parameters); // flag for normal
- } else if (strcmp(command, "kamib") == 0) {
- sendbroadcast(0x10, parameters); // flag for blue
- } else if (strcmp(command, "language") == 0) {
- changelanguage(parameters);
- } else if (strcmp(command, "itemfrob") == 0) {
- itemfrob(parameters); // 0: to list all
- } else if (strcmp(command, "list") == 0) {
- listaccount(parameters, 0); // 0: to list all
- } else if (strcmp(command, "listban") == 0) {
- listaccount(parameters, 3); // 3: to list only accounts with state or bannished
- } else if (strcmp(command, "listgm") == 0) {
- listaccount(parameters, 1); // 1: to list only GM
- } else if (strcmp(command, "listok") == 0) {
- listaccount(parameters, 4); // 4: to list only accounts without state and not bannished
- } else if (strcmp(command, "memo") == 0) {
- changememo(parameters);
- } else if (strcmp(command, "name") == 0) {
- nameaccount(atoi(parameters));
- } else if (strcmp(command, "password") == 0) {
- changepasswd(parameters);
- } else if (strcmp(command, "reloadgm") == 0) {
- reloadGM();
- } else if (strcmp(command, "search") == 0) { // no regex in C version
- listaccount(parameters, 2); // 2: to list with pattern
- } else if (strcmp(command, "sex") == 0) {
- changesex(parameters);
- } else if (strcmp(command, "state") == 0) {
- changestate(parameters);
- } else if (strcmp(command, "timeadd") == 0) {
- timeaddaccount(parameters);
- } else if (strcmp(command, "timeset") == 0) {
- timesetaccount(parameters);
- } else if (strcmp(command, "unban") == 0) {
- unbanaccount(parameters);
- } else if (strcmp(command, "unblock") == 0) {
- unblockaccount(parameters);
- } else if (strcmp(command, "version") == 0) {
- checkloginversion();
- } else if (strcmp(command, "who") == 0) {
- whoaccount(parameters);
+ }
+ else if (strcmp (command, "add") == 0)
+ {
+ addaccount (parameters, 0); // 0: no email
+ }
+ else if (strcmp (command, "ban") == 0)
+ {
+ banaccount (parameters);
+ }
+ else if (strcmp (command, "banadd") == 0)
+ {
+ banaddaccount (parameters);
+ }
+ else if (strcmp (command, "banset") == 0)
+ {
+ bansetaccount (parameters);
+ }
+ else if (strcmp (command, "block") == 0)
+ {
+ blockaccount (parameters);
+ }
+ else if (strcmp (command, "check") == 0)
+ {
+ checkaccount (parameters);
+ }
+ else if (strcmp (command, "create") == 0)
+ {
+ addaccount (parameters, 1); // 1: with email
+ }
+ else if (strcmp (command, "delete") == 0)
+ {
+ delaccount (parameters);
+ }
+ else if (strcmp (command, "email") == 0)
+ {
+ changeemail (parameters);
+ }
+ else if (strcmp (command, "getcount") == 0)
+ {
+ getlogincount ();
+ }
+ else if (strcmp (command, "gm") == 0)
+ {
+ changegmlevel (parameters);
+ }
+ else if (strcmp (command, "id") == 0)
+ {
+ idaccount (parameters);
+ }
+ else if (strcmp (command, "info") == 0)
+ {
+ infoaccount (atoi (parameters));
+ }
+ else if (strcmp (command, "kami") == 0)
+ {
+ sendbroadcast (0, parameters); // flag for normal
+ }
+ else if (strcmp (command, "kamib") == 0)
+ {
+ sendbroadcast (0x10, parameters); // flag for blue
+ }
+ else if (strcmp (command, "language") == 0)
+ {
+ changelanguage (parameters);
+ }
+ else if (strcmp (command, "itemfrob") == 0)
+ {
+ itemfrob (parameters); // 0: to list all
+ }
+ else if (strcmp (command, "list") == 0)
+ {
+ listaccount (parameters, 0); // 0: to list all
+ }
+ else if (strcmp (command, "listban") == 0)
+ {
+ listaccount (parameters, 3); // 3: to list only accounts with state or bannished
+ }
+ else if (strcmp (command, "listgm") == 0)
+ {
+ listaccount (parameters, 1); // 1: to list only GM
+ }
+ else if (strcmp (command, "listok") == 0)
+ {
+ listaccount (parameters, 4); // 4: to list only accounts without state and not bannished
+ }
+ else if (strcmp (command, "memo") == 0)
+ {
+ changememo (parameters);
+ }
+ else if (strcmp (command, "name") == 0)
+ {
+ nameaccount (atoi (parameters));
+ }
+ else if (strcmp (command, "password") == 0)
+ {
+ changepasswd (parameters);
+ }
+ else if (strcmp (command, "reloadgm") == 0)
+ {
+ reloadGM ();
+ }
+ else if (strcmp (command, "search") == 0)
+ { // no regex in C version
+ listaccount (parameters, 2); // 2: to list with pattern
+ }
+ else if (strcmp (command, "sex") == 0)
+ {
+ changesex (parameters);
+ }
+ else if (strcmp (command, "state") == 0)
+ {
+ changestate (parameters);
+ }
+ else if (strcmp (command, "timeadd") == 0)
+ {
+ timeaddaccount (parameters);
+ }
+ else if (strcmp (command, "timeset") == 0)
+ {
+ timesetaccount (parameters);
+ }
+ else if (strcmp (command, "unban") == 0)
+ {
+ unbanaccount (parameters);
+ }
+ else if (strcmp (command, "unblock") == 0)
+ {
+ unblockaccount (parameters);
+ }
+ else if (strcmp (command, "version") == 0)
+ {
+ checkloginversion ();
+ }
+ else if (strcmp (command, "who") == 0)
+ {
+ whoaccount (parameters);
// quit
- } else if (strcmp(command, "quit") == 0 ||
- strcmp(command, "exit") == 0 ||
- strcmp(command, "end") == 0) {
- if (defaultlanguage == 'F') {
- printf("Au revoir.\n");
- } else {
- printf("Bye.\n");
- }
- exit(0);
+ }
+ else if (strcmp (command, "quit") == 0 ||
+ strcmp (command, "exit") == 0 ||
+ strcmp (command, "end") == 0)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Au revoir.\n");
+ }
+ else
+ {
+ printf ("Bye.\n");
+ }
+ exit (0);
// unknown command
- } else {
- if (defaultlanguage == 'F') {
- printf("Commande inconnue [%s].\n", buf);
- ladmin_log("Commande inconnue [%s]." RETCODE, buf);
- } else {
- printf("Unknown command [%s].\n", buf);
- ladmin_log("Unknown command [%s]." RETCODE, buf);
- }
- }
- }
+ }
+ else
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Commande inconnue [%s].\n", buf);
+ ladmin_log ("Commande inconnue [%s]." RETCODE, buf);
+ }
+ else
+ {
+ printf ("Unknown command [%s].\n", buf);
+ ladmin_log ("Unknown command [%s]." RETCODE, buf);
+ }
+ }
+ }
- return 0;
+ return 0;
}
//-------------------------------------------------------------
// Function: Parse receiving informations from the login-server
//-------------------------------------------------------------
-int parse_fromlogin(int fd) {
- struct char_session_data *sd;
-
- if (session[fd]->eof) {
- if (defaultlanguage == 'F') {
- printf("Impossible de se connecter au serveur de login [%s:%d] !\n", loginserverip, loginserverport);
- ladmin_log("Impossible de se connecter au serveur de login [%s:%d] !" RETCODE, loginserverip, loginserverport);
- } else {
- printf("Impossible to have a connection with the login-server [%s:%d] !\n", loginserverip, loginserverport);
- ladmin_log("Impossible to have a connection with the login-server [%s:%d] !" RETCODE, loginserverip, loginserverport);
- }
- close(fd);
- delete_session(fd);
- exit (0);
- }
-
-// printf("parse_fromlogin : %d %d %d\n", fd, RFIFOREST(fd), RFIFOW(fd,0));
- sd = session[fd]->session_data;
-
- while(RFIFOREST(fd) >= 2) {
- switch(RFIFOW(fd,0)) {
- case 0x7919: // answer of a connection request
- if (RFIFOREST(fd) < 3)
- return 0;
- if (RFIFOB(fd,2) != 0) {
- if (defaultlanguage == 'F') {
- printf("Erreur de login:\n");
- printf(" - mot de passe incorrect,\n");
- printf(" - système d'administration non activé, ou\n");
- printf(" - IP non autorisée.\n");
- ladmin_log("Erreur de login: mot de passe incorrect, système d'administration non activé, ou IP non autorisée." RETCODE);
- } else {
- printf("Error at login:\n");
- printf(" - incorrect password,\n");
- printf(" - administration system not activated, or\n");
- printf(" - unauthorised IP.\n");
- ladmin_log("Error at login: incorrect password, administration system not activated, or unauthorised IP." RETCODE);
- }
- session[fd]->eof = 1;
- //bytes_to_read = 1; // not stop at prompt
- } else {
- if (defaultlanguage == 'F') {
- printf("Connexion établie.\n");
- ladmin_log("Connexion établie." RETCODE);
- printf("Lecture de la version du serveur de login...\n");
- ladmin_log("Lecture de la version du serveur de login..." RETCODE);
- } else {
- Iprintf("Established connection.\n");
- ladmin_log("Established connection." RETCODE);
- Iprintf("Reading of the version of the login-server...\n");
- ladmin_log("Reading of the version of the login-server..." RETCODE);
- }
- //bytes_to_read = 1; // unchanged
- checkloginversion();
- }
- RFIFOSKIP(fd,3);
- break;
+int parse_fromlogin (int fd)
+{
+ struct char_session_data *sd;
+
+ if (session[fd]->eof)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Impossible de se connecter au serveur de login [%s:%d] !\n",
+ loginserverip, loginserverport);
+ ladmin_log
+ ("Impossible de se connecter au serveur de login [%s:%d] !"
+ RETCODE, loginserverip, loginserverport);
+ }
+ else
+ {
+ printf
+ ("Impossible to have a connection with the login-server [%s:%d] !\n",
+ loginserverip, loginserverport);
+ ladmin_log
+ ("Impossible to have a connection with the login-server [%s:%d] !"
+ RETCODE, loginserverip, loginserverport);
+ }
+ close (fd);
+ delete_session (fd);
+ exit (0);
+ }
+
+// printf("parse_fromlogin : %d %d %d\n", fd, RFIFOREST(fd), RFIFOW(fd,0));
+ sd = session[fd]->session_data;
+
+ while (RFIFOREST (fd) >= 2)
+ {
+ switch (RFIFOW (fd, 0))
+ {
+ case 0x7919: // answer of a connection request
+ if (RFIFOREST (fd) < 3)
+ return 0;
+ if (RFIFOB (fd, 2) != 0)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Erreur de login:\n");
+ printf (" - mot de passe incorrect,\n");
+ printf
+ (" - système d'administration non activé, ou\n");
+ printf (" - IP non autorisée.\n");
+ ladmin_log
+ ("Erreur de login: mot de passe incorrect, système d'administration non activé, ou IP non autorisée."
+ RETCODE);
+ }
+ else
+ {
+ printf ("Error at login:\n");
+ printf (" - incorrect password,\n");
+ printf
+ (" - administration system not activated, or\n");
+ printf (" - unauthorised IP.\n");
+ ladmin_log
+ ("Error at login: incorrect password, administration system not activated, or unauthorised IP."
+ RETCODE);
+ }
+ session[fd]->eof = 1;
+ //bytes_to_read = 1; // not stop at prompt
+ }
+ else
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Connexion établie.\n");
+ ladmin_log ("Connexion établie." RETCODE);
+ printf
+ ("Lecture de la version du serveur de login...\n");
+ ladmin_log
+ ("Lecture de la version du serveur de login..."
+ RETCODE);
+ }
+ else
+ {
+ Iprintf ("Established connection.\n");
+ ladmin_log ("Established connection." RETCODE);
+ Iprintf
+ ("Reading of the version of the login-server...\n");
+ ladmin_log
+ ("Reading of the version of the login-server..."
+ RETCODE);
+ }
+ //bytes_to_read = 1; // unchanged
+ checkloginversion ();
+ }
+ RFIFOSKIP (fd, 3);
+ break;
#ifdef PASSWORDENC
- case 0x01dc: // answer of a coding key request
- if (RFIFOREST(fd) < 4 || RFIFOREST(fd) < RFIFOW(fd,2))
- return 0;
- {
- char md5str[64] = "", md5bin[32], md5key[RFIFOW(fd,2) - 4 + 1];
- memcpy(md5key, RFIFOP(fd,4), RFIFOW(fd,2) - 4);
- md5key[sizeof(md5key)-1] = '0';
- if (passenc == 1) {
- strncpy(md5str, RFIFOP(fd,4), RFIFOW(fd,2) - 4);
- strcat(md5str, loginserveradminpassword);
- } else if (passenc == 2) {
- strncpy(md5str, loginserveradminpassword, sizeof(loginserveradminpassword));
- strcat(md5str, RFIFOP(fd,4));
- }
- MD5_String2binary(md5str, md5bin);
- WFIFOW(login_fd,0) = 0x7918; // Request for administation login (encrypted password)
- WFIFOW(login_fd,2) = passenc; // Encrypted type
- memcpy(WFIFOP(login_fd,4), md5bin, 16);
- WFIFOSET(login_fd,20);
- if (defaultlanguage == 'F') {
- Iprintf("Réception de la clef MD5.\n");
- ladmin_log("Réception de la clef MD5." RETCODE);
- Iprintf("Envoi du mot de passe crypté...\n");
- ladmin_log("Envoi du mot de passe crypté..." RETCODE);
- } else {
- Iprintf("Receiving of the MD5 key.\n");
- ladmin_log("Receiving of the MD5 key." RETCODE);
- Iprintf("Sending of the encrypted password...\n");
- ladmin_log("Sending of the encrypted password..." RETCODE);
- }
- }
- bytes_to_read = 1;
- RFIFOSKIP(fd,RFIFOW(fd,2));
- break;
+ case 0x01dc: // answer of a coding key request
+ if (RFIFOREST (fd) < 4 || RFIFOREST (fd) < RFIFOW (fd, 2))
+ return 0;
+ {
+ char md5str[64] =
+ "", md5bin[32], md5key[RFIFOW (fd, 2) - 4 + 1];
+ memcpy (md5key, RFIFOP (fd, 4), RFIFOW (fd, 2) - 4);
+ md5key[sizeof (md5key) - 1] = '0';
+ if (passenc == 1)
+ {
+ strncpy (md5str, RFIFOP (fd, 4), RFIFOW (fd, 2) - 4);
+ strcat (md5str, loginserveradminpassword);
+ }
+ else if (passenc == 2)
+ {
+ strncpy (md5str, loginserveradminpassword,
+ sizeof (loginserveradminpassword));
+ strcat (md5str, RFIFOP (fd, 4));
+ }
+ MD5_String2binary (md5str, md5bin);
+ WFIFOW (login_fd, 0) = 0x7918; // Request for administation login (encrypted password)
+ WFIFOW (login_fd, 2) = passenc; // Encrypted type
+ memcpy (WFIFOP (login_fd, 4), md5bin, 16);
+ WFIFOSET (login_fd, 20);
+ if (defaultlanguage == 'F')
+ {
+ Iprintf ("Réception de la clef MD5.\n");
+ ladmin_log ("Réception de la clef MD5." RETCODE);
+ Iprintf ("Envoi du mot de passe crypté...\n");
+ ladmin_log ("Envoi du mot de passe crypté..."
+ RETCODE);
+ }
+ else
+ {
+ Iprintf ("Receiving of the MD5 key.\n");
+ ladmin_log ("Receiving of the MD5 key." RETCODE);
+ Iprintf ("Sending of the encrypted password...\n");
+ ladmin_log ("Sending of the encrypted password..."
+ RETCODE);
+ }
+ }
+ bytes_to_read = 1;
+ RFIFOSKIP (fd, RFIFOW (fd, 2));
+ break;
#endif
- case 0x7531: // Displaying of the version of the login-server
- if (RFIFOREST(fd) < 10)
- return 0;
- Iprintf(" Login-Server [%s:%d]\n", loginserverip, loginserverport);
- if (((int)RFIFOB(login_fd,5)) == 0) {
- Iprintf(" eAthena version stable-%d.%d", (int)RFIFOB(login_fd,2), (int)RFIFOB(login_fd,3));
- } else {
- Iprintf(" eAthena version dev-%d.%d", (int)RFIFOB(login_fd,2), (int)RFIFOB(login_fd,3));
- }
- if (((int)RFIFOB(login_fd,4)) == 0)
- Iprintf(" revision %d", (int)RFIFOB(login_fd,4));
- if (((int)RFIFOB(login_fd,6)) == 0) {
- Iprintf("%d.\n", RFIFOW(login_fd,8));
- } else
- Iprintf("-mod%d.\n", RFIFOW(login_fd,8));
- bytes_to_read = 0;
- RFIFOSKIP(fd,10);
- break;
-
- case 0x7925: // Itemfrob-OK
- RFIFOSKIP(fd, 2);
- bytes_to_read = 0;
- break;
-
- case 0x7921: // Displaying of the list of accounts
- if (RFIFOREST(fd) < 4 || RFIFOREST(fd) < RFIFOW(fd,2))
- return 0;
- if (RFIFOW(fd,2) < 5) {
- if (defaultlanguage == 'F') {
- ladmin_log(" Réception d'une liste des comptes vide." RETCODE);
- if (list_count == 0)
- printf("Aucun compte trouvé.\n");
- else if (list_count == 1)
- printf("1 compte trouvé.\n");
- else
- printf("%d comptes trouvés.\n", list_count);
- } else {
- ladmin_log(" Receiving of a void accounts list." RETCODE);
- if (list_count == 0) {
- Iprintf("No account found.\n");
- } else if (list_count == 1) {
- Iprintf("1 account found.\n");
- } else
- Iprintf("%d accounts found.\n", list_count);
- }
- bytes_to_read = 0;
- } else {
- int i;
- if (defaultlanguage == 'F')
- ladmin_log(" Réception d'une liste des comptes." RETCODE);
- else
- ladmin_log(" Receiving of a accounts list." RETCODE);
- for(i = 4; i < RFIFOW(fd,2); i += 38) {
- int j;
- char userid[24];
- char lower_userid[24];
- memcpy(userid, RFIFOP(fd,i + 5), sizeof(userid));
- userid[sizeof(userid)-1] = '\0';
- memset(lower_userid, '\0', sizeof(lower_userid));
- for (j = 0; userid[j]; j++)
- lower_userid[j] = tolower(userid[j]);
- list_first = RFIFOL(fd,i) + 1;
- // here are checks...
- if (list_type == 0 ||
- (list_type == 1 && RFIFOB(fd,i+4) > 0) ||
- (list_type == 2 && strstr(lower_userid, parameters) != NULL) ||
- (list_type == 3 && RFIFOL(fd,i+34) != 0) ||
- (list_type == 4 && RFIFOL(fd,i+34) == 0)) {
- printf("%10d ", RFIFOL(fd,i));
- if (RFIFOB(fd,i+4) == 0)
- printf(" ");
- else
- printf("%2d ", (int)RFIFOB(fd,i+4));
- printf("%-24s", userid);
- if (defaultlanguage == 'F') {
- if (RFIFOB(fd,i+29) == 0)
- printf("%-5s ", "Femme");
- else if (RFIFOB(fd,i+29) == 1)
- printf("%-5s ", "Male");
- else
- printf("%-5s ", "Servr");
- } else {
- if (RFIFOB(fd,i+29) == 0)
- printf("%-5s ", "Femal");
- else if (RFIFOB(fd,i+29) == 1)
- printf("%-5s ", "Male");
- else
- printf("%-5s ", "Servr");
- }
- printf("%6d ", RFIFOL(fd,i+30));
- switch(RFIFOL(fd,i+34)) {
- case 0:
- if (defaultlanguage == 'F')
- printf("%-27s\n", "Compte Ok");
- else
- printf("%-27s\n", "Account OK");
- break;
- case 1:
- printf("%-27s\n", "Unregistered ID");
- break;
- case 2:
- printf("%-27s\n", "Incorrect Password");
- break;
- case 3:
- printf("%-27s\n", "This ID is expired");
- break;
- case 4:
- printf("%-27s\n", "Rejected from Server");
- break;
- case 5:
- printf("%-27s\n", "Blocked by the GM Team"); // You have been blocked by the GM Team
- break;
- case 6:
- printf("%-27s\n", "Your EXE file is too old"); // Your Game's EXE file is not the latest version
- break;
- case 7:
- printf("%-27s\n", "Banishement or");
- printf(" Prohibited to login until...\n"); // You are Prohibited to log in until %s
- break;
- case 8:
- printf("%-27s\n", "Server is over populated");
- break;
- case 9:
- printf("%-27s\n", "No MSG");
- break;
- default: // 100
- printf("%-27s\n", "This ID is totally erased"); // This ID has been totally erased
- break;
- }
- list_count++;
- }
- }
- // asking of the following acounts
- if (defaultlanguage == 'F')
- ladmin_log("Envoi d'un requête au serveur de logins pour obtenir la liste des comptes de %d à %d (complément)." RETCODE, list_first, list_last);
- else
- ladmin_log("Request to login-server to obtain the list of accounts from %d to %d (complement)." RETCODE, list_first, list_last);
- WFIFOW(login_fd,0) = 0x7920;
- WFIFOL(login_fd,2) = list_first;
- WFIFOL(login_fd,6) = list_last;
- WFIFOSET(login_fd,10);
- bytes_to_read = 1;
- }
- RFIFOSKIP(fd,RFIFOW(fd,2));
- break;
-
- case 0x7931: // Answer of login-server about an account creation
- if (RFIFOREST(fd) < 30)
- return 0;
- if (RFIFOL(fd,2) == -1) {
- if (defaultlanguage == 'F') {
- printf("Echec à la création du compte [%s]. Un compte identique existe déjà.\n", RFIFOP(fd,6));
- ladmin_log("Echec à la création du compte [%s]. Un compte identique existe déjà." RETCODE, RFIFOP(fd,6));
- } else {
- printf("Account [%s] creation failed. Same account already exists.\n", RFIFOP(fd,6));
- ladmin_log("Account [%s] creation failed. Same account already exists." RETCODE, RFIFOP(fd,6));
- }
- } else {
- if (defaultlanguage == 'F') {
- printf("Compte [%s] créé avec succès [id: %d].\n", RFIFOP(fd,6), RFIFOL(fd,2));
- ladmin_log("Compte [%s] créé avec succès [id: %d]." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2));
- } else {
- printf("Account [%s] is successfully created [id: %d].\n", RFIFOP(fd,6), RFIFOL(fd,2));
- ladmin_log("Account [%s] is successfully created [id: %d]." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2));
- }
- }
- bytes_to_read = 0;
- RFIFOSKIP(fd,30);
- break;
-
- case 0x7933: // Answer of login-server about an account deletion
- if (RFIFOREST(fd) < 30)
- return 0;
- if (RFIFOL(fd,2) == -1) {
- if (defaultlanguage == 'F') {
- printf("Echec de la suppression du compte [%s]. Le compte n'existe pas.\n", RFIFOP(fd,6));
- ladmin_log("Echec de la suppression du compte [%s]. Le compte n'existe pas." RETCODE, RFIFOP(fd,6));
- } else {
- printf("Account [%s] deletion failed. Account doesn't exist.\n", RFIFOP(fd,6));
- ladmin_log("Account [%s] deletion failed. Account doesn't exist." RETCODE, RFIFOP(fd,6));
- }
- } else {
- if (defaultlanguage == 'F') {
- printf("Compte [%s][id: %d] SUPPRIME avec succès.\n", RFIFOP(fd,6), RFIFOL(fd,2));
- ladmin_log("Compte [%s][id: %d] SUPPRIME avec succès." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2));
- } else {
- printf("Account [%s][id: %d] is successfully DELETED.\n", RFIFOP(fd,6), RFIFOL(fd,2));
- ladmin_log("Account [%s][id: %d] is successfully DELETED." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2));
- }
- }
- bytes_to_read = 0;
- RFIFOSKIP(fd,30);
- break;
-
- case 0x7935: // answer of the change of an account password
- if (RFIFOREST(fd) < 30)
- return 0;
- if (RFIFOL(fd,2) == -1) {
- if (defaultlanguage == 'F') {
- printf("Echec de la modification du mot de passe du compte [%s].\n", RFIFOP(fd,6));
- printf("Le compte [%s] n'existe pas.\n", RFIFOP(fd,6));
- ladmin_log("Echec de la modification du mot de passe du compte. Le compte [%s] n'existe pas." RETCODE, RFIFOP(fd,6));
- } else {
- printf("Account [%s] password changing failed.\n", RFIFOP(fd,6));
- printf("Account [%s] doesn't exist.\n", RFIFOP(fd,6));
- ladmin_log("Account password changing failed. The compte [%s] doesn't exist." RETCODE, RFIFOP(fd,6));
- }
- } else {
- if (defaultlanguage == 'F') {
- printf("Modification du mot de passe du compte [%s][id: %d] réussie.\n", RFIFOP(fd,6), RFIFOL(fd,2));
- ladmin_log("Modification du mot de passe du compte [%s][id: %d] réussie." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2));
- } else {
- printf("Account [%s][id: %d] password successfully changed.\n", RFIFOP(fd,6), RFIFOL(fd,2));
- ladmin_log("Account [%s][id: %d] password successfully changed." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2));
- }
- }
- bytes_to_read = 0;
- RFIFOSKIP(fd,30);
- break;
-
- case 0x7937: // answer of the change of an account state
- if (RFIFOREST(fd) < 34)
- return 0;
- if (RFIFOL(fd,2) == -1) {
- if (defaultlanguage == 'F') {
- printf("Echec du changement du statut du compte [%s]. Le compte n'existe pas.\n", RFIFOP(fd,6));
- ladmin_log("Echec du changement du statut du compte [%s]. Le compte n'existe pas." RETCODE, RFIFOP(fd,6));
- } else {
- printf("Account [%s] state changing failed. Account doesn't exist.\n", RFIFOP(fd,6));
- ladmin_log("Account [%s] state changing failed. Account doesn't exist." RETCODE, RFIFOP(fd,6));
- }
- } else {
- char tmpstr[256];
- if (defaultlanguage == 'F') {
- sprintf(tmpstr, "Statut du compte [%s] changé avec succès en [", RFIFOP(fd,6));
- } else {
- sprintf(tmpstr, "Account [%s] state successfully changed in [", RFIFOP(fd,6));
- }
- switch(RFIFOL(fd,30)) {
- case 0:
- if (defaultlanguage == 'F')
- strcat(tmpstr, "0: Compte Ok");
- else
- strcat(tmpstr, "0: Account OK");
- break;
- case 1:
- strcat(tmpstr, "1: Unregistered ID");
- break;
- case 2:
- strcat(tmpstr, "2: Incorrect Password");
- break;
- case 3:
- strcat(tmpstr, "3: This ID is expired");
- break;
- case 4:
- strcat(tmpstr, "4: Rejected from Server");
- break;
- case 5:
- strcat(tmpstr, "5: You have been blocked by the GM Team");
- break;
- case 6:
- strcat(tmpstr, "6: [Your Game's EXE file is not the latest version");
- break;
- case 7:
- strcat(tmpstr, "7: You are Prohibited to log in until...");
- break;
- case 8:
- strcat(tmpstr, "8: Server is jammed due to over populated");
- break;
- case 9:
- strcat(tmpstr, "9: No MSG");
- break;
- default: // 100
- strcat(tmpstr, "100: This ID is totally erased");
- break;
- }
- strcat(tmpstr, "]");
- printf("%s\n", tmpstr);
- ladmin_log("%s%s", tmpstr, RETCODE);
- }
- bytes_to_read = 0;
- RFIFOSKIP(fd,34);
- break;
-
- case 0x7939: // answer of the number of online players
- if (RFIFOREST(fd) < 4 || RFIFOREST(fd) < RFIFOW(fd,2))
- return 0;
- {
- // Get length of the received packet
- int i;
- char name[20];
- if (defaultlanguage == 'F') {
- ladmin_log(" Réception du nombre de joueurs en ligne." RETCODE);
- } else {
- ladmin_log(" Receiving of the number of online players." RETCODE);
- }
- // Read information of the servers
- if (RFIFOW(fd,2) < 5) {
- if (defaultlanguage == 'F') {
- printf(" Aucun serveur n'est connecté au login serveur.\n");
- } else {
- printf(" No server is connected to the login-server.\n");
- }
- } else {
- if (defaultlanguage == 'F') {
- printf(" Nombre de joueurs en ligne (serveur: nb):\n");
- } else {
- printf(" Number of online players (server: number).\n");
- }
- // Displaying of result
- for(i = 4; i < RFIFOW(fd,2); i += 32) {
- memcpy(name, RFIFOP(fd,i+6), sizeof(name));
- name[sizeof(name) - 1] = '\0';
- printf(" %-20s : %5d\n", name, RFIFOW(fd,i+26));
- }
- }
- }
- bytes_to_read = 0;
- RFIFOSKIP(fd,RFIFOW(fd,2));
- break;
-
- case 0x793b: // answer of the check of a password
- if (RFIFOREST(fd) < 30)
- return 0;
- if (RFIFOL(fd,2) == -1) {
- if (defaultlanguage == 'F') {
- printf("Le compte [%s] n'existe pas ou le mot de passe est incorrect.\n", RFIFOP(fd,6));
- ladmin_log("Le compte [%s] n'existe pas ou le mot de passe est incorrect." RETCODE, RFIFOP(fd,6));
- } else {
- printf("The account [%s] doesn't exist or the password is incorrect.\n", RFIFOP(fd,6));
- ladmin_log("The account [%s] doesn't exist or the password is incorrect." RETCODE, RFIFOP(fd,6));
- }
- } else {
- if (defaultlanguage == 'F') {
- printf("Le mot de passe donné correspond bien au compte [%s][id: %d].\n", RFIFOP(fd,6), RFIFOL(fd,2));
- ladmin_log("Le mot de passe donné correspond bien au compte [%s][id: %d]." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2));
- } else {
- printf("The proposed password is correct for the account [%s][id: %d].\n", RFIFOP(fd,6), RFIFOL(fd,2));
- ladmin_log("The proposed password is correct for the account [%s][id: %d]." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2));
- }
- }
- bytes_to_read = 0;
- RFIFOSKIP(fd,30);
- break;
-
- case 0x793d: // answer of the change of an account sex
- if (RFIFOREST(fd) < 30)
- return 0;
- if (RFIFOL(fd,2) == -1) {
- if (defaultlanguage == 'F') {
- printf("Echec de la modification du sexe du compte [%s].\n", RFIFOP(fd,6));
- printf("Le compte [%s] n'existe pas ou le sexe est déjà celui demandé.\n", RFIFOP(fd,6));
- ladmin_log("Echec de la modification du sexe du compte. Le compte [%s] n'existe pas ou le sexe est déjà celui demandé." RETCODE, RFIFOP(fd,6));
- } else {
- printf("Account [%s] sex changing failed.\n", RFIFOP(fd,6));
- printf("Account [%s] doesn't exist or the sex is already the good sex.\n", RFIFOP(fd,6));
- ladmin_log("Account sex changing failed. The compte [%s] doesn't exist or the sex is already the good sex." RETCODE, RFIFOP(fd,6));
- }
- } else {
- if (defaultlanguage == 'F') {
- printf("Sexe du compte [%s][id: %d] changé avec succès.\n", RFIFOP(fd,6), RFIFOL(fd,2));
- ladmin_log("Sexe du compte [%s][id: %d] changé avec succès." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2));
- } else {
- printf("Account [%s][id: %d] sex successfully changed.\n", RFIFOP(fd,6), RFIFOL(fd,2));
- ladmin_log("Account [%s][id: %d] sex successfully changed." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2));
- }
- }
- bytes_to_read = 0;
- RFIFOSKIP(fd,30);
- break;
-
- case 0x793f: // answer of the change of an account GM level
- if (RFIFOREST(fd) < 30)
- return 0;
- if (RFIFOL(fd,2) == -1) {
- if (defaultlanguage == 'F') {
- printf("Echec de la modification du niveau de GM du compte [%s].\n", RFIFOP(fd,6));
- printf("Le compte [%s] n'existe pas, le niveau de GM est déjà celui demandé\n", RFIFOP(fd,6));
- printf("ou il est impossible de modifier le fichier des comptes GM.\n");
- ladmin_log("Echec de la modification du niveau de GM du compte. Le compte [%s] n'existe pas, le niveau de GM est déjà celui demandé ou il est impossible de modifier le fichier des comptes GM." RETCODE, RFIFOP(fd,6));
- } else {
- printf("Account [%s] GM level changing failed.\n", RFIFOP(fd,6));
- printf("Account [%s] doesn't exist, the GM level is already the good GM level\n", RFIFOP(fd,6));
- printf("or it's impossible to modify the GM accounts file.\n");
- ladmin_log("Account GM level changing failed. The compte [%s] doesn't exist, the GM level is already the good sex or it's impossible to modify the GM accounts file." RETCODE, RFIFOP(fd,6));
- }
- } else {
- if (defaultlanguage == 'F') {
- printf("Niveau de GM du compte [%s][id: %d] changé avec succès.\n", RFIFOP(fd,6), RFIFOL(fd,2));
- ladmin_log("Niveau de GM du compte [%s][id: %d] changé avec succès." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2));
- } else {
- printf("Account [%s][id: %d] GM level successfully changed.\n", RFIFOP(fd,6), RFIFOL(fd,2));
- ladmin_log("Account [%s][id: %d] GM level successfully changed." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2));
- }
- }
- bytes_to_read = 0;
- RFIFOSKIP(fd,30);
- break;
-
- case 0x7941: // answer of the change of an account email
- if (RFIFOREST(fd) < 30)
- return 0;
- if (RFIFOL(fd,2) == -1) {
- if (defaultlanguage == 'F') {
- printf("Echec de la modification de l'e-mail du compte [%s].\n", RFIFOP(fd,6));
- printf("Le compte [%s] n'existe pas.\n", RFIFOP(fd,6));
- ladmin_log("Echec de la modification de l'e-mail du compte. Le compte [%s] n'existe pas." RETCODE, RFIFOP(fd,6));
- } else {
- printf("Account [%s] e-mail changing failed.\n", RFIFOP(fd,6));
- printf("Account [%s] doesn't exist.\n", RFIFOP(fd,6));
- ladmin_log("Account e-mail changing failed. The compte [%s] doesn't exist." RETCODE, RFIFOP(fd,6));
- }
- } else {
- if (defaultlanguage == 'F') {
- printf("Modification de l'e-mail du compte [%s][id: %d] réussie.\n", RFIFOP(fd,6), RFIFOL(fd,2));
- ladmin_log("Modification de l'e-mail du compte [%s][id: %d] réussie." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2));
- } else {
- printf("Account [%s][id: %d] e-mail successfully changed.\n", RFIFOP(fd,6), RFIFOL(fd,2));
- ladmin_log("Account [%s][id: %d] e-mail successfully changed." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2));
- }
- }
- bytes_to_read = 0;
- RFIFOSKIP(fd,30);
- break;
-
- case 0x7943: // answer of the change of an account memo
- if (RFIFOREST(fd) < 30)
- return 0;
- if (RFIFOL(fd,2) == -1) {
- if (defaultlanguage == 'F') {
- printf("Echec du changement du mémo du compte [%s]. Le compte n'existe pas.\n", RFIFOP(fd,6));
- ladmin_log("Echec du changement du mémo du compte [%s]. Le compte n'existe pas." RETCODE, RFIFOP(fd,6));
- } else {
- printf("Account [%s] memo changing failed. Account doesn't exist.\n", RFIFOP(fd,6));
- ladmin_log("Account [%s] memo changing failed. Account doesn't exist." RETCODE, RFIFOP(fd,6));
- }
- } else {
- if (defaultlanguage == 'F') {
- printf("Mémo du compte [%s][id: %d] changé avec succès.\n", RFIFOP(fd,6), RFIFOL(fd,2));
- ladmin_log("Mémo du compte [%s][id: %d] changé avec succès." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2));
- } else {
- printf("Account [%s][id: %d] memo successfully changed.\n", RFIFOP(fd,6), RFIFOL(fd,2));
- ladmin_log("Account [%s][id: %d] memo successfully changed." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2));
- }
- }
- bytes_to_read = 0;
- RFIFOSKIP(fd,30);
- break;
-
- case 0x7945: // answer of an account id search
- if (RFIFOREST(fd) < 30)
- return 0;
- if (RFIFOL(fd,2) == -1) {
- if (defaultlanguage == 'F') {
- printf("Impossible de trouver l'id du compte [%s]. Le compte n'existe pas.\n", RFIFOP(fd,6));
- ladmin_log("Impossible de trouver l'id du compte [%s]. Le compte n'existe pas." RETCODE, RFIFOP(fd,6));
- } else {
- printf("Unable to find the account [%s] id. Account doesn't exist.\n", RFIFOP(fd,6));
- ladmin_log("Unable to find the account [%s] id. Account doesn't exist." RETCODE, RFIFOP(fd,6));
- }
- } else {
- if (defaultlanguage == 'F') {
- printf("Le compte [%s] a pour id: %d.\n", RFIFOP(fd,6), RFIFOL(fd,2));
- ladmin_log("Le compte [%s] a pour id: %d." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2));
- } else {
- printf("The account [%s] have the id: %d.\n", RFIFOP(fd,6), RFIFOL(fd,2));
- ladmin_log("The account [%s] have the id: %d." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2));
- }
- }
- bytes_to_read = 0;
- RFIFOSKIP(fd,30);
- break;
-
- case 0x7947: // answer of an account name search
- if (RFIFOREST(fd) < 30)
- return 0;
- if (strcmp(RFIFOP(fd,6), "") == 0) {
- if (defaultlanguage == 'F') {
- printf("Impossible de trouver le nom du compte [%d]. Le compte n'existe pas.\n", RFIFOL(fd,2));
- ladmin_log("Impossible de trouver le nom du compte [%d]. Le compte n'existe pas." RETCODE, RFIFOL(fd,2));
- } else {
- printf("Unable to find the account [%d] name. Account doesn't exist.\n", RFIFOL(fd,2));
- ladmin_log("Unable to find the account [%d] name. Account doesn't exist." RETCODE, RFIFOL(fd,2));
- }
- } else {
- if (defaultlanguage == 'F') {
- printf("Le compte [id: %d] a pour nom: %s.\n", RFIFOL(fd,2), RFIFOP(fd,6));
- ladmin_log("Le compte [id: %d] a pour nom: %s." RETCODE, RFIFOL(fd,2), RFIFOP(fd,6));
- } else {
- printf("The account [id: %d] have the name: %s.\n", RFIFOL(fd,2), RFIFOP(fd,6));
- ladmin_log("The account [id: %d] have the name: %s." RETCODE, RFIFOL(fd,2), RFIFOP(fd,6));
- }
- }
- bytes_to_read = 0;
- RFIFOSKIP(fd,30);
- break;
-
- case 0x7949: // answer of an account validity limit set
- if (RFIFOREST(fd) < 34)
- return 0;
- if (RFIFOL(fd,2) == -1) {
- if (defaultlanguage == 'F') {
- printf("Echec du changement de la validité du compte [%s]. Le compte n'existe pas.\n", RFIFOP(fd,6));
- ladmin_log("Echec du changement de la validité du compte [%s]. Le compte n'existe pas." RETCODE, RFIFOP(fd,6));
- } else {
- printf("Account [%s] validity limit changing failed. Account doesn't exist.\n", RFIFOP(fd,6));
- ladmin_log("Account [%s] validity limit changing failed. Account doesn't exist." RETCODE, RFIFOP(fd,6));
- }
- } else {
- time_t timestamp = RFIFOL(fd,30);
- if (timestamp == 0) {
- if (defaultlanguage == 'F') {
- printf("Limite de validité du compte [%s][id: %d] changée avec succès en [illimité].\n", RFIFOP(fd,6), RFIFOL(fd,2));
- ladmin_log("Limite de validité du compte [%s][id: %d] changée avec succès en [illimité]." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2));
- } else {
- printf("Validity Limit of the account [%s][id: %d] successfully changed to [unlimited].\n", RFIFOP(fd,6), RFIFOL(fd,2));
- ladmin_log("Validity Limit of the account [%s][id: %d] successfully changed to [unlimited]." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2));
- }
- } else {
- char tmpstr[128];
- strftime(tmpstr, 24, date_format, localtime(&timestamp));
- if (defaultlanguage == 'F') {
- printf("Limite de validité du compte [%s][id: %d] changée avec succès pour être jusqu'au %s.\n", RFIFOP(fd,6), RFIFOL(fd,2), tmpstr);
- ladmin_log("Limite de validité du compte [%s][id: %d] changée avec succès pour être jusqu'au %s." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2), tmpstr);
- } else {
- printf("Validity Limit of the account [%s][id: %d] successfully changed to be until %s.\n", RFIFOP(fd,6), RFIFOL(fd,2), tmpstr);
- ladmin_log("Validity Limit of the account [%s][id: %d] successfully changed to be until %s." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2), tmpstr);
- }
- }
- }
- bytes_to_read = 0;
- RFIFOSKIP(fd,34);
- break;
-
- case 0x794b: // answer of an account ban set
- if (RFIFOREST(fd) < 34)
- return 0;
- if (RFIFOL(fd,2) == -1) {
- if (defaultlanguage == 'F') {
- printf("Echec du changement de la date finale de banissement du compte [%s]. Le compte n'existe pas.\n", RFIFOP(fd,6));
- ladmin_log("Echec du changement de la date finale de banissement du compte [%s]. Le compte n'existe pas." RETCODE, RFIFOP(fd,6));
- } else {
- printf("Account [%s] final date of banishment changing failed. Account doesn't exist.\n", RFIFOP(fd,6));
- ladmin_log("Account [%s] final date of banishment changing failed. Account doesn't exist." RETCODE, RFIFOP(fd,6));
- }
- } else {
- time_t timestamp = RFIFOL(fd,30);
- if (timestamp == 0) {
- if (defaultlanguage == 'F') {
- printf("Date finale de banissement du compte [%s][id: %d] changée avec succès en [dé-bannie].\n", RFIFOP(fd,6), RFIFOL(fd,2));
- ladmin_log("Date finale de banissement du compte [%s][id: %d] changée avec succès en [dé-bannie]." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2));
- } else {
- printf("Final date of banishment of the account [%s][id: %d] successfully changed to [unbanished].\n", RFIFOP(fd,6), RFIFOL(fd,2));
- ladmin_log("Final date of banishment of the account [%s][id: %d] successfully changed to [unbanished]." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2));
- }
- } else {
- char tmpstr[128];
- strftime(tmpstr, 24, date_format, localtime(&timestamp));
- if (defaultlanguage == 'F') {
- printf("Date finale de banissement du compte [%s][id: %d] changée avec succès pour être jusqu'au %s.\n", RFIFOP(fd,6), RFIFOL(fd,2), tmpstr);
- ladmin_log("Date finale de banissement du compte [%s][id: %d] changée avec succès pour être jusqu'au %s." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2), tmpstr);
- } else {
- printf("Final date of banishment of the account [%s][id: %d] successfully changed to be until %s.\n", RFIFOP(fd,6), RFIFOL(fd,2), tmpstr);
- ladmin_log("Final date of banishment of the account [%s][id: %d] successfully changed to be until %s." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2), tmpstr);
- }
- }
- }
- bytes_to_read = 0;
- RFIFOSKIP(fd,34);
- break;
-
- case 0x794d: // answer of an account ban date/time changing
- if (RFIFOREST(fd) < 34)
- return 0;
- if (RFIFOL(fd,2) == -1) {
- if (defaultlanguage == 'F') {
- printf("Echec du changement de la date finale de banissement du compte [%s]. Le compte n'existe pas.\n", RFIFOP(fd,6));
- ladmin_log("Echec du changement de la date finale de banissement du compte [%s]. Le compte n'existe pas." RETCODE, RFIFOP(fd,6));
- } else {
- printf("Account [%s] final date of banishment changing failed. Account doesn't exist.\n", RFIFOP(fd,6));
- ladmin_log("Account [%s] final date of banishment changing failed. Account doesn't exist." RETCODE, RFIFOP(fd,6));
- }
- } else {
- time_t timestamp = RFIFOL(fd,30);
- if (timestamp == 0) {
- if (defaultlanguage == 'F') {
- printf("Date finale de banissement du compte [%s][id: %d] changée avec succès en [dé-bannie].\n", RFIFOP(fd,6), RFIFOL(fd,2));
- ladmin_log("Date finale de banissement du compte [%s][id: %d] changée avec succès en [dé-bannie]." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2));
- } else {
- printf("Final date of banishment of the account [%s][id: %d] successfully changed to [unbanished].\n", RFIFOP(fd,6), RFIFOL(fd,2));
- ladmin_log("Final date of banishment of the account [%s][id: %d] successfully changed to [unbanished]." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2));
- }
- } else {
- char tmpstr[128];
- strftime(tmpstr, 24, date_format, localtime(&timestamp));
- if (defaultlanguage == 'F') {
- printf("Date finale de banissement du compte [%s][id: %d] changée avec succès pour être jusqu'au %s.\n", RFIFOP(fd,6), RFIFOL(fd,2), tmpstr);
- ladmin_log("Date finale de banissement du compte [%s][id: %d] changée avec succès pour être jusqu'au %s." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2), tmpstr);
- } else {
- printf("Final date of banishment of the account [%s][id: %d] successfully changed to be until %s.\n", RFIFOP(fd,6), RFIFOL(fd,2), tmpstr);
- ladmin_log("Final date of banishment of the account [%s][id: %d] successfully changed to be until %s." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2), tmpstr);
- }
- }
- }
- bytes_to_read = 0;
- RFIFOSKIP(fd,34);
- break;
-
- case 0x794f: // answer of a broadcast
- if (RFIFOREST(fd) < 4)
- return 0;
- if (RFIFOW(fd,2) == (unsigned short)-1) {
- if (defaultlanguage == 'F') {
- printf("Echec de l'envoi du message. Aucun server de char en ligne.\n");
- ladmin_log("Echec de l'envoi du message. Aucun server de char en ligne." RETCODE);
- } else {
- printf("Message sending failed. No online char-server.\n");
- ladmin_log("Message sending failed. No online char-server." RETCODE);
- }
- } else {
- if (defaultlanguage == 'F') {
- printf("Message transmis au server de logins avec succès.\n");
- ladmin_log("Message transmis au server de logins avec succès." RETCODE);
- } else {
- printf("Message successfully sended to login-server.\n");
- ladmin_log("Message successfully sended to login-server." RETCODE);
- }
- }
- bytes_to_read = 0;
- RFIFOSKIP(fd,4);
- break;
-
- case 0x7951: // answer of an account validity limit changing
- if (RFIFOREST(fd) < 34)
- return 0;
- if (RFIFOL(fd,2) == -1) {
- if (defaultlanguage == 'F') {
- printf("Echec du changement de la validité du compte [%s]. Le compte n'existe pas.\n", RFIFOP(fd,6));
- ladmin_log("Echec du changement de la validité du compte [%s]. Le compte n'existe pas." RETCODE, RFIFOP(fd,6));
- } else {
- printf("Account [%s] validity limit changing failed. Account doesn't exist.\n", RFIFOP(fd,6));
- ladmin_log("Account [%s] validity limit changing failed. Account doesn't exist." RETCODE, RFIFOP(fd,6));
- }
- } else {
- time_t timestamp = RFIFOL(fd,30);
- if (timestamp == 0) {
- if (defaultlanguage == 'F') {
- printf("Limite de validité du compte [%s][id: %d] inchangée.\n", RFIFOP(fd,6), RFIFOL(fd,2));
- printf("Le compte a une validité illimitée ou\n");
- printf("la modification est impossible avec les ajustements demandés.\n");
- ladmin_log("Limite de validité du compte [%s][id: %d] inchangée. Le compte a une validité illimitée ou la modification est impossible avec les ajustements demandés." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2));
- } else {
- printf("Validity limit of the account [%s][id: %d] unchanged.\n", RFIFOP(fd,6), RFIFOL(fd,2));
- printf("The account have an unlimited validity limit or\n");
- printf("the changing is impossible with the proposed adjustments.\n");
- ladmin_log("Validity limit of the account [%s][id: %d] unchanged. The account have an unlimited validity limit or the changing is impossible with the proposed adjustments." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2));
- }
- } else {
- char tmpstr[128];
- strftime(tmpstr, 24, date_format, localtime(&timestamp));
- if (defaultlanguage == 'F') {
- printf("Limite de validité du compte [%s][id: %d] changée avec succès pour être jusqu'au %s.\n", RFIFOP(fd,6), RFIFOL(fd,2), tmpstr);
- ladmin_log("Limite de validité du compte [%s][id: %d] changée avec succès pour être jusqu'au %s." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2), tmpstr);
- } else {
- printf("Validity limit of the account [%s][id: %d] successfully changed to be until %s.\n", RFIFOP(fd,6), RFIFOL(fd,2), tmpstr);
- ladmin_log("Validity limit of the account [%s][id: %d] successfully changed to be until %s." RETCODE, RFIFOP(fd,6), RFIFOL(fd,2), tmpstr);
- }
- }
- }
- bytes_to_read = 0;
- RFIFOSKIP(fd,34);
- break;
-
- case 0x7953: // answer of a request about informations of an account (by account name/id)
- if (RFIFOREST(fd) < 150 || RFIFOREST(fd) < (150 + RFIFOW(fd,148)))
- return 0;
- {
- char userid[24], error_message[20], lastlogin[24], last_ip[16], email[40], memo[255];
- time_t ban_until_time; // # of seconds 1/1/1970 (timestamp): ban time limit of the account (0 = no ban)
- time_t connect_until_time; // # of seconds 1/1/1970 (timestamp): Validity limit of the account (0 = unlimited)
- memcpy(userid, RFIFOP(fd,7), sizeof(userid));
- userid[sizeof(userid)-1] = '\0';
- memcpy(error_message, RFIFOP(fd,40), sizeof(error_message));
- error_message[sizeof(error_message)-1] = '\0';
- memcpy(lastlogin, RFIFOP(fd,60), sizeof(lastlogin));
- lastlogin[sizeof(lastlogin)-1] = '\0';
- memcpy(last_ip, RFIFOP(fd,84), sizeof(last_ip));
- last_ip[sizeof(last_ip)-1] = '\0';
- memcpy(email, RFIFOP(fd,100), sizeof(email));
- email[sizeof(email)-1] = '\0';
- connect_until_time = (time_t)RFIFOL(fd,140);
- ban_until_time = (time_t)RFIFOL(fd,144);
- memset(memo, '\0', sizeof(memo));
- strncpy(memo, RFIFOP(fd,150), RFIFOW(fd,148));
- if (RFIFOL(fd,2) == -1) {
- if (defaultlanguage == 'F') {
- printf("Impossible de trouver le compte [%s]. Le compte n'existe pas.\n", parameters);
- ladmin_log("Impossible de trouver le compte [%s]. Le compte n'existe pas." RETCODE, parameters);
- } else {
- printf("Unabled to find the account [%s]. Account doesn't exist.\n", parameters);
- ladmin_log("Unabled to find the account [%s]. Account doesn't exist." RETCODE, parameters);
- }
- } else if (strlen(userid) == 0) {
- if (defaultlanguage == 'F') {
- printf("Impossible de trouver le compte [id: %s]. Le compte n'existe pas.\n", parameters);
- ladmin_log("Impossible de trouver le compte [id: %s]. Le compte n'existe pas." RETCODE, parameters);
- } else {
- printf("Unabled to find the account [id: %s]. Account doesn't exist.\n", parameters);
- ladmin_log("Unabled to find the account [id: %s]. Account doesn't exist." RETCODE, parameters);
- }
- } else {
- if (defaultlanguage == 'F') {
- ladmin_log("Réception d'information concernant un compte." RETCODE);
- printf("Le compte a les caractéristiques suivantes:\n");
- } else {
- ladmin_log("Receiving information about an account." RETCODE);
- printf("The account is set with:\n");
- }
- if (RFIFOB(fd,6) == 0) {
- printf(" Id: %d (non-GM)\n", RFIFOL(fd,2));
- } else {
- if (defaultlanguage == 'F') {
- printf(" Id: %d (GM niveau %d)\n", RFIFOL(fd,2), (int)RFIFOB(fd,6));
- } else {
- printf(" Id: %d (GM level %d)\n", RFIFOL(fd,2), (int)RFIFOB(fd,6));
- }
- }
- if (defaultlanguage == 'F') {
- printf(" Nom: '%s'\n", userid);
- if (RFIFOB(fd,31) == 0)
- printf(" Sexe: Femme\n");
- else if (RFIFOB(fd,31) == 1)
- printf(" Sexe: Male\n");
- else
- printf(" Sexe: Serveur\n");
- } else {
- printf(" Name: '%s'\n", userid);
- if (RFIFOB(fd,31) == 0)
- printf(" Sex: Female\n");
- else if (RFIFOB(fd,31) == 1)
- printf(" Sex: Male\n");
- else
- printf(" Sex: Server\n");
- }
- printf(" E-mail: %s\n", email);
- switch(RFIFOL(fd,36)) {
- case 0:
- if (defaultlanguage == 'F')
- printf(" Statut: 0 [Compte Ok]\n");
- else
- printf(" Statut: 0 [Account OK]\n");
- break;
- case 1:
- printf(" Statut: 1 [Unregistered ID]\n");
- break;
- case 2:
- printf(" Statut: 2 [Incorrect Password]\n");
- break;
- case 3:
- printf(" Statut: 3 [This ID is expired]\n");
- break;
- case 4:
- printf(" Statut: 4 [Rejected from Server]\n");
- break;
- case 5:
- printf(" Statut: 5 [You have been blocked by the GM Team]\n");
- break;
- case 6:
- printf(" Statut: 6 [Your Game's EXE file is not the latest version]\n");
- break;
- case 7:
- printf(" Statut: 7 [You are Prohibited to log in until %s]\n", error_message);
- break;
- case 8:
- printf(" Statut: 8 [Server is jammed due to over populated]\n");
- break;
- case 9:
- printf(" Statut: 9 [No MSG]\n");
- break;
- default: // 100
- printf(" Statut: %d [This ID is totally erased]\n", RFIFOL(fd,36));
- break;
- }
- if (defaultlanguage == 'F') {
- if (ban_until_time == 0) {
- printf(" Banissement: non banni.\n");
- } else {
- char tmpstr[128];
- strftime(tmpstr, 24, date_format, localtime(&ban_until_time));
- printf(" Banissement: jusqu'au %s.\n", tmpstr);
- }
- if (RFIFOL(fd,32) > 1)
- printf(" Compteur: %d connexions.\n", RFIFOL(fd,32));
- else
- printf(" Compteur: %d connexion.\n", RFIFOL(fd,32));
- printf(" Dernière connexion le: %s (ip: %s)\n", lastlogin, last_ip);
- if (connect_until_time == 0) {
- printf(" Limite de validité: illimité.\n");
- } else {
- char tmpstr[128];
- strftime(tmpstr, 24, date_format, localtime(&connect_until_time));
- printf(" Limite de validité: jusqu'au %s.\n", tmpstr);
- }
- } else {
- if (ban_until_time == 0) {
- printf(" Banishment: not banished.\n");
- } else {
- char tmpstr[128];
- strftime(tmpstr, 24, date_format, localtime(&ban_until_time));
- printf(" Banishment: until %s.\n", tmpstr);
- }
- if (RFIFOL(fd,32) > 1)
- printf(" Count: %d connections.\n", RFIFOL(fd,32));
- else
- printf(" Count: %d connection.\n", RFIFOL(fd,32));
- printf(" Last connection at: %s (ip: %s)\n", lastlogin, last_ip);
- if (connect_until_time == 0) {
- printf(" Validity limit: unlimited.\n");
- } else {
- char tmpstr[128];
- strftime(tmpstr, 24, date_format, localtime(&connect_until_time));
- printf(" Validity limit: until %s.\n", tmpstr);
- }
- }
- printf(" Memo: '%s'\n", memo);
- }
- }
- bytes_to_read = 0;
- RFIFOSKIP(fd,150 + RFIFOW(fd,148));
- break;
-
- default:
- printf("Remote administration has been disconnected (unknown packet).\n");
- ladmin_log("'End of connection, unknown packet." RETCODE);
- session[fd]->eof = 1;
- return 0;
- }
- }
+ case 0x7531: // Displaying of the version of the login-server
+ if (RFIFOREST (fd) < 10)
+ return 0;
+ Iprintf (" Login-Server [%s:%d]\n", loginserverip,
+ loginserverport);
+ if (((int) RFIFOB (login_fd, 5)) == 0)
+ {
+ Iprintf (" eAthena version stable-%d.%d",
+ (int) RFIFOB (login_fd, 2),
+ (int) RFIFOB (login_fd, 3));
+ }
+ else
+ {
+ Iprintf (" eAthena version dev-%d.%d",
+ (int) RFIFOB (login_fd, 2),
+ (int) RFIFOB (login_fd, 3));
+ }
+ if (((int) RFIFOB (login_fd, 4)) == 0)
+ Iprintf (" revision %d", (int) RFIFOB (login_fd, 4));
+ if (((int) RFIFOB (login_fd, 6)) == 0)
+ {
+ Iprintf ("%d.\n", RFIFOW (login_fd, 8));
+ }
+ else
+ Iprintf ("-mod%d.\n", RFIFOW (login_fd, 8));
+ bytes_to_read = 0;
+ RFIFOSKIP (fd, 10);
+ break;
+
+ case 0x7925: // Itemfrob-OK
+ RFIFOSKIP (fd, 2);
+ bytes_to_read = 0;
+ break;
+
+ case 0x7921: // Displaying of the list of accounts
+ if (RFIFOREST (fd) < 4 || RFIFOREST (fd) < RFIFOW (fd, 2))
+ return 0;
+ if (RFIFOW (fd, 2) < 5)
+ {
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log
+ (" Réception d'une liste des comptes vide."
+ RETCODE);
+ if (list_count == 0)
+ printf ("Aucun compte trouvé.\n");
+ else if (list_count == 1)
+ printf ("1 compte trouvé.\n");
+ else
+ printf ("%d comptes trouvés.\n", list_count);
+ }
+ else
+ {
+ ladmin_log (" Receiving of a void accounts list."
+ RETCODE);
+ if (list_count == 0)
+ {
+ Iprintf ("No account found.\n");
+ }
+ else if (list_count == 1)
+ {
+ Iprintf ("1 account found.\n");
+ }
+ else
+ Iprintf ("%d accounts found.\n", list_count);
+ }
+ bytes_to_read = 0;
+ }
+ else
+ {
+ int i;
+ if (defaultlanguage == 'F')
+ ladmin_log (" Réception d'une liste des comptes."
+ RETCODE);
+ else
+ ladmin_log (" Receiving of a accounts list."
+ RETCODE);
+ for (i = 4; i < RFIFOW (fd, 2); i += 38)
+ {
+ int j;
+ char userid[24];
+ char lower_userid[24];
+ memcpy (userid, RFIFOP (fd, i + 5), sizeof (userid));
+ userid[sizeof (userid) - 1] = '\0';
+ memset (lower_userid, '\0', sizeof (lower_userid));
+ for (j = 0; userid[j]; j++)
+ lower_userid[j] = tolower (userid[j]);
+ list_first = RFIFOL (fd, i) + 1;
+ // here are checks...
+ if (list_type == 0 ||
+ (list_type == 1 && RFIFOB (fd, i + 4) > 0) ||
+ (list_type == 2
+ && strstr (lower_userid, parameters) != NULL)
+ || (list_type == 3 && RFIFOL (fd, i + 34) != 0)
+ || (list_type == 4 && RFIFOL (fd, i + 34) == 0))
+ {
+ printf ("%10d ", RFIFOL (fd, i));
+ if (RFIFOB (fd, i + 4) == 0)
+ printf (" ");
+ else
+ printf ("%2d ", (int) RFIFOB (fd, i + 4));
+ printf ("%-24s", userid);
+ if (defaultlanguage == 'F')
+ {
+ if (RFIFOB (fd, i + 29) == 0)
+ printf ("%-5s ", "Femme");
+ else if (RFIFOB (fd, i + 29) == 1)
+ printf ("%-5s ", "Male");
+ else
+ printf ("%-5s ", "Servr");
+ }
+ else
+ {
+ if (RFIFOB (fd, i + 29) == 0)
+ printf ("%-5s ", "Femal");
+ else if (RFIFOB (fd, i + 29) == 1)
+ printf ("%-5s ", "Male");
+ else
+ printf ("%-5s ", "Servr");
+ }
+ printf ("%6d ", RFIFOL (fd, i + 30));
+ switch (RFIFOL (fd, i + 34))
+ {
+ case 0:
+ if (defaultlanguage == 'F')
+ printf ("%-27s\n", "Compte Ok");
+ else
+ printf ("%-27s\n", "Account OK");
+ break;
+ case 1:
+ printf ("%-27s\n", "Unregistered ID");
+ break;
+ case 2:
+ printf ("%-27s\n", "Incorrect Password");
+ break;
+ case 3:
+ printf ("%-27s\n", "This ID is expired");
+ break;
+ case 4:
+ printf ("%-27s\n",
+ "Rejected from Server");
+ break;
+ case 5:
+ printf ("%-27s\n", "Blocked by the GM Team"); // You have been blocked by the GM Team
+ break;
+ case 6:
+ printf ("%-27s\n", "Your EXE file is too old"); // Your Game's EXE file is not the latest version
+ break;
+ case 7:
+ printf ("%-27s\n", "Banishement or");
+ printf (" Prohibited to login until...\n"); // You are Prohibited to log in until %s
+ break;
+ case 8:
+ printf ("%-27s\n",
+ "Server is over populated");
+ break;
+ case 9:
+ printf ("%-27s\n", "No MSG");
+ break;
+ default: // 100
+ printf ("%-27s\n", "This ID is totally erased"); // This ID has been totally erased
+ break;
+ }
+ list_count++;
+ }
+ }
+ // asking of the following acounts
+ if (defaultlanguage == 'F')
+ ladmin_log
+ ("Envoi d'un requête au serveur de logins pour obtenir la liste des comptes de %d à %d (complément)."
+ RETCODE, list_first, list_last);
+ else
+ ladmin_log
+ ("Request to login-server to obtain the list of accounts from %d to %d (complement)."
+ RETCODE, list_first, list_last);
+ WFIFOW (login_fd, 0) = 0x7920;
+ WFIFOL (login_fd, 2) = list_first;
+ WFIFOL (login_fd, 6) = list_last;
+ WFIFOSET (login_fd, 10);
+ bytes_to_read = 1;
+ }
+ RFIFOSKIP (fd, RFIFOW (fd, 2));
+ break;
+
+ case 0x7931: // Answer of login-server about an account creation
+ if (RFIFOREST (fd) < 30)
+ return 0;
+ if (RFIFOL (fd, 2) == -1)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Echec à la création du compte [%s]. Un compte identique existe déjà.\n",
+ RFIFOP (fd, 6));
+ ladmin_log
+ ("Echec à la création du compte [%s]. Un compte identique existe déjà."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ else
+ {
+ printf
+ ("Account [%s] creation failed. Same account already exists.\n",
+ RFIFOP (fd, 6));
+ ladmin_log
+ ("Account [%s] creation failed. Same account already exists."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ }
+ else
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Compte [%s] créé avec succès [id: %d].\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ ladmin_log ("Compte [%s] créé avec succès [id: %d]."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2));
+ }
+ else
+ {
+ printf
+ ("Account [%s] is successfully created [id: %d].\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ ladmin_log
+ ("Account [%s] is successfully created [id: %d]."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2));
+ }
+ }
+ bytes_to_read = 0;
+ RFIFOSKIP (fd, 30);
+ break;
+
+ case 0x7933: // Answer of login-server about an account deletion
+ if (RFIFOREST (fd) < 30)
+ return 0;
+ if (RFIFOL (fd, 2) == -1)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Echec de la suppression du compte [%s]. Le compte n'existe pas.\n",
+ RFIFOP (fd, 6));
+ ladmin_log
+ ("Echec de la suppression du compte [%s]. Le compte n'existe pas."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ else
+ {
+ printf
+ ("Account [%s] deletion failed. Account doesn't exist.\n",
+ RFIFOP (fd, 6));
+ ladmin_log
+ ("Account [%s] deletion failed. Account doesn't exist."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ }
+ else
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Compte [%s][id: %d] SUPPRIME avec succès.\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ ladmin_log
+ ("Compte [%s][id: %d] SUPPRIME avec succès."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2));
+ }
+ else
+ {
+ printf
+ ("Account [%s][id: %d] is successfully DELETED.\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ ladmin_log
+ ("Account [%s][id: %d] is successfully DELETED."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2));
+ }
+ }
+ bytes_to_read = 0;
+ RFIFOSKIP (fd, 30);
+ break;
+
+ case 0x7935: // answer of the change of an account password
+ if (RFIFOREST (fd) < 30)
+ return 0;
+ if (RFIFOL (fd, 2) == -1)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Echec de la modification du mot de passe du compte [%s].\n",
+ RFIFOP (fd, 6));
+ printf ("Le compte [%s] n'existe pas.\n",
+ RFIFOP (fd, 6));
+ ladmin_log
+ ("Echec de la modification du mot de passe du compte. Le compte [%s] n'existe pas."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ else
+ {
+ printf ("Account [%s] password changing failed.\n",
+ RFIFOP (fd, 6));
+ printf ("Account [%s] doesn't exist.\n",
+ RFIFOP (fd, 6));
+ ladmin_log
+ ("Account password changing failed. The compte [%s] doesn't exist."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ }
+ else
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Modification du mot de passe du compte [%s][id: %d] réussie.\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ ladmin_log
+ ("Modification du mot de passe du compte [%s][id: %d] réussie."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2));
+ }
+ else
+ {
+ printf
+ ("Account [%s][id: %d] password successfully changed.\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ ladmin_log
+ ("Account [%s][id: %d] password successfully changed."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2));
+ }
+ }
+ bytes_to_read = 0;
+ RFIFOSKIP (fd, 30);
+ break;
+
+ case 0x7937: // answer of the change of an account state
+ if (RFIFOREST (fd) < 34)
+ return 0;
+ if (RFIFOL (fd, 2) == -1)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Echec du changement du statut du compte [%s]. Le compte n'existe pas.\n",
+ RFIFOP (fd, 6));
+ ladmin_log
+ ("Echec du changement du statut du compte [%s]. Le compte n'existe pas."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ else
+ {
+ printf
+ ("Account [%s] state changing failed. Account doesn't exist.\n",
+ RFIFOP (fd, 6));
+ ladmin_log
+ ("Account [%s] state changing failed. Account doesn't exist."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ }
+ else
+ {
+ char tmpstr[256];
+ if (defaultlanguage == 'F')
+ {
+ sprintf (tmpstr,
+ "Statut du compte [%s] changé avec succès en [",
+ RFIFOP (fd, 6));
+ }
+ else
+ {
+ sprintf (tmpstr,
+ "Account [%s] state successfully changed in [",
+ RFIFOP (fd, 6));
+ }
+ switch (RFIFOL (fd, 30))
+ {
+ case 0:
+ if (defaultlanguage == 'F')
+ strcat (tmpstr, "0: Compte Ok");
+ else
+ strcat (tmpstr, "0: Account OK");
+ break;
+ case 1:
+ strcat (tmpstr, "1: Unregistered ID");
+ break;
+ case 2:
+ strcat (tmpstr, "2: Incorrect Password");
+ break;
+ case 3:
+ strcat (tmpstr, "3: This ID is expired");
+ break;
+ case 4:
+ strcat (tmpstr, "4: Rejected from Server");
+ break;
+ case 5:
+ strcat (tmpstr,
+ "5: You have been blocked by the GM Team");
+ break;
+ case 6:
+ strcat (tmpstr,
+ "6: [Your Game's EXE file is not the latest version");
+ break;
+ case 7:
+ strcat (tmpstr,
+ "7: You are Prohibited to log in until...");
+ break;
+ case 8:
+ strcat (tmpstr,
+ "8: Server is jammed due to over populated");
+ break;
+ case 9:
+ strcat (tmpstr, "9: No MSG");
+ break;
+ default: // 100
+ strcat (tmpstr, "100: This ID is totally erased");
+ break;
+ }
+ strcat (tmpstr, "]");
+ printf ("%s\n", tmpstr);
+ ladmin_log ("%s%s", tmpstr, RETCODE);
+ }
+ bytes_to_read = 0;
+ RFIFOSKIP (fd, 34);
+ break;
+
+ case 0x7939: // answer of the number of online players
+ if (RFIFOREST (fd) < 4 || RFIFOREST (fd) < RFIFOW (fd, 2))
+ return 0;
+ {
+ // Get length of the received packet
+ int i;
+ char name[20];
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log
+ (" Réception du nombre de joueurs en ligne."
+ RETCODE);
+ }
+ else
+ {
+ ladmin_log
+ (" Receiving of the number of online players."
+ RETCODE);
+ }
+ // Read information of the servers
+ if (RFIFOW (fd, 2) < 5)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ (" Aucun serveur n'est connecté au login serveur.\n");
+ }
+ else
+ {
+ printf
+ (" No server is connected to the login-server.\n");
+ }
+ }
+ else
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ (" Nombre de joueurs en ligne (serveur: nb):\n");
+ }
+ else
+ {
+ printf
+ (" Number of online players (server: number).\n");
+ }
+ // Displaying of result
+ for (i = 4; i < RFIFOW (fd, 2); i += 32)
+ {
+ memcpy (name, RFIFOP (fd, i + 6), sizeof (name));
+ name[sizeof (name) - 1] = '\0';
+ printf (" %-20s : %5d\n", name,
+ RFIFOW (fd, i + 26));
+ }
+ }
+ }
+ bytes_to_read = 0;
+ RFIFOSKIP (fd, RFIFOW (fd, 2));
+ break;
+
+ case 0x793b: // answer of the check of a password
+ if (RFIFOREST (fd) < 30)
+ return 0;
+ if (RFIFOL (fd, 2) == -1)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Le compte [%s] n'existe pas ou le mot de passe est incorrect.\n",
+ RFIFOP (fd, 6));
+ ladmin_log
+ ("Le compte [%s] n'existe pas ou le mot de passe est incorrect."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ else
+ {
+ printf
+ ("The account [%s] doesn't exist or the password is incorrect.\n",
+ RFIFOP (fd, 6));
+ ladmin_log
+ ("The account [%s] doesn't exist or the password is incorrect."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ }
+ else
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Le mot de passe donné correspond bien au compte [%s][id: %d].\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ ladmin_log
+ ("Le mot de passe donné correspond bien au compte [%s][id: %d]."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2));
+ }
+ else
+ {
+ printf
+ ("The proposed password is correct for the account [%s][id: %d].\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ ladmin_log
+ ("The proposed password is correct for the account [%s][id: %d]."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2));
+ }
+ }
+ bytes_to_read = 0;
+ RFIFOSKIP (fd, 30);
+ break;
+
+ case 0x793d: // answer of the change of an account sex
+ if (RFIFOREST (fd) < 30)
+ return 0;
+ if (RFIFOL (fd, 2) == -1)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Echec de la modification du sexe du compte [%s].\n",
+ RFIFOP (fd, 6));
+ printf
+ ("Le compte [%s] n'existe pas ou le sexe est déjà celui demandé.\n",
+ RFIFOP (fd, 6));
+ ladmin_log
+ ("Echec de la modification du sexe du compte. Le compte [%s] n'existe pas ou le sexe est déjà celui demandé."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ else
+ {
+ printf ("Account [%s] sex changing failed.\n",
+ RFIFOP (fd, 6));
+ printf
+ ("Account [%s] doesn't exist or the sex is already the good sex.\n",
+ RFIFOP (fd, 6));
+ ladmin_log
+ ("Account sex changing failed. The compte [%s] doesn't exist or the sex is already the good sex."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ }
+ else
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Sexe du compte [%s][id: %d] changé avec succès.\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ ladmin_log
+ ("Sexe du compte [%s][id: %d] changé avec succès."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2));
+ }
+ else
+ {
+ printf
+ ("Account [%s][id: %d] sex successfully changed.\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ ladmin_log
+ ("Account [%s][id: %d] sex successfully changed."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2));
+ }
+ }
+ bytes_to_read = 0;
+ RFIFOSKIP (fd, 30);
+ break;
+
+ case 0x793f: // answer of the change of an account GM level
+ if (RFIFOREST (fd) < 30)
+ return 0;
+ if (RFIFOL (fd, 2) == -1)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Echec de la modification du niveau de GM du compte [%s].\n",
+ RFIFOP (fd, 6));
+ printf
+ ("Le compte [%s] n'existe pas, le niveau de GM est déjà celui demandé\n",
+ RFIFOP (fd, 6));
+ printf
+ ("ou il est impossible de modifier le fichier des comptes GM.\n");
+ ladmin_log
+ ("Echec de la modification du niveau de GM du compte. Le compte [%s] n'existe pas, le niveau de GM est déjà celui demandé ou il est impossible de modifier le fichier des comptes GM."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ else
+ {
+ printf ("Account [%s] GM level changing failed.\n",
+ RFIFOP (fd, 6));
+ printf
+ ("Account [%s] doesn't exist, the GM level is already the good GM level\n",
+ RFIFOP (fd, 6));
+ printf
+ ("or it's impossible to modify the GM accounts file.\n");
+ ladmin_log
+ ("Account GM level changing failed. The compte [%s] doesn't exist, the GM level is already the good sex or it's impossible to modify the GM accounts file."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ }
+ else
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Niveau de GM du compte [%s][id: %d] changé avec succès.\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ ladmin_log
+ ("Niveau de GM du compte [%s][id: %d] changé avec succès."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2));
+ }
+ else
+ {
+ printf
+ ("Account [%s][id: %d] GM level successfully changed.\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ ladmin_log
+ ("Account [%s][id: %d] GM level successfully changed."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2));
+ }
+ }
+ bytes_to_read = 0;
+ RFIFOSKIP (fd, 30);
+ break;
+
+ case 0x7941: // answer of the change of an account email
+ if (RFIFOREST (fd) < 30)
+ return 0;
+ if (RFIFOL (fd, 2) == -1)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Echec de la modification de l'e-mail du compte [%s].\n",
+ RFIFOP (fd, 6));
+ printf ("Le compte [%s] n'existe pas.\n",
+ RFIFOP (fd, 6));
+ ladmin_log
+ ("Echec de la modification de l'e-mail du compte. Le compte [%s] n'existe pas."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ else
+ {
+ printf ("Account [%s] e-mail changing failed.\n",
+ RFIFOP (fd, 6));
+ printf ("Account [%s] doesn't exist.\n",
+ RFIFOP (fd, 6));
+ ladmin_log
+ ("Account e-mail changing failed. The compte [%s] doesn't exist."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ }
+ else
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Modification de l'e-mail du compte [%s][id: %d] réussie.\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ ladmin_log
+ ("Modification de l'e-mail du compte [%s][id: %d] réussie."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2));
+ }
+ else
+ {
+ printf
+ ("Account [%s][id: %d] e-mail successfully changed.\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ ladmin_log
+ ("Account [%s][id: %d] e-mail successfully changed."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2));
+ }
+ }
+ bytes_to_read = 0;
+ RFIFOSKIP (fd, 30);
+ break;
+
+ case 0x7943: // answer of the change of an account memo
+ if (RFIFOREST (fd) < 30)
+ return 0;
+ if (RFIFOL (fd, 2) == -1)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Echec du changement du mémo du compte [%s]. Le compte n'existe pas.\n",
+ RFIFOP (fd, 6));
+ ladmin_log
+ ("Echec du changement du mémo du compte [%s]. Le compte n'existe pas."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ else
+ {
+ printf
+ ("Account [%s] memo changing failed. Account doesn't exist.\n",
+ RFIFOP (fd, 6));
+ ladmin_log
+ ("Account [%s] memo changing failed. Account doesn't exist."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ }
+ else
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Mémo du compte [%s][id: %d] changé avec succès.\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ ladmin_log
+ ("Mémo du compte [%s][id: %d] changé avec succès."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2));
+ }
+ else
+ {
+ printf
+ ("Account [%s][id: %d] memo successfully changed.\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ ladmin_log
+ ("Account [%s][id: %d] memo successfully changed."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2));
+ }
+ }
+ bytes_to_read = 0;
+ RFIFOSKIP (fd, 30);
+ break;
+
+ case 0x7945: // answer of an account id search
+ if (RFIFOREST (fd) < 30)
+ return 0;
+ if (RFIFOL (fd, 2) == -1)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Impossible de trouver l'id du compte [%s]. Le compte n'existe pas.\n",
+ RFIFOP (fd, 6));
+ ladmin_log
+ ("Impossible de trouver l'id du compte [%s]. Le compte n'existe pas."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ else
+ {
+ printf
+ ("Unable to find the account [%s] id. Account doesn't exist.\n",
+ RFIFOP (fd, 6));
+ ladmin_log
+ ("Unable to find the account [%s] id. Account doesn't exist."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ }
+ else
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Le compte [%s] a pour id: %d.\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ ladmin_log ("Le compte [%s] a pour id: %d." RETCODE,
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ }
+ else
+ {
+ printf ("The account [%s] have the id: %d.\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ ladmin_log ("The account [%s] have the id: %d."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2));
+ }
+ }
+ bytes_to_read = 0;
+ RFIFOSKIP (fd, 30);
+ break;
+
+ case 0x7947: // answer of an account name search
+ if (RFIFOREST (fd) < 30)
+ return 0;
+ if (strcmp (RFIFOP (fd, 6), "") == 0)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Impossible de trouver le nom du compte [%d]. Le compte n'existe pas.\n",
+ RFIFOL (fd, 2));
+ ladmin_log
+ ("Impossible de trouver le nom du compte [%d]. Le compte n'existe pas."
+ RETCODE, RFIFOL (fd, 2));
+ }
+ else
+ {
+ printf
+ ("Unable to find the account [%d] name. Account doesn't exist.\n",
+ RFIFOL (fd, 2));
+ ladmin_log
+ ("Unable to find the account [%d] name. Account doesn't exist."
+ RETCODE, RFIFOL (fd, 2));
+ }
+ }
+ else
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("Le compte [id: %d] a pour nom: %s.\n",
+ RFIFOL (fd, 2), RFIFOP (fd, 6));
+ ladmin_log ("Le compte [id: %d] a pour nom: %s."
+ RETCODE, RFIFOL (fd, 2), RFIFOP (fd, 6));
+ }
+ else
+ {
+ printf ("The account [id: %d] have the name: %s.\n",
+ RFIFOL (fd, 2), RFIFOP (fd, 6));
+ ladmin_log ("The account [id: %d] have the name: %s."
+ RETCODE, RFIFOL (fd, 2), RFIFOP (fd, 6));
+ }
+ }
+ bytes_to_read = 0;
+ RFIFOSKIP (fd, 30);
+ break;
+
+ case 0x7949: // answer of an account validity limit set
+ if (RFIFOREST (fd) < 34)
+ return 0;
+ if (RFIFOL (fd, 2) == -1)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Echec du changement de la validité du compte [%s]. Le compte n'existe pas.\n",
+ RFIFOP (fd, 6));
+ ladmin_log
+ ("Echec du changement de la validité du compte [%s]. Le compte n'existe pas."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ else
+ {
+ printf
+ ("Account [%s] validity limit changing failed. Account doesn't exist.\n",
+ RFIFOP (fd, 6));
+ ladmin_log
+ ("Account [%s] validity limit changing failed. Account doesn't exist."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ }
+ else
+ {
+ time_t timestamp = RFIFOL (fd, 30);
+ if (timestamp == 0)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Limite de validité du compte [%s][id: %d] changée avec succès en [illimité].\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ ladmin_log
+ ("Limite de validité du compte [%s][id: %d] changée avec succès en [illimité]."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2));
+ }
+ else
+ {
+ printf
+ ("Validity Limit of the account [%s][id: %d] successfully changed to [unlimited].\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ ladmin_log
+ ("Validity Limit of the account [%s][id: %d] successfully changed to [unlimited]."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2));
+ }
+ }
+ else
+ {
+ char tmpstr[128];
+ strftime (tmpstr, 24, date_format,
+ localtime (&timestamp));
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Limite de validité du compte [%s][id: %d] changée avec succès pour être jusqu'au %s.\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2), tmpstr);
+ ladmin_log
+ ("Limite de validité du compte [%s][id: %d] changée avec succès pour être jusqu'au %s."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2),
+ tmpstr);
+ }
+ else
+ {
+ printf
+ ("Validity Limit of the account [%s][id: %d] successfully changed to be until %s.\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2), tmpstr);
+ ladmin_log
+ ("Validity Limit of the account [%s][id: %d] successfully changed to be until %s."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2),
+ tmpstr);
+ }
+ }
+ }
+ bytes_to_read = 0;
+ RFIFOSKIP (fd, 34);
+ break;
+
+ case 0x794b: // answer of an account ban set
+ if (RFIFOREST (fd) < 34)
+ return 0;
+ if (RFIFOL (fd, 2) == -1)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Echec du changement de la date finale de banissement du compte [%s]. Le compte n'existe pas.\n",
+ RFIFOP (fd, 6));
+ ladmin_log
+ ("Echec du changement de la date finale de banissement du compte [%s]. Le compte n'existe pas."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ else
+ {
+ printf
+ ("Account [%s] final date of banishment changing failed. Account doesn't exist.\n",
+ RFIFOP (fd, 6));
+ ladmin_log
+ ("Account [%s] final date of banishment changing failed. Account doesn't exist."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ }
+ else
+ {
+ time_t timestamp = RFIFOL (fd, 30);
+ if (timestamp == 0)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Date finale de banissement du compte [%s][id: %d] changée avec succès en [dé-bannie].\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ ladmin_log
+ ("Date finale de banissement du compte [%s][id: %d] changée avec succès en [dé-bannie]."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2));
+ }
+ else
+ {
+ printf
+ ("Final date of banishment of the account [%s][id: %d] successfully changed to [unbanished].\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ ladmin_log
+ ("Final date of banishment of the account [%s][id: %d] successfully changed to [unbanished]."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2));
+ }
+ }
+ else
+ {
+ char tmpstr[128];
+ strftime (tmpstr, 24, date_format,
+ localtime (&timestamp));
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Date finale de banissement du compte [%s][id: %d] changée avec succès pour être jusqu'au %s.\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2), tmpstr);
+ ladmin_log
+ ("Date finale de banissement du compte [%s][id: %d] changée avec succès pour être jusqu'au %s."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2),
+ tmpstr);
+ }
+ else
+ {
+ printf
+ ("Final date of banishment of the account [%s][id: %d] successfully changed to be until %s.\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2), tmpstr);
+ ladmin_log
+ ("Final date of banishment of the account [%s][id: %d] successfully changed to be until %s."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2),
+ tmpstr);
+ }
+ }
+ }
+ bytes_to_read = 0;
+ RFIFOSKIP (fd, 34);
+ break;
+
+ case 0x794d: // answer of an account ban date/time changing
+ if (RFIFOREST (fd) < 34)
+ return 0;
+ if (RFIFOL (fd, 2) == -1)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Echec du changement de la date finale de banissement du compte [%s]. Le compte n'existe pas.\n",
+ RFIFOP (fd, 6));
+ ladmin_log
+ ("Echec du changement de la date finale de banissement du compte [%s]. Le compte n'existe pas."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ else
+ {
+ printf
+ ("Account [%s] final date of banishment changing failed. Account doesn't exist.\n",
+ RFIFOP (fd, 6));
+ ladmin_log
+ ("Account [%s] final date of banishment changing failed. Account doesn't exist."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ }
+ else
+ {
+ time_t timestamp = RFIFOL (fd, 30);
+ if (timestamp == 0)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Date finale de banissement du compte [%s][id: %d] changée avec succès en [dé-bannie].\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ ladmin_log
+ ("Date finale de banissement du compte [%s][id: %d] changée avec succès en [dé-bannie]."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2));
+ }
+ else
+ {
+ printf
+ ("Final date of banishment of the account [%s][id: %d] successfully changed to [unbanished].\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ ladmin_log
+ ("Final date of banishment of the account [%s][id: %d] successfully changed to [unbanished]."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2));
+ }
+ }
+ else
+ {
+ char tmpstr[128];
+ strftime (tmpstr, 24, date_format,
+ localtime (&timestamp));
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Date finale de banissement du compte [%s][id: %d] changée avec succès pour être jusqu'au %s.\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2), tmpstr);
+ ladmin_log
+ ("Date finale de banissement du compte [%s][id: %d] changée avec succès pour être jusqu'au %s."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2),
+ tmpstr);
+ }
+ else
+ {
+ printf
+ ("Final date of banishment of the account [%s][id: %d] successfully changed to be until %s.\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2), tmpstr);
+ ladmin_log
+ ("Final date of banishment of the account [%s][id: %d] successfully changed to be until %s."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2),
+ tmpstr);
+ }
+ }
+ }
+ bytes_to_read = 0;
+ RFIFOSKIP (fd, 34);
+ break;
+
+ case 0x794f: // answer of a broadcast
+ if (RFIFOREST (fd) < 4)
+ return 0;
+ if (RFIFOW (fd, 2) == (unsigned short) -1)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Echec de l'envoi du message. Aucun server de char en ligne.\n");
+ ladmin_log
+ ("Echec de l'envoi du message. Aucun server de char en ligne."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Message sending failed. No online char-server.\n");
+ ladmin_log
+ ("Message sending failed. No online char-server."
+ RETCODE);
+ }
+ }
+ else
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Message transmis au server de logins avec succès.\n");
+ ladmin_log
+ ("Message transmis au server de logins avec succès."
+ RETCODE);
+ }
+ else
+ {
+ printf
+ ("Message successfully sended to login-server.\n");
+ ladmin_log
+ ("Message successfully sended to login-server."
+ RETCODE);
+ }
+ }
+ bytes_to_read = 0;
+ RFIFOSKIP (fd, 4);
+ break;
+
+ case 0x7951: // answer of an account validity limit changing
+ if (RFIFOREST (fd) < 34)
+ return 0;
+ if (RFIFOL (fd, 2) == -1)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Echec du changement de la validité du compte [%s]. Le compte n'existe pas.\n",
+ RFIFOP (fd, 6));
+ ladmin_log
+ ("Echec du changement de la validité du compte [%s]. Le compte n'existe pas."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ else
+ {
+ printf
+ ("Account [%s] validity limit changing failed. Account doesn't exist.\n",
+ RFIFOP (fd, 6));
+ ladmin_log
+ ("Account [%s] validity limit changing failed. Account doesn't exist."
+ RETCODE, RFIFOP (fd, 6));
+ }
+ }
+ else
+ {
+ time_t timestamp = RFIFOL (fd, 30);
+ if (timestamp == 0)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Limite de validité du compte [%s][id: %d] inchangée.\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ printf
+ ("Le compte a une validité illimitée ou\n");
+ printf
+ ("la modification est impossible avec les ajustements demandés.\n");
+ ladmin_log
+ ("Limite de validité du compte [%s][id: %d] inchangée. Le compte a une validité illimitée ou la modification est impossible avec les ajustements demandés."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2));
+ }
+ else
+ {
+ printf
+ ("Validity limit of the account [%s][id: %d] unchanged.\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2));
+ printf
+ ("The account have an unlimited validity limit or\n");
+ printf
+ ("the changing is impossible with the proposed adjustments.\n");
+ ladmin_log
+ ("Validity limit of the account [%s][id: %d] unchanged. The account have an unlimited validity limit or the changing is impossible with the proposed adjustments."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2));
+ }
+ }
+ else
+ {
+ char tmpstr[128];
+ strftime (tmpstr, 24, date_format,
+ localtime (&timestamp));
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Limite de validité du compte [%s][id: %d] changée avec succès pour être jusqu'au %s.\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2), tmpstr);
+ ladmin_log
+ ("Limite de validité du compte [%s][id: %d] changée avec succès pour être jusqu'au %s."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2),
+ tmpstr);
+ }
+ else
+ {
+ printf
+ ("Validity limit of the account [%s][id: %d] successfully changed to be until %s.\n",
+ RFIFOP (fd, 6), RFIFOL (fd, 2), tmpstr);
+ ladmin_log
+ ("Validity limit of the account [%s][id: %d] successfully changed to be until %s."
+ RETCODE, RFIFOP (fd, 6), RFIFOL (fd, 2),
+ tmpstr);
+ }
+ }
+ }
+ bytes_to_read = 0;
+ RFIFOSKIP (fd, 34);
+ break;
+
+ case 0x7953: // answer of a request about informations of an account (by account name/id)
+ if (RFIFOREST (fd) < 150
+ || RFIFOREST (fd) < (150 + RFIFOW (fd, 148)))
+ return 0;
+ {
+ char userid[24], error_message[20], lastlogin[24],
+ last_ip[16], email[40], memo[255];
+ time_t ban_until_time; // # of seconds 1/1/1970 (timestamp): ban time limit of the account (0 = no ban)
+ time_t connect_until_time; // # of seconds 1/1/1970 (timestamp): Validity limit of the account (0 = unlimited)
+ memcpy (userid, RFIFOP (fd, 7), sizeof (userid));
+ userid[sizeof (userid) - 1] = '\0';
+ memcpy (error_message, RFIFOP (fd, 40),
+ sizeof (error_message));
+ error_message[sizeof (error_message) - 1] = '\0';
+ memcpy (lastlogin, RFIFOP (fd, 60), sizeof (lastlogin));
+ lastlogin[sizeof (lastlogin) - 1] = '\0';
+ memcpy (last_ip, RFIFOP (fd, 84), sizeof (last_ip));
+ last_ip[sizeof (last_ip) - 1] = '\0';
+ memcpy (email, RFIFOP (fd, 100), sizeof (email));
+ email[sizeof (email) - 1] = '\0';
+ connect_until_time = (time_t) RFIFOL (fd, 140);
+ ban_until_time = (time_t) RFIFOL (fd, 144);
+ memset (memo, '\0', sizeof (memo));
+ strncpy (memo, RFIFOP (fd, 150), RFIFOW (fd, 148));
+ if (RFIFOL (fd, 2) == -1)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Impossible de trouver le compte [%s]. Le compte n'existe pas.\n",
+ parameters);
+ ladmin_log
+ ("Impossible de trouver le compte [%s]. Le compte n'existe pas."
+ RETCODE, parameters);
+ }
+ else
+ {
+ printf
+ ("Unabled to find the account [%s]. Account doesn't exist.\n",
+ parameters);
+ ladmin_log
+ ("Unabled to find the account [%s]. Account doesn't exist."
+ RETCODE, parameters);
+ }
+ }
+ else if (strlen (userid) == 0)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf
+ ("Impossible de trouver le compte [id: %s]. Le compte n'existe pas.\n",
+ parameters);
+ ladmin_log
+ ("Impossible de trouver le compte [id: %s]. Le compte n'existe pas."
+ RETCODE, parameters);
+ }
+ else
+ {
+ printf
+ ("Unabled to find the account [id: %s]. Account doesn't exist.\n",
+ parameters);
+ ladmin_log
+ ("Unabled to find the account [id: %s]. Account doesn't exist."
+ RETCODE, parameters);
+ }
+ }
+ else
+ {
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log
+ ("Réception d'information concernant un compte."
+ RETCODE);
+ printf
+ ("Le compte a les caractéristiques suivantes:\n");
+ }
+ else
+ {
+ ladmin_log
+ ("Receiving information about an account."
+ RETCODE);
+ printf ("The account is set with:\n");
+ }
+ if (RFIFOB (fd, 6) == 0)
+ {
+ printf (" Id: %d (non-GM)\n", RFIFOL (fd, 2));
+ }
+ else
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf (" Id: %d (GM niveau %d)\n",
+ RFIFOL (fd, 2), (int) RFIFOB (fd, 6));
+ }
+ else
+ {
+ printf (" Id: %d (GM level %d)\n",
+ RFIFOL (fd, 2), (int) RFIFOB (fd, 6));
+ }
+ }
+ if (defaultlanguage == 'F')
+ {
+ printf (" Nom: '%s'\n", userid);
+ if (RFIFOB (fd, 31) == 0)
+ printf (" Sexe: Femme\n");
+ else if (RFIFOB (fd, 31) == 1)
+ printf (" Sexe: Male\n");
+ else
+ printf (" Sexe: Serveur\n");
+ }
+ else
+ {
+ printf (" Name: '%s'\n", userid);
+ if (RFIFOB (fd, 31) == 0)
+ printf (" Sex: Female\n");
+ else if (RFIFOB (fd, 31) == 1)
+ printf (" Sex: Male\n");
+ else
+ printf (" Sex: Server\n");
+ }
+ printf (" E-mail: %s\n", email);
+ switch (RFIFOL (fd, 36))
+ {
+ case 0:
+ if (defaultlanguage == 'F')
+ printf (" Statut: 0 [Compte Ok]\n");
+ else
+ printf (" Statut: 0 [Account OK]\n");
+ break;
+ case 1:
+ printf (" Statut: 1 [Unregistered ID]\n");
+ break;
+ case 2:
+ printf (" Statut: 2 [Incorrect Password]\n");
+ break;
+ case 3:
+ printf (" Statut: 3 [This ID is expired]\n");
+ break;
+ case 4:
+ printf
+ (" Statut: 4 [Rejected from Server]\n");
+ break;
+ case 5:
+ printf
+ (" Statut: 5 [You have been blocked by the GM Team]\n");
+ break;
+ case 6:
+ printf
+ (" Statut: 6 [Your Game's EXE file is not the latest version]\n");
+ break;
+ case 7:
+ printf
+ (" Statut: 7 [You are Prohibited to log in until %s]\n",
+ error_message);
+ break;
+ case 8:
+ printf
+ (" Statut: 8 [Server is jammed due to over populated]\n");
+ break;
+ case 9:
+ printf (" Statut: 9 [No MSG]\n");
+ break;
+ default: // 100
+ printf
+ (" Statut: %d [This ID is totally erased]\n",
+ RFIFOL (fd, 36));
+ break;
+ }
+ if (defaultlanguage == 'F')
+ {
+ if (ban_until_time == 0)
+ {
+ printf (" Banissement: non banni.\n");
+ }
+ else
+ {
+ char tmpstr[128];
+ strftime (tmpstr, 24, date_format,
+ localtime (&ban_until_time));
+ printf (" Banissement: jusqu'au %s.\n",
+ tmpstr);
+ }
+ if (RFIFOL (fd, 32) > 1)
+ printf (" Compteur: %d connexions.\n",
+ RFIFOL (fd, 32));
+ else
+ printf (" Compteur: %d connexion.\n",
+ RFIFOL (fd, 32));
+ printf (" Dernière connexion le: %s (ip: %s)\n",
+ lastlogin, last_ip);
+ if (connect_until_time == 0)
+ {
+ printf (" Limite de validité: illimité.\n");
+ }
+ else
+ {
+ char tmpstr[128];
+ strftime (tmpstr, 24, date_format,
+ localtime (&connect_until_time));
+ printf (" Limite de validité: jusqu'au %s.\n",
+ tmpstr);
+ }
+ }
+ else
+ {
+ if (ban_until_time == 0)
+ {
+ printf (" Banishment: not banished.\n");
+ }
+ else
+ {
+ char tmpstr[128];
+ strftime (tmpstr, 24, date_format,
+ localtime (&ban_until_time));
+ printf (" Banishment: until %s.\n", tmpstr);
+ }
+ if (RFIFOL (fd, 32) > 1)
+ printf (" Count: %d connections.\n",
+ RFIFOL (fd, 32));
+ else
+ printf (" Count: %d connection.\n",
+ RFIFOL (fd, 32));
+ printf (" Last connection at: %s (ip: %s)\n",
+ lastlogin, last_ip);
+ if (connect_until_time == 0)
+ {
+ printf (" Validity limit: unlimited.\n");
+ }
+ else
+ {
+ char tmpstr[128];
+ strftime (tmpstr, 24, date_format,
+ localtime (&connect_until_time));
+ printf (" Validity limit: until %s.\n",
+ tmpstr);
+ }
+ }
+ printf (" Memo: '%s'\n", memo);
+ }
+ }
+ bytes_to_read = 0;
+ RFIFOSKIP (fd, 150 + RFIFOW (fd, 148));
+ break;
+
+ default:
+ printf
+ ("Remote administration has been disconnected (unknown packet).\n");
+ ladmin_log ("'End of connection, unknown packet." RETCODE);
+ session[fd]->eof = 1;
+ return 0;
+ }
+ }
- // if we don't wait new packets, do the prompt
- prompt();
+ // if we don't wait new packets, do the prompt
+ prompt ();
- return 0;
+ return 0;
}
//------------------------------------
// Function to connect to login-server
//------------------------------------
-int Connect_login_server() {
- if (defaultlanguage == 'F') {
- Iprintf("Essai de connection au server de logins...\n");
- ladmin_log("Essai de connection au server de logins..." RETCODE);
- } else {
- Iprintf("Attempt to connect to login-server...\n");
- ladmin_log("Attempt to connect to login-server..." RETCODE);
- }
-
- if ((login_fd = make_connection(login_ip, loginserverport)) < 0)
- return 0;
+int Connect_login_server ()
+{
+ if (defaultlanguage == 'F')
+ {
+ Iprintf ("Essai de connection au server de logins...\n");
+ ladmin_log ("Essai de connection au server de logins..." RETCODE);
+ }
+ else
+ {
+ Iprintf ("Attempt to connect to login-server...\n");
+ ladmin_log ("Attempt to connect to login-server..." RETCODE);
+ }
+
+ if ((login_fd = make_connection (login_ip, loginserverport)) < 0)
+ return 0;
#ifdef PASSWORDENC
- if (passenc == 0) {
+ if (passenc == 0)
+ {
#endif
- WFIFOW(login_fd,0) = 0x7918; // Request for administation login
- WFIFOW(login_fd,2) = 0; // no encrypted
- memcpy(WFIFOP(login_fd,4), loginserveradminpassword, 24);
- WFIFOSET(login_fd,28);
- bytes_to_read = 1;
-
- if (defaultlanguage == 'F') {
- Iprintf("Envoi du mot de passe...\n");
- ladmin_log("Envoi du mot de passe..." RETCODE);
- } else {
- Iprintf("Sending of the password...\n");
- ladmin_log("Sending of the password..." RETCODE);
- }
+ WFIFOW (login_fd, 0) = 0x7918; // Request for administation login
+ WFIFOW (login_fd, 2) = 0; // no encrypted
+ memcpy (WFIFOP (login_fd, 4), loginserveradminpassword, 24);
+ WFIFOSET (login_fd, 28);
+ bytes_to_read = 1;
+
+ if (defaultlanguage == 'F')
+ {
+ Iprintf ("Envoi du mot de passe...\n");
+ ladmin_log ("Envoi du mot de passe..." RETCODE);
+ }
+ else
+ {
+ Iprintf ("Sending of the password...\n");
+ ladmin_log ("Sending of the password..." RETCODE);
+ }
#ifdef PASSWORDENC
- } else {
- WFIFOW(login_fd,0) = 0x791a; // Sending request about the coding key
- WFIFOSET(login_fd,2);
- bytes_to_read = 1;
- if (defaultlanguage == 'F') {
- Iprintf("Demande de la clef MD5...\n");
- ladmin_log("Demande de la clef MD5..." RETCODE);
- } else {
- Iprintf("Request about the MD5 key...\n");
- ladmin_log("Request about the MD5 key..." RETCODE);
- }
- }
+ }
+ else
+ {
+ WFIFOW (login_fd, 0) = 0x791a; // Sending request about the coding key
+ WFIFOSET (login_fd, 2);
+ bytes_to_read = 1;
+ if (defaultlanguage == 'F')
+ {
+ Iprintf ("Demande de la clef MD5...\n");
+ ladmin_log ("Demande de la clef MD5..." RETCODE);
+ }
+ else
+ {
+ Iprintf ("Request about the MD5 key...\n");
+ ladmin_log ("Request about the MD5 key..." RETCODE);
+ }
+ }
#endif
- return 0;
+ return 0;
}
//-------------------------------------------------
// Return numerical value of a switch configuration
// on/off, english, français, deutsch, español
//-------------------------------------------------
-int config_switch(const char *str) {
- if (strcmpi(str, "on") == 0 || strcmpi(str, "yes") == 0 || strcmpi(str, "oui") == 0 || strcmpi(str, "ja") == 0 || strcmpi(str, "si") == 0)
- return 1;
- if (strcmpi(str, "off") == 0 || strcmpi(str, "no") == 0 || strcmpi(str, "non") == 0 || strcmpi(str, "nein") == 0)
- return 0;
-
- return atoi(str);
+int config_switch (const char *str)
+{
+ if (strcmpi (str, "on") == 0 || strcmpi (str, "yes") == 0
+ || strcmpi (str, "oui") == 0 || strcmpi (str, "ja") == 0
+ || strcmpi (str, "si") == 0)
+ return 1;
+ if (strcmpi (str, "off") == 0 || strcmpi (str, "no") == 0
+ || strcmpi (str, "non") == 0 || strcmpi (str, "nein") == 0)
+ return 0;
+
+ return atoi (str);
}
//-----------------------------------
// Reading general configuration file
//-----------------------------------
-int ladmin_config_read(const char *cfgName) {
- char line[1024], w1[1024], w2[1024];
- FILE *fp;
-
- fp = fopen_(cfgName, "r");
- if (fp == NULL) {
- if (defaultlanguage == 'F') {
- printf("\033[0mFichier de configuration (%s) non trouvé.\n", cfgName);
- } else {
- printf("\033[0mConfiguration file (%s) not found.\n", cfgName);
- }
- return 1;
- }
-
- if (defaultlanguage == 'F') {
- Iprintf("\033[0m---Début de lecture du fichier de configuration Ladmin (%s)\n", cfgName);
- } else {
- Iprintf("\033[0m---Start reading of Ladmin configuration file (%s)\n", cfgName);
- }
- while(fgets(line, sizeof(line)-1, fp)) {
- if (line[0] == '/' && line[1] == '/')
- continue;
-
- line[sizeof(line)-1] = '\0';
- if (sscanf(line, "%[^:]: %[^\r\n]", w1, w2) == 2) {
- remove_control_chars(w1);
- remove_control_chars(w2);
-
- if(strcmpi(w1,"login_ip")==0){
- struct hostent *h = gethostbyname (w2);
- if (h != NULL) {
- if (defaultlanguage == 'F') {
- Iprintf("Adresse du serveur de logins: %s -> %d.%d.%d.%d\n", w2, (unsigned char)h->h_addr[0], (unsigned char)h->h_addr[1], (unsigned char)h->h_addr[2], (unsigned char)h->h_addr[3]);
- } else {
- Iprintf("Login server IP address: %s -> %d.%d.%d.%d\n", w2, (unsigned char)h->h_addr[0], (unsigned char)h->h_addr[1], (unsigned char)h->h_addr[2], (unsigned char)h->h_addr[3]);
- }
- sprintf(loginserverip, "%d.%d.%d.%d", (unsigned char)h->h_addr[0], (unsigned char)h->h_addr[1], (unsigned char)h->h_addr[2], (unsigned char)h->h_addr[3]);
- } else
- memcpy(loginserverip, w2, 16);
- } else if (strcmpi(w1, "login_port") == 0) {
- loginserverport = atoi(w2);
- } else if (strcmpi(w1, "admin_pass") == 0) {
- strncpy(loginserveradminpassword, w2, sizeof(loginserveradminpassword));
- loginserveradminpassword[sizeof(loginserveradminpassword)-1] = '\0';
+int ladmin_config_read (const char *cfgName)
+{
+ char line[1024], w1[1024], w2[1024];
+ FILE *fp;
+
+ fp = fopen_ (cfgName, "r");
+ if (fp == NULL)
+ {
+ if (defaultlanguage == 'F')
+ {
+ printf ("\033[0mFichier de configuration (%s) non trouvé.\n",
+ cfgName);
+ }
+ else
+ {
+ printf ("\033[0mConfiguration file (%s) not found.\n", cfgName);
+ }
+ return 1;
+ }
+
+ if (defaultlanguage == 'F')
+ {
+ Iprintf
+ ("\033[0m---Début de lecture du fichier de configuration Ladmin (%s)\n",
+ cfgName);
+ }
+ else
+ {
+ Iprintf
+ ("\033[0m---Start reading of Ladmin configuration file (%s)\n",
+ cfgName);
+ }
+ while (fgets (line, sizeof (line) - 1, fp))
+ {
+ if (line[0] == '/' && line[1] == '/')
+ continue;
+
+ line[sizeof (line) - 1] = '\0';
+ if (sscanf (line, "%[^:]: %[^\r\n]", w1, w2) == 2)
+ {
+ remove_control_chars (w1);
+ remove_control_chars (w2);
+
+ if (strcmpi (w1, "login_ip") == 0)
+ {
+ struct hostent *h = gethostbyname (w2);
+ if (h != NULL)
+ {
+ if (defaultlanguage == 'F')
+ {
+ Iprintf
+ ("Adresse du serveur de logins: %s -> %d.%d.%d.%d\n",
+ w2, (unsigned char) h->h_addr[0],
+ (unsigned char) h->h_addr[1],
+ (unsigned char) h->h_addr[2],
+ (unsigned char) h->h_addr[3]);
+ }
+ else
+ {
+ Iprintf
+ ("Login server IP address: %s -> %d.%d.%d.%d\n",
+ w2, (unsigned char) h->h_addr[0],
+ (unsigned char) h->h_addr[1],
+ (unsigned char) h->h_addr[2],
+ (unsigned char) h->h_addr[3]);
+ }
+ sprintf (loginserverip, "%d.%d.%d.%d",
+ (unsigned char) h->h_addr[0],
+ (unsigned char) h->h_addr[1],
+ (unsigned char) h->h_addr[2],
+ (unsigned char) h->h_addr[3]);
+ }
+ else
+ memcpy (loginserverip, w2, 16);
+ }
+ else if (strcmpi (w1, "login_port") == 0)
+ {
+ loginserverport = atoi (w2);
+ }
+ else if (strcmpi (w1, "admin_pass") == 0)
+ {
+ strncpy (loginserveradminpassword, w2,
+ sizeof (loginserveradminpassword));
+ loginserveradminpassword[sizeof (loginserveradminpassword) -
+ 1] = '\0';
#ifdef PASSWORDENC
- } else if (strcmpi(w1, "passenc") == 0) {
- passenc = atoi(w2);
- if (passenc < 0 || passenc > 2)
- passenc = 0;
+ }
+ else if (strcmpi (w1, "passenc") == 0)
+ {
+ passenc = atoi (w2);
+ if (passenc < 0 || passenc > 2)
+ passenc = 0;
#endif
- } else if (strcmpi(w1, "defaultlanguage") == 0) {
- if (w2[0] == 'F' || w2[0] == 'E')
- defaultlanguage = w2[0];
- } else if (strcmpi(w1, "ladmin_log_filename") == 0) {
- strncpy(ladmin_log_filename, w2, sizeof(ladmin_log_filename));
- ladmin_log_filename[sizeof(ladmin_log_filename)-1] = '\0';
- } else if (strcmpi(w1, "date_format") == 0) { // note: never have more than 19 char for the date!
- switch (atoi(w2)) {
- case 0:
- strcpy(date_format, "%d-%m-%Y %H:%M:%S"); // 31-12-2004 23:59:59
- break;
- case 1:
- strcpy(date_format, "%m-%d-%Y %H:%M:%S"); // 12-31-2004 23:59:59
- break;
- case 2:
- strcpy(date_format, "%Y-%d-%m %H:%M:%S"); // 2004-31-12 23:59:59
- break;
- case 3:
- strcpy(date_format, "%Y-%m-%d %H:%M:%S"); // 2004-12-31 23:59:59
- break;
- }
- } else if (strcmpi(w1, "import") == 0) {
- ladmin_config_read(w2);
- }
- }
- }
- fclose_(fp);
+ }
+ else if (strcmpi (w1, "defaultlanguage") == 0)
+ {
+ if (w2[0] == 'F' || w2[0] == 'E')
+ defaultlanguage = w2[0];
+ }
+ else if (strcmpi (w1, "ladmin_log_filename") == 0)
+ {
+ strncpy (ladmin_log_filename, w2,
+ sizeof (ladmin_log_filename));
+ ladmin_log_filename[sizeof (ladmin_log_filename) - 1] = '\0';
+ }
+ else if (strcmpi (w1, "date_format") == 0)
+ { // note: never have more than 19 char for the date!
+ switch (atoi (w2))
+ {
+ case 0:
+ strcpy (date_format, "%d-%m-%Y %H:%M:%S"); // 31-12-2004 23:59:59
+ break;
+ case 1:
+ strcpy (date_format, "%m-%d-%Y %H:%M:%S"); // 12-31-2004 23:59:59
+ break;
+ case 2:
+ strcpy (date_format, "%Y-%d-%m %H:%M:%S"); // 2004-31-12 23:59:59
+ break;
+ case 3:
+ strcpy (date_format, "%Y-%m-%d %H:%M:%S"); // 2004-12-31 23:59:59
+ break;
+ }
+ }
+ else if (strcmpi (w1, "import") == 0)
+ {
+ ladmin_config_read (w2);
+ }
+ }
+ }
+ fclose_ (fp);
- login_ip = inet_addr(loginserverip);
+ login_ip = inet_addr (loginserverip);
- if (defaultlanguage == 'F') {
- Iprintf("---Lecture du fichier de configuration Ladmin terminée.\n");
- } else {
- Iprintf("---End reading of Ladmin configuration file.\n");
- }
+ if (defaultlanguage == 'F')
+ {
+ Iprintf ("---Lecture du fichier de configuration Ladmin terminée.\n");
+ }
+ else
+ {
+ Iprintf ("---End reading of Ladmin configuration file.\n");
+ }
- return 0;
+ return 0;
}
//--------------------------------------
// Function called at exit of the server
//--------------------------------------
-void do_final(void) {
-
- if (already_exit_function == 0) {
- delete_session(login_fd);
+void do_final (void)
+{
- if (defaultlanguage == 'F') {
- Iprintf("\033[0m----Fin de Ladmin (fin normale avec fermeture de tous les fichiers).\n");
- ladmin_log("----Fin de Ladmin (fin normale avec fermeture de tous les fichiers)." RETCODE);
- } else {
- Iprintf("\033[0m----End of Ladmin (normal end with closing of all files).\n");
- ladmin_log("----End of Ladmin (normal end with closing of all files)." RETCODE);
- }
+ if (already_exit_function == 0)
+ {
+ delete_session (login_fd);
+
+ if (defaultlanguage == 'F')
+ {
+ Iprintf
+ ("\033[0m----Fin de Ladmin (fin normale avec fermeture de tous les fichiers).\n");
+ ladmin_log
+ ("----Fin de Ladmin (fin normale avec fermeture de tous les fichiers)."
+ RETCODE);
+ }
+ else
+ {
+ Iprintf
+ ("\033[0m----End of Ladmin (normal end with closing of all files).\n");
+ ladmin_log
+ ("----End of Ladmin (normal end with closing of all files)."
+ RETCODE);
+ }
- already_exit_function = 1;
- }
+ already_exit_function = 1;
+ }
}
//------------------------
// Main function of ladmin
//------------------------
-int do_init(int argc, char **argv) {
- // read ladmin configuration
- ladmin_config_read((argc > 1) ? argv[1] : LADMIN_CONF_NAME);
-
- ladmin_log("");
- if (defaultlanguage == 'F') {
- ladmin_log("Fichier de configuration lu." RETCODE);
- } else {
- ladmin_log("Configuration file readed." RETCODE);
- }
-
- srand(time(NULL));
-
- set_termfunc(do_final);
- set_defaultparse(parse_fromlogin);
-
- if (defaultlanguage == 'F') {
- Iprintf("Outil d'administration à distance de eAthena.\n");
- Iprintf("(pour eAthena version %d.%d.%d.)\n", ATHENA_MAJOR_VERSION, ATHENA_MINOR_VERSION, ATHENA_REVISION);
- } else {
- Iprintf("EAthena login-server administration tool.\n");
- Iprintf("(for eAthena version %d.%d.%d.)\n", ATHENA_MAJOR_VERSION, ATHENA_MINOR_VERSION, ATHENA_REVISION);
- }
-
- if (defaultlanguage == 'F') {
- ladmin_log("Ladmin est prêt." RETCODE);
- Iprintf("Ladmin est \033[1;32mprêt\033[0m.\n\n");
- } else {
- ladmin_log("Ladmin is ready." RETCODE);
- Iprintf("Ladmin is \033[1;32mready\033[0m.\n\n");
- }
-
- Connect_login_server();
-
- atexit(do_final);
-
- return 0;
+int do_init (int argc, char **argv)
+{
+ // read ladmin configuration
+ ladmin_config_read ((argc > 1) ? argv[1] : LADMIN_CONF_NAME);
+
+ ladmin_log ("");
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log ("Fichier de configuration lu." RETCODE);
+ }
+ else
+ {
+ ladmin_log ("Configuration file readed." RETCODE);
+ }
+
+ srand (time (NULL));
+
+ set_termfunc (do_final);
+ set_defaultparse (parse_fromlogin);
+
+ if (defaultlanguage == 'F')
+ {
+ Iprintf ("Outil d'administration à distance de eAthena.\n");
+ Iprintf ("(pour eAthena version %d.%d.%d.)\n", ATHENA_MAJOR_VERSION,
+ ATHENA_MINOR_VERSION, ATHENA_REVISION);
+ }
+ else
+ {
+ Iprintf ("EAthena login-server administration tool.\n");
+ Iprintf ("(for eAthena version %d.%d.%d.)\n", ATHENA_MAJOR_VERSION,
+ ATHENA_MINOR_VERSION, ATHENA_REVISION);
+ }
+
+ if (defaultlanguage == 'F')
+ {
+ ladmin_log ("Ladmin est prêt." RETCODE);
+ Iprintf ("Ladmin est \033[1;32mprêt\033[0m.\n\n");
+ }
+ else
+ {
+ ladmin_log ("Ladmin is ready." RETCODE);
+ Iprintf ("Ladmin is \033[1;32mready\033[0m.\n\n");
+ }
+
+ Connect_login_server ();
+
+ atexit (do_final);
+
+ return 0;
}
diff --git a/src/ladmin/ladmin.h b/src/ladmin/ladmin.h
index f76bfc2..dc1efe6 100644
--- a/src/ladmin/ladmin.h
+++ b/src/ladmin/ladmin.h
@@ -3,9 +3,9 @@
#define _LADMIN_H_
#define LADMIN_CONF_NAME "conf/ladmin_athena.conf"
-#define PASSWORDENC 3 // A definition is given when making an encryption password correspond.
- // It is 1 at the time of passwordencrypt.
- // It is made into 2 at the time of passwordencrypt2.
- // When it is made 3, it corresponds to both.
+#define PASSWORDENC 3 // A definition is given when making an encryption password correspond.
+ // It is 1 at the time of passwordencrypt.
+ // It is made into 2 at the time of passwordencrypt2.
+ // When it is made 3, it corresponds to both.
#endif
diff --git a/src/ladmin/md5calc.c b/src/ladmin/md5calc.c
index 7b9a9a2..49a4aaa 100644
--- a/src/ladmin/md5calc.c
+++ b/src/ladmin/md5calc.c
@@ -20,198 +20,255 @@ static unsigned int *pX;
// Stirng Table
static const unsigned int T[] = {
- 0xd76aa478, 0xe8c7b756, 0x242070db, 0xc1bdceee, //0
- 0xf57c0faf, 0x4787c62a, 0xa8304613, 0xfd469501, //4
- 0x698098d8, 0x8b44f7af, 0xffff5bb1, 0x895cd7be, //8
- 0x6b901122, 0xfd987193, 0xa679438e, 0x49b40821, //12
- 0xf61e2562, 0xc040b340, 0x265e5a51, 0xe9b6c7aa, //16
- 0xd62f105d, 0x2441453, 0xd8a1e681, 0xe7d3fbc8, //20
- 0x21e1cde6, 0xc33707d6, 0xf4d50d87, 0x455a14ed, //24
- 0xa9e3e905, 0xfcefa3f8, 0x676f02d9, 0x8d2a4c8a, //28
- 0xfffa3942, 0x8771f681, 0x6d9d6122, 0xfde5380c, //32
- 0xa4beea44, 0x4bdecfa9, 0xf6bb4b60, 0xbebfbc70, //36
- 0x289b7ec6, 0xeaa127fa, 0xd4ef3085, 0x4881d05, //40
- 0xd9d4d039, 0xe6db99e5, 0x1fa27cf8, 0xc4ac5665, //44
- 0xf4292244, 0x432aff97, 0xab9423a7, 0xfc93a039, //48
- 0x655b59c3, 0x8f0ccc92, 0xffeff47d, 0x85845dd1, //52
- 0x6fa87e4f, 0xfe2ce6e0, 0xa3014314, 0x4e0811a1, //56
- 0xf7537e82, 0xbd3af235, 0x2ad7d2bb, 0xeb86d391 //60
+ 0xd76aa478, 0xe8c7b756, 0x242070db, 0xc1bdceee, //0
+ 0xf57c0faf, 0x4787c62a, 0xa8304613, 0xfd469501, //4
+ 0x698098d8, 0x8b44f7af, 0xffff5bb1, 0x895cd7be, //8
+ 0x6b901122, 0xfd987193, 0xa679438e, 0x49b40821, //12
+ 0xf61e2562, 0xc040b340, 0x265e5a51, 0xe9b6c7aa, //16
+ 0xd62f105d, 0x2441453, 0xd8a1e681, 0xe7d3fbc8, //20
+ 0x21e1cde6, 0xc33707d6, 0xf4d50d87, 0x455a14ed, //24
+ 0xa9e3e905, 0xfcefa3f8, 0x676f02d9, 0x8d2a4c8a, //28
+ 0xfffa3942, 0x8771f681, 0x6d9d6122, 0xfde5380c, //32
+ 0xa4beea44, 0x4bdecfa9, 0xf6bb4b60, 0xbebfbc70, //36
+ 0x289b7ec6, 0xeaa127fa, 0xd4ef3085, 0x4881d05, //40
+ 0xd9d4d039, 0xe6db99e5, 0x1fa27cf8, 0xc4ac5665, //44
+ 0xf4292244, 0x432aff97, 0xab9423a7, 0xfc93a039, //48
+ 0x655b59c3, 0x8f0ccc92, 0xffeff47d, 0x85845dd1, //52
+ 0x6fa87e4f, 0xfe2ce6e0, 0xa3014314, 0x4e0811a1, //56
+ 0xf7537e82, 0xbd3af235, 0x2ad7d2bb, 0xeb86d391 //60
};
// ROTATE_LEFT The left is made to rotate x [ n-bit ]. This is diverted as it is from RFC.
#define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n))))
// The function used for other calculation
-static unsigned int F(unsigned int X, unsigned int Y, unsigned int Z)
+static unsigned int F (unsigned int X, unsigned int Y, unsigned int Z)
{
- return (X & Y) | (~X & Z);
+ return (X & Y) | (~X & Z);
}
-static unsigned int G(unsigned int X, unsigned int Y, unsigned int Z)
+
+static unsigned int G (unsigned int X, unsigned int Y, unsigned int Z)
{
- return (X & Z) | (Y & ~Z);
+ return (X & Z) | (Y & ~Z);
}
-static unsigned int H(unsigned int X, unsigned int Y, unsigned int Z)
+
+static unsigned int H (unsigned int X, unsigned int Y, unsigned int Z)
{
- return X ^ Y ^ Z;
+ return X ^ Y ^ Z;
}
-static unsigned int I(unsigned int X, unsigned int Y, unsigned int Z)
+
+static unsigned int I (unsigned int X, unsigned int Y, unsigned int Z)
{
- return Y ^ (X | ~Z);
+ return Y ^ (X | ~Z);
}
-static unsigned int Round(unsigned int a, unsigned int b, unsigned int FGHI,
- unsigned int k, unsigned int s, unsigned int i)
+static unsigned int Round (unsigned int a, unsigned int b, unsigned int FGHI,
+ unsigned int k, unsigned int s, unsigned int i)
{
- return b + ROTATE_LEFT(a + FGHI + pX[k] + T[i], s);
+ return b + ROTATE_LEFT (a + FGHI + pX[k] + T[i], s);
}
-static void Round1(unsigned int *a, unsigned int b, unsigned int c,
- unsigned int d,unsigned int k, unsigned int s, unsigned int i)
+static void Round1 (unsigned int *a, unsigned int b, unsigned int c,
+ unsigned int d, unsigned int k, unsigned int s,
+ unsigned int i)
{
- *a = Round(*a, b, F(b,c,d), k, s, i);
+ *a = Round (*a, b, F (b, c, d), k, s, i);
}
-static void Round2(unsigned int *a, unsigned int b, unsigned int c,
- unsigned int d,unsigned int k, unsigned int s, unsigned int i)
+
+static void Round2 (unsigned int *a, unsigned int b, unsigned int c,
+ unsigned int d, unsigned int k, unsigned int s,
+ unsigned int i)
{
- *a = Round(*a, b, G(b,c,d), k, s, i);
+ *a = Round (*a, b, G (b, c, d), k, s, i);
}
-static void Round3(unsigned int *a, unsigned int b, unsigned int c,
- unsigned int d,unsigned int k, unsigned int s, unsigned int i)
+
+static void Round3 (unsigned int *a, unsigned int b, unsigned int c,
+ unsigned int d, unsigned int k, unsigned int s,
+ unsigned int i)
{
- *a = Round(*a, b, H(b,c,d), k, s, i);
+ *a = Round (*a, b, H (b, c, d), k, s, i);
}
-static void Round4(unsigned int *a, unsigned int b, unsigned int c,
- unsigned int d,unsigned int k, unsigned int s, unsigned int i)
+
+static void Round4 (unsigned int *a, unsigned int b, unsigned int c,
+ unsigned int d, unsigned int k, unsigned int s,
+ unsigned int i)
{
- *a = Round(*a, b, I(b,c,d), k, s, i);
+ *a = Round (*a, b, I (b, c, d), k, s, i);
}
-static void MD5_Round_Calculate(const unsigned char *block,
- unsigned int *A2, unsigned int *B2, unsigned int *C2, unsigned int *D2)
+static void MD5_Round_Calculate (const unsigned char *block,
+ unsigned int *A2, unsigned int *B2,
+ unsigned int *C2, unsigned int *D2)
{
- //create X It is since it is required.
- unsigned int X[16]; //512bit 64byte
- int j,k;
-
- //Save A as AA, B as BB, C as CC, and and D as DD (saving of A, B, C, and D)
- unsigned int A=*A2, B=*B2, C=*C2, D=*D2;
- unsigned int AA = A,BB = B,CC = C,DD = D;
-
- //It is a large region variable reluctantly because of calculation of a round. . . for Round1...4
- pX = X;
-
- //Copy block(padding_message) i into X
- for (j=0,k=0; j<64; j+=4,k++)
- X[k] = ( (unsigned int )block[j] ) // 8byte*4 -> 32byte conversion
- | ( ((unsigned int )block[j+1]) << 8 ) // A function called Decode as used in the field of RFC
- | ( ((unsigned int )block[j+2]) << 16 )
- | ( ((unsigned int )block[j+3]) << 24 );
-
-
- //Round 1
- Round1(&A,B,C,D, 0, 7, 0); Round1(&D,A,B,C, 1, 12, 1); Round1(&C,D,A,B, 2, 17, 2); Round1(&B,C,D,A, 3, 22, 3);
- Round1(&A,B,C,D, 4, 7, 4); Round1(&D,A,B,C, 5, 12, 5); Round1(&C,D,A,B, 6, 17, 6); Round1(&B,C,D,A, 7, 22, 7);
- Round1(&A,B,C,D, 8, 7, 8); Round1(&D,A,B,C, 9, 12, 9); Round1(&C,D,A,B, 10, 17, 10); Round1(&B,C,D,A, 11, 22, 11);
- Round1(&A,B,C,D, 12, 7, 12); Round1(&D,A,B,C, 13, 12, 13); Round1(&C,D,A,B, 14, 17, 14); Round1(&B,C,D,A, 15, 22, 15);
-
- //Round 2
- Round2(&A,B,C,D, 1, 5, 16); Round2(&D,A,B,C, 6, 9, 17); Round2(&C,D,A,B, 11, 14, 18); Round2(&B,C,D,A, 0, 20, 19);
- Round2(&A,B,C,D, 5, 5, 20); Round2(&D,A,B,C, 10, 9, 21); Round2(&C,D,A,B, 15, 14, 22); Round2(&B,C,D,A, 4, 20, 23);
- Round2(&A,B,C,D, 9, 5, 24); Round2(&D,A,B,C, 14, 9, 25); Round2(&C,D,A,B, 3, 14, 26); Round2(&B,C,D,A, 8, 20, 27);
- Round2(&A,B,C,D, 13, 5, 28); Round2(&D,A,B,C, 2, 9, 29); Round2(&C,D,A,B, 7, 14, 30); Round2(&B,C,D,A, 12, 20, 31);
-
- //Round 3
- Round3(&A,B,C,D, 5, 4, 32); Round3(&D,A,B,C, 8, 11, 33); Round3(&C,D,A,B, 11, 16, 34); Round3(&B,C,D,A, 14, 23, 35);
- Round3(&A,B,C,D, 1, 4, 36); Round3(&D,A,B,C, 4, 11, 37); Round3(&C,D,A,B, 7, 16, 38); Round3(&B,C,D,A, 10, 23, 39);
- Round3(&A,B,C,D, 13, 4, 40); Round3(&D,A,B,C, 0, 11, 41); Round3(&C,D,A,B, 3, 16, 42); Round3(&B,C,D,A, 6, 23, 43);
- Round3(&A,B,C,D, 9, 4, 44); Round3(&D,A,B,C, 12, 11, 45); Round3(&C,D,A,B, 15, 16, 46); Round3(&B,C,D,A, 2, 23, 47);
-
- //Round 4
- Round4(&A,B,C,D, 0, 6, 48); Round4(&D,A,B,C, 7, 10, 49); Round4(&C,D,A,B, 14, 15, 50); Round4(&B,C,D,A, 5, 21, 51);
- Round4(&A,B,C,D, 12, 6, 52); Round4(&D,A,B,C, 3, 10, 53); Round4(&C,D,A,B, 10, 15, 54); Round4(&B,C,D,A, 1, 21, 55);
- Round4(&A,B,C,D, 8, 6, 56); Round4(&D,A,B,C, 15, 10, 57); Round4(&C,D,A,B, 6, 15, 58); Round4(&B,C,D,A, 13, 21, 59);
- Round4(&A,B,C,D, 4, 6, 60); Round4(&D,A,B,C, 11, 10, 61); Round4(&C,D,A,B, 2, 15, 62); Round4(&B,C,D,A, 9, 21, 63);
-
- // Then perform the following additions. (let's add)
- *A2 = A + AA;
- *B2 = B + BB;
- *C2 = C + CC;
- *D2 = D + DD;
-
- //The clearance of confidential information
- memset(pX, 0, sizeof(X));
+ //create X It is since it is required.
+ unsigned int X[16]; //512bit 64byte
+ int j, k;
+
+ //Save A as AA, B as BB, C as CC, and and D as DD (saving of A, B, C, and D)
+ unsigned int A = *A2, B = *B2, C = *C2, D = *D2;
+ unsigned int AA = A, BB = B, CC = C, DD = D;
+
+ //It is a large region variable reluctantly because of calculation of a round. . . for Round1...4
+ pX = X;
+
+ //Copy block(padding_message) i into X
+ for (j = 0, k = 0; j < 64; j += 4, k++)
+ X[k] = ((unsigned int) block[j]) // 8byte*4 -> 32byte conversion
+ | (((unsigned int) block[j + 1]) << 8) // A function called Decode as used in the field of RFC
+ | (((unsigned int) block[j + 2]) << 16)
+ | (((unsigned int) block[j + 3]) << 24);
+
+ //Round 1
+ Round1 (&A, B, C, D, 0, 7, 0);
+ Round1 (&D, A, B, C, 1, 12, 1);
+ Round1 (&C, D, A, B, 2, 17, 2);
+ Round1 (&B, C, D, A, 3, 22, 3);
+ Round1 (&A, B, C, D, 4, 7, 4);
+ Round1 (&D, A, B, C, 5, 12, 5);
+ Round1 (&C, D, A, B, 6, 17, 6);
+ Round1 (&B, C, D, A, 7, 22, 7);
+ Round1 (&A, B, C, D, 8, 7, 8);
+ Round1 (&D, A, B, C, 9, 12, 9);
+ Round1 (&C, D, A, B, 10, 17, 10);
+ Round1 (&B, C, D, A, 11, 22, 11);
+ Round1 (&A, B, C, D, 12, 7, 12);
+ Round1 (&D, A, B, C, 13, 12, 13);
+ Round1 (&C, D, A, B, 14, 17, 14);
+ Round1 (&B, C, D, A, 15, 22, 15);
+
+ //Round 2
+ Round2 (&A, B, C, D, 1, 5, 16);
+ Round2 (&D, A, B, C, 6, 9, 17);
+ Round2 (&C, D, A, B, 11, 14, 18);
+ Round2 (&B, C, D, A, 0, 20, 19);
+ Round2 (&A, B, C, D, 5, 5, 20);
+ Round2 (&D, A, B, C, 10, 9, 21);
+ Round2 (&C, D, A, B, 15, 14, 22);
+ Round2 (&B, C, D, A, 4, 20, 23);
+ Round2 (&A, B, C, D, 9, 5, 24);
+ Round2 (&D, A, B, C, 14, 9, 25);
+ Round2 (&C, D, A, B, 3, 14, 26);
+ Round2 (&B, C, D, A, 8, 20, 27);
+ Round2 (&A, B, C, D, 13, 5, 28);
+ Round2 (&D, A, B, C, 2, 9, 29);
+ Round2 (&C, D, A, B, 7, 14, 30);
+ Round2 (&B, C, D, A, 12, 20, 31);
+
+ //Round 3
+ Round3 (&A, B, C, D, 5, 4, 32);
+ Round3 (&D, A, B, C, 8, 11, 33);
+ Round3 (&C, D, A, B, 11, 16, 34);
+ Round3 (&B, C, D, A, 14, 23, 35);
+ Round3 (&A, B, C, D, 1, 4, 36);
+ Round3 (&D, A, B, C, 4, 11, 37);
+ Round3 (&C, D, A, B, 7, 16, 38);
+ Round3 (&B, C, D, A, 10, 23, 39);
+ Round3 (&A, B, C, D, 13, 4, 40);
+ Round3 (&D, A, B, C, 0, 11, 41);
+ Round3 (&C, D, A, B, 3, 16, 42);
+ Round3 (&B, C, D, A, 6, 23, 43);
+ Round3 (&A, B, C, D, 9, 4, 44);
+ Round3 (&D, A, B, C, 12, 11, 45);
+ Round3 (&C, D, A, B, 15, 16, 46);
+ Round3 (&B, C, D, A, 2, 23, 47);
+
+ //Round 4
+ Round4 (&A, B, C, D, 0, 6, 48);
+ Round4 (&D, A, B, C, 7, 10, 49);
+ Round4 (&C, D, A, B, 14, 15, 50);
+ Round4 (&B, C, D, A, 5, 21, 51);
+ Round4 (&A, B, C, D, 12, 6, 52);
+ Round4 (&D, A, B, C, 3, 10, 53);
+ Round4 (&C, D, A, B, 10, 15, 54);
+ Round4 (&B, C, D, A, 1, 21, 55);
+ Round4 (&A, B, C, D, 8, 6, 56);
+ Round4 (&D, A, B, C, 15, 10, 57);
+ Round4 (&C, D, A, B, 6, 15, 58);
+ Round4 (&B, C, D, A, 13, 21, 59);
+ Round4 (&A, B, C, D, 4, 6, 60);
+ Round4 (&D, A, B, C, 11, 10, 61);
+ Round4 (&C, D, A, B, 2, 15, 62);
+ Round4 (&B, C, D, A, 9, 21, 63);
+
+ // Then perform the following additions. (let's add)
+ *A2 = A + AA;
+ *B2 = B + BB;
+ *C2 = C + CC;
+ *D2 = D + DD;
+
+ //The clearance of confidential information
+ memset (pX, 0, sizeof (X));
}
//-------------------------------------------------------------------
// The function for the exteriors
/** output is the coded binary in the character sequence which wants to code string. */
-void MD5_String2binary(const char * string, char * output)
+void MD5_String2binary (const char *string, char *output)
{
//var
- /*8bit*/
- unsigned char padding_message[64]; //Extended message 512bit 64byte
- unsigned char *pstring; //The position of string in the present scanning notes is held.
+ /*8bit */
+ unsigned char padding_message[64]; //Extended message 512bit 64byte
+ unsigned char *pstring; //The position of string in the present scanning notes is held.
// unsigned char digest[16];
- /*32bit*/
- unsigned int string_byte_len, //The byte chief of string is held.
- string_bit_len, //The bit length of string is held.
- copy_len, //The number of bytes which is used by 1-3 and which remained
- msg_digest[4]; //Message digest 128bit 4byte
- unsigned int *A = &msg_digest[0], //The message digest in accordance with RFC (reference)
- *B = &msg_digest[1],
- *C = &msg_digest[2],
- *D = &msg_digest[3];
- int i;
+ /*32bit */
+ unsigned int string_byte_len, //The byte chief of string is held.
+ string_bit_len, //The bit length of string is held.
+ copy_len, //The number of bytes which is used by 1-3 and which remained
+ msg_digest[4]; //Message digest 128bit 4byte
+ unsigned int *A = &msg_digest[0], //The message digest in accordance with RFC (reference)
+ *B = &msg_digest[1], *C = &msg_digest[2], *D = &msg_digest[3];
+ int i;
//prog
- //Step 3.Initialize MD Buffer (although it is the initialization; step 3 of A, B, C, and D -- unavoidable -- a head)
- *A = 0x67452301;
- *B = 0xefcdab89;
- *C = 0x98badcfe;
- *D = 0x10325476;
-
- //Step 1.Append Padding Bits (extension of a mark bit)
- //1-1
- string_byte_len = strlen(string); //The byte chief of a character sequence is acquired.
- pstring = (unsigned char *)string; //The position of the present character sequence is set.
-
- //1-2 Repeat calculation until length becomes less than 64 bytes.
- for (i=string_byte_len; 64<=i; i-=64,pstring+=64)
- MD5_Round_Calculate(pstring, A,B,C,D);
-
- //1-3
- copy_len = string_byte_len % 64; //The number of bytes which remained is computed.
- strncpy((char *)padding_message, (char *)pstring, copy_len); //A message is copied to an extended bit sequence.
- memset(padding_message+copy_len, 0, 64 - copy_len); //It buries by 0 until it becomes extended bit length.
- padding_message[copy_len] |= 0x80; //The next of a message is 1.
-
- //1-4
- //If 56 bytes or more (less than 64 bytes) of remainder becomes, it will calculate by extending to 64 bytes.
- if (56 <= copy_len) {
- MD5_Round_Calculate(padding_message, A,B,C,D);
- memset(padding_message, 0, 56); //56 bytes is newly fill uped with 0.
- }
-
-
- //Step 2.Append Length (the information on length is added)
- string_bit_len = string_byte_len * 8; //From the byte chief to bit length (32 bytes of low rank)
- memcpy(&padding_message[56], &string_bit_len, 4); //32 bytes of low rank is set.
-
- //When bit length cannot be expressed in 32 bytes of low rank, it is a beam raising to a higher rank.
- if (UINT_MAX / 8 < string_byte_len) {
- unsigned int high = (string_byte_len - UINT_MAX / 8) * 8;
- memcpy(&padding_message[60], &high, 4);
- } else
- memset(&padding_message[60], 0, 4); //In this case, it is good for a higher rank at 0.
-
- //Step 4.Process Message in 16-Word Blocks (calculation of MD5)
- MD5_Round_Calculate(padding_message, A,B,C,D);
-
-
- //Step 5.Output (output)
- memcpy(output,msg_digest,16);
+ //Step 3.Initialize MD Buffer (although it is the initialization; step 3 of A, B, C, and D -- unavoidable -- a head)
+ *A = 0x67452301;
+ *B = 0xefcdab89;
+ *C = 0x98badcfe;
+ *D = 0x10325476;
+
+ //Step 1.Append Padding Bits (extension of a mark bit)
+ //1-1
+ string_byte_len = strlen (string); //The byte chief of a character sequence is acquired.
+ pstring = (unsigned char *) string; //The position of the present character sequence is set.
+
+ //1-2 Repeat calculation until length becomes less than 64 bytes.
+ for (i = string_byte_len; 64 <= i; i -= 64, pstring += 64)
+ MD5_Round_Calculate (pstring, A, B, C, D);
+
+ //1-3
+ copy_len = string_byte_len % 64; //The number of bytes which remained is computed.
+ strncpy ((char *) padding_message, (char *) pstring, copy_len); //A message is copied to an extended bit sequence.
+ memset (padding_message + copy_len, 0, 64 - copy_len); //It buries by 0 until it becomes extended bit length.
+ padding_message[copy_len] |= 0x80; //The next of a message is 1.
+
+ //1-4
+ //If 56 bytes or more (less than 64 bytes) of remainder becomes, it will calculate by extending to 64 bytes.
+ if (56 <= copy_len)
+ {
+ MD5_Round_Calculate (padding_message, A, B, C, D);
+ memset (padding_message, 0, 56); //56 bytes is newly fill uped with 0.
+ }
+
+ //Step 2.Append Length (the information on length is added)
+ string_bit_len = string_byte_len * 8; //From the byte chief to bit length (32 bytes of low rank)
+ memcpy (&padding_message[56], &string_bit_len, 4); //32 bytes of low rank is set.
+
+ //When bit length cannot be expressed in 32 bytes of low rank, it is a beam raising to a higher rank.
+ if (UINT_MAX / 8 < string_byte_len)
+ {
+ unsigned int high = (string_byte_len - UINT_MAX / 8) * 8;
+ memcpy (&padding_message[60], &high, 4);
+ }
+ else
+ memset (&padding_message[60], 0, 4); //In this case, it is good for a higher rank at 0.
+
+ //Step 4.Process Message in 16-Word Blocks (calculation of MD5)
+ MD5_Round_Calculate (padding_message, A, B, C, D);
+
+ //Step 5.Output (output)
+ memcpy (output, msg_digest, 16);
// memcpy (digest, msg_digest, and 16); //8 byte*4 < - 32byte conversion A function called Encode as used in the field of RFC
/* sprintf(output,
"%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",
@@ -222,16 +279,15 @@ void MD5_String2binary(const char * string, char * output)
}
/** output is the coded character sequence in the character sequence which wants to code string. */
-void MD5_String(const char * string, char * output)
+void MD5_String (const char *string, char *output)
{
- unsigned char digest[16];
-
- MD5_String2binary(string,digest);
- sprintf(output,
- "%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",
- digest[ 0], digest[ 1], digest[ 2], digest[ 3],
- digest[ 4], digest[ 5], digest[ 6], digest[ 7],
- digest[ 8], digest[ 9], digest[10], digest[11],
- digest[12], digest[13], digest[14], digest[15]);
+ unsigned char digest[16];
+
+ MD5_String2binary (string, digest);
+ sprintf (output,
+ "%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",
+ digest[0], digest[1], digest[2], digest[3],
+ digest[4], digest[5], digest[6], digest[7],
+ digest[8], digest[9], digest[10], digest[11],
+ digest[12], digest[13], digest[14], digest[15]);
}
-
diff --git a/src/ladmin/md5calc.h b/src/ladmin/md5calc.h
index b4dd614..ddf176c 100644
--- a/src/ladmin/md5calc.h
+++ b/src/ladmin/md5calc.h
@@ -2,7 +2,7 @@
#ifndef _MD5CALC_H_
#define _MD5CALC_H_
-void MD5_String(const char * string, char * output);
-void MD5_String2binary(const char * string, char * output);
+void MD5_String (const char *string, char *output);
+void MD5_String2binary (const char *string, char *output);
#endif