| 32 | ) |
| 33 | |
| 34 | type PacketServerConnFactory struct { |
| 35 | Conns map[string]*PacketConn |
| 36 | Lock *sync.Mutex |
| 37 | } |
| 38 | |
| 39 | func NewPacketServerConnFactory() *PacketServerConnFactory { |
| 40 | return &PacketServerConnFactory{ |
nothing calls this directly
no outgoing calls
no test coverage detected