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