threeDigits is used to generate a server_id.
()
| 301 | |
| 302 | // threeDigits is used to generate a server_id. |
| 303 | func threeDigits() string { |
| 304 | return strconv.FormatInt(100+int64(utils.Int31n(900)), 10) |
| 305 | } |
| 306 | |
| 307 | func makeWebsocketURL(u *url.URL, serverID, sessionID string) *url.URL { |
| 308 | if u.Scheme == "https" { |
no outgoing calls
no test coverage detected