FuzzConn creates a new FuzzedConnection. Fuzzing starts immediately.
(conn net.Conn)
| 23 | |
| 24 | // FuzzConn creates a new FuzzedConnection. Fuzzing starts immediately. |
| 25 | func FuzzConn(conn net.Conn) net.Conn { |
| 26 | return FuzzConnFromConfig(conn, config.DefaultFuzzConnConfig()) |
| 27 | } |
| 28 | |
| 29 | // FuzzConnFromConfig creates a new FuzzedConnection from a config. Fuzzing |
| 30 | // starts immediately. |
nothing calls this directly
no test coverage detected