SetTransportProtocolOption forwards to the underlying [stack.Stack.SetTransportProtocolOption]. Callers are responsible for ensuring that the options are valid, compatible and appropriate for their use case. Compatibility may change at any version.
(transport tcpip.TransportProtocolNumber, option tcpip.SettableTransportProtocolOption)
| 460 | // ensuring that the options are valid, compatible and appropriate for their use |
| 461 | // case. Compatibility may change at any version. |
| 462 | func (ns *Impl) SetTransportProtocolOption(transport tcpip.TransportProtocolNumber, option tcpip.SettableTransportProtocolOption) tcpip.Error { |
| 463 | return ns.ipstack.SetTransportProtocolOption(transport, option) |
| 464 | } |
| 465 | |
| 466 | // A single process might have several netstacks running at the same time. |
| 467 | // Exported clientmetric counters will have a sum of counters of all of them. |
no outgoing calls
no test coverage detected