(id, ns string, t Transport)
| 39 | } |
| 40 | |
| 41 | func newClientSocket(id, ns string, t Transport) *clientSocket { |
| 42 | return &clientSocket{ |
| 43 | id: id, |
| 44 | ns: ns, |
| 45 | Handler: newHandler(), |
| 46 | Transport: t, |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | func (s *clientSocket) ID() string { return s.id } |
| 51 |
no test coverage detected