| 24 | ) |
| 25 | |
| 26 | type PacketConnFactory struct { |
| 27 | Conns map[string]*PacketConn |
| 28 | Lock *sync.Mutex |
| 29 | } |
| 30 | |
| 31 | func NewPacketConnFactory() *PacketConnFactory { |
| 32 | return &PacketConnFactory{ |
nothing calls this directly
no outgoing calls
no test coverage detected