ServerST struct
| 28 | |
| 29 | //ServerST struct |
| 30 | type ServerST struct { |
| 31 | HTTPPort string `json:"http_port"` |
| 32 | ICEServers []string `json:"ice_servers"` |
| 33 | ICEUsername string `json:"ice_username"` |
| 34 | ICECredential string `json:"ice_credential"` |
| 35 | WebRTCPortMin uint16 `json:"webrtc_port_min"` |
| 36 | WebRTCPortMax uint16 `json:"webrtc_port_max"` |
| 37 | } |
| 38 | |
| 39 | //StreamST struct |
| 40 | type StreamST struct { |
nothing calls this directly
no outgoing calls
no test coverage detected