| 980 | } |
| 981 | |
| 982 | void |
| 983 | UnixNetVConnection::netActivity() |
| 984 | { |
| 985 | Dbg(dbg_ctl_socket, "net_activity updating inactivity %" PRId64 ", NetVC=%p", this->inactivity_timeout_in, this); |
| 986 | if (this->inactivity_timeout_in) { |
| 987 | this->next_inactivity_timeout_at = ink_get_hrtime() + this->inactivity_timeout_in; |
| 988 | } else { |
| 989 | this->next_inactivity_timeout_at = 0; |
| 990 | } |
| 991 | } |
| 992 | |
| 993 | int |
| 994 | UnixNetVConnection::startEvent(int /* event ATS_UNUSED */, Event *e) |
no test coverage detected