Accept is stubbed out for Wasm.
(w http.ResponseWriter, r *http.Request, opts *AcceptOptions)
| 443 | |
| 444 | // Accept is stubbed out for Wasm. |
| 445 | func Accept(w http.ResponseWriter, r *http.Request, opts *AcceptOptions) (*Conn, error) { |
| 446 | return nil, errors.New("unimplemented") |
| 447 | } |
| 448 | |
| 449 | // StatusCode represents a WebSocket status code. |
| 450 | // https://tools.ietf.org/html/rfc6455#section-7.4 |
no outgoing calls
searching dependent graphs…