/* WARNING! Don't just blindly copy code -- check to see if you need to make * any tweaks to do exactly what you want it to. * You should also NOT assume that this sample code has perfect style. */ #include // for socket(), AF_INT, SOCK_STREAM #include // for close() #include // for EXIT_SUCCESS, EXIT_FAILURE #include // for strerror() #include // for std::cerr, std::endl int main(int argc, char** argv) { int socket_fd = socket(AF_INET, SOCK_STREAM, 0); if (socket_fd == -1) { std::cerr << strerror(errno) << std::endl; return EXIT_FAILURE; } close(socket_fd); return EXIT_SUCCESS; }