2-2 IPv4+TCPによるソケット実装例
#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
int
main()
{
int sock;
sock = socket(AF_INET, SOCK_STREAM, 0);
if (sock < 0) {
printf("socket failed\n");
return 1;
}
return 0;
}
#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
int
main()
{
int sock;
sock = socket(AF_INET, SOCK_STREAM, 0);
if (sock < 0) {
printf("socket failed\n");
return 1;
}
return 0;
}