- Timestamp:
- May 26, 2016, 5:09:31 PM (6 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, master, proxy-ticket, upstream
- Children:
- 6868585
- Parents:
- c6cfe6e
- git-author:
- Thomas Klute <thomas2.klute@…> (05/26/16 16:57:31)
- git-committer:
- Thomas Klute <thomas2.klute@…> (05/26/16 17:09:31)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gnutls_io.c
rc6cfe6e rbe41ee4 869 869 APR_BRIGADE_INSERT_TAIL(ctxt->output_bb, bucket); 870 870 871 if (write_flush(ctxt) < 0) { 871 if (write_flush(ctxt) < 0) 872 { 873 /* We encountered an error. APR_EINTR or APR_EAGAIN can be 874 * handled, treat everything else as a generic I/O error. */ 875 int err = EIO; 876 if (APR_STATUS_IS_EAGAIN(ctxt->output_rc) 877 || APR_STATUS_IS_EINTR(ctxt->output_rc)) 878 err = EAI_APR_TO_RAW(ctxt->output_rc); 879 880 gnutls_transport_set_errno(ctxt->session, err); 872 881 return -1; 873 882 }
Note: See TracChangeset
for help on using the changeset viewer.