ft_irc/tcpdump/main.c

12 lines
109 B
C

#include <sys/socket.h>
int main ()
{
ssize_t i = 0;
i = send(2222, "hello", 6, 0);
return (i);
}