33 lines
1.2 KiB
C
33 lines
1.2 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* cmd_stor.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2017/11/02 16:01:54 by jhalford #+# #+# */
|
|
/* Updated: 2017/11/08 17:09:21 by jhalford ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "ftp_server.h"
|
|
|
|
int cmd_stor(t_ftp *ftp, char **av)
|
|
{
|
|
int sock;
|
|
int fd;
|
|
char *msg;
|
|
|
|
sock = dconn_open(ftp);
|
|
if ((fd = open(av[1], O_WRONLY | O_CREAT, 0644)) < 0)
|
|
return (ftp_ret(ftp, "550 couldn't open/create file"));
|
|
while (1)
|
|
{
|
|
if (ftp_recv(sock, &msg))
|
|
break ;
|
|
write(fd, msg, ft_strlen(msg));
|
|
ft_strdel(&msg);
|
|
}
|
|
dconn_close(ftp);
|
|
return (0);
|
|
}
|