Home | History | Annotate | Download | only in flip_server

Lines Matching defs:on

78   int on = 1;
81 fd, IPPROTO_TCP, TCP_NODELAY, reinterpret_cast<char*>(&on), sizeof(on));
84 LOG(FATAL) << "setsockopt() TCP_NODELAY: failed on fd " << fd;
143 // set SO_REUSEADDR on the listening socket.
144 int on = 1;
149 reinterpret_cast<char*>(&on),
150 sizeof(on));
160 // set SO_REUSEADDR on the listening socket.
161 int on = 1;
166 reinterpret_cast<char*>(&on),
167 sizeof(on));