| 1485 | } |
| 1486 | |
| 1487 | const char * |
| 1488 | UnixNetVConnection::protocol_contains(std::string_view tag) const |
| 1489 | { |
| 1490 | std::string_view retval = options.get_proto_string(); |
| 1491 | if (!IsNoCasePrefixOf(tag, retval)) { // didn't match IP level, check TCP level |
| 1492 | retval = options.get_family_string(); |
| 1493 | if (!IsNoCasePrefixOf(tag, retval)) { // no match here either, return empty. |
| 1494 | ink_zero(retval); |
| 1495 | } |
| 1496 | } |
| 1497 | return retval.data(); |
| 1498 | } |
| 1499 | |
| 1500 | int |
| 1501 | UnixNetVConnection::set_tcp_congestion_control([[maybe_unused]] tcp_congestion_control_side side) |
nothing calls this directly
no test coverage detected