| 103 | } |
| 104 | |
| 105 | TS_INLINE bool |
| 106 | check_net_throttle(ThrottleType t) |
| 107 | { |
| 108 | int connections = net_connections_to_throttle(t); |
| 109 | |
| 110 | if (net_connections_throttle != 0 && connections >= net_connections_throttle) { |
| 111 | return true; |
| 112 | } |
| 113 | |
| 114 | return false; |
| 115 | } |
| 116 | |
| 117 | TS_INLINE void |
| 118 | check_throttle_warning(ThrottleType type) |
no test coverage detected