25 lines
1.1 KiB
C
25 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* req_init.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2017/10/08 12:07:00 by jhalford #+# #+# */
|
|
/* Updated: 2017/10/08 12:07:01 by jhalford ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "ft_p.h"
|
|
|
|
int req_init(int sock, int req)
|
|
{
|
|
int rep;
|
|
int net_req;
|
|
|
|
net_req = htons(req);
|
|
tcflush(sock, TCIFLUSH);
|
|
write(sock, (char*)&net_req, sizeof(net_req));
|
|
rep = read_req(sock);
|
|
return (rep != CMD_SUPPORTED);
|
|
}
|