(t *testing.T)
| 67 | } |
| 68 | |
| 69 | func NewT(t *testing.T) *T { |
| 70 | return &T{ |
| 71 | T: t, |
| 72 | ports: map[string]uint16{}, |
| 73 | portsRev: map[uint16]string{}, |
| 74 | reloadedChan: make(chan struct{}, 1), |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | // Config sets the configuration to use for the server. It must be called |
| 79 | // before Run. |
no outgoing calls