| 73 | } |
| 74 | |
| 75 | type serverImpl struct { |
| 76 | listener net.Listener |
| 77 | |
| 78 | wg sync.WaitGroup |
| 79 | |
| 80 | mutex sync.Mutex |
| 81 | initialized bool |
| 82 | configuration *Configuration |
| 83 | shellInfoMap map[int]*shellInfo |
| 84 | storage datastore.Storage |
| 85 | |
| 86 | userConfiguration UserConfiguration |
| 87 | } |
| 88 | |
| 89 | func (s *serverImpl) Serve() (err error) { |
| 90 | log.Printf("Start serving requests") |
nothing calls this directly
no outgoing calls
no test coverage detected