MCPcopy Create free account
hub / github.com/apache/trafficserver / shutdown

Method shutdown

include/iocore/eventsystem/UnixSocket.h:307–317  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

305}
306
307inline int
308UnixSocket::shutdown(int how)
309{
310 int res;
311 do {
312 if (unlikely((res = ::shutdown(this->fd, how)) < 0)) {
313 res = -errno;
314 }
315 } while (res == -EINTR);
316 return res;
317}
318
319inline bool
320transient_error()

Callers

nothing calls this directly

Calls 1

shutdownFunction · 0.85

Tested by

no test coverage detected