On Thu, May 19, 2016 at 1:00 AM, Super Twang <[email protected]> wrote: > > @Ben > Thanks a lot!!! > > Re: EPIPE > I am actually testing a local web app, so I know that the window/tab hasn't > been closed. But the gist of what you're saying is EPIPE means "It didn't > work." or "Something broke when you tried that." To eliminate the > possibility that the server broke it by trying to send too much (Sending > lots of data at a high frame rate), I'll use your suggestion about checking > the buffer. > > Does EOF on a READ indicate pretty much what EPIPE does on a write? "It > didn't work." (Close the connection)
No, UV_EOF means a graceful disconnect. EPIPE is indicative of an abrupt or unexpected disconnect. -- You received this message because you are subscribed to the Google Groups "libuv" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/libuv. For more options, visit https://groups.google.com/d/optout.
