rawTCPService dials TCP to the destination specified by the client It's used by warp routing
| 96 | // rawTCPService dials TCP to the destination specified by the client |
| 97 | // It's used by warp routing |
| 98 | type rawTCPService struct { |
| 99 | name string |
| 100 | dialer net.Dialer |
| 101 | writeTimeout time.Duration |
| 102 | logger *zerolog.Logger |
| 103 | } |
| 104 | |
| 105 | func (o *rawTCPService) String() string { |
| 106 | return o.name |
nothing calls this directly
no outgoing calls
no test coverage detected