mirror of
https://github.com/wiiu-env/ftpiiu.git
synced 2024-11-06 01:55:07 +01:00
Made messages look more slick (#3)
This commit is contained in:
parent
e09e81afe6
commit
dfbb117c45
@ -106,7 +106,7 @@ static s32 write_reply(client_t *client, u16 code, char *msg) {
|
|||||||
char * msgbuf = (char *) malloc(msglen + 1);
|
char * msgbuf = (char *) malloc(msglen + 1);
|
||||||
if (msgbuf == NULL) return -ENOMEM;
|
if (msgbuf == NULL) return -ENOMEM;
|
||||||
sprintf(msgbuf, "%u %s\r\n", code, msg);
|
sprintf(msgbuf, "%u %s\r\n", code, msg);
|
||||||
console_printf("Wrote reply: %s", msgbuf);
|
console_printf("[->] %s", msgbuf);
|
||||||
s32 ret = send_exact(client->socket, msgbuf, msglen);
|
s32 ret = send_exact(client->socket, msgbuf, msglen);
|
||||||
free(msgbuf);
|
free(msgbuf);
|
||||||
return ret;
|
return ret;
|
||||||
@ -676,7 +676,7 @@ static s32 process_command(client_t *client, char *cmd_line) {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
console_printf("Got command: %s\n", cmd_line);
|
console_printf("[<-] %s\n", cmd_line);
|
||||||
|
|
||||||
const char **commands = unauthenticated_commands;
|
const char **commands = unauthenticated_commands;
|
||||||
const ftp_command_handler *handlers = unauthenticated_handlers;
|
const ftp_command_handler *handlers = unauthenticated_handlers;
|
||||||
|
Loading…
Reference in New Issue
Block a user