TProxy defines struct with parameters for the transparent proxy
| 33 | |
| 34 | // TProxy defines struct with parameters for the transparent proxy |
| 35 | type TProxy struct { |
| 36 | Family byte |
| 37 | TableFamily byte |
| 38 | RegAddr uint32 |
| 39 | RegPort uint32 |
| 40 | } |
| 41 | |
| 42 | func (e *TProxy) marshal(fam byte) ([]byte, error) { |
| 43 | data, err := e.marshalData(fam) |
nothing calls this directly
no outgoing calls
no test coverage detected