I'm seeing IO errors on the console whenever a peer drops a connection:
Error serving connection: hyper::Error(Io, Os { code: 104, kind: ConnectionReset, message: "Connection reset by peer" })
I don't think this should appear?
Peers dropping connections is normal - for example, Chrome does this when starting an audio/video stream.
So I don't think this is unexpected, and likely shouldn't be treated as an error? Unless somebody wants to explicitly handle it as an error - perhaps via some sort of callback? For something like web sockets or other technical stuff, you might need this, I'm really not sure...?
I'm seeing IO errors on the console whenever a peer drops a connection:
I don't think this should appear?
Peers dropping connections is normal - for example, Chrome does this when starting an audio/video stream.
So I don't think this is unexpected, and likely shouldn't be treated as an error? Unless somebody wants to explicitly handle it as an error - perhaps via some sort of callback? For something like web sockets or other technical stuff, you might need this, I'm really not sure...?