Lines Matching refs:printf
47 printf("error: socket: %d\n", errno); in main()
54 printf("IPV6_V6ONLY option is on, turning it off.\n"); in main()
60 printf("Cannot turn off IPV6_V6ONLY option\n"); in main()
62 printf("Sharing same socket between IPv6 and IPv4\n"); in main()
68 printf("error: bind: %d\n", errno); in main()
73 printf("error: listen: %d\n", errno); in main()
77 printf("Single-threaded TCP echo server waits for a connection on " in main()
88 printf("error: accept: %d\n", errno); in main()
94 printf("Connection #%d from %s\n", counter++, addr_str); in main()
103 printf("error: recv: %d\n", errno); in main()
112 printf("error: send: %d\n", errno); in main()
122 printf("Connection from %s closed\n", addr_str); in main()