diff options
author | Mattias Andrée <maandree@kth.se> | 2016-08-06 03:09:35 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2016-08-06 03:09:35 +0200 |
commit | 65b72b4aaa2a6a09ec8d91e20aa469af69497676 (patch) | |
tree | 8ff95c5d2b1f5bfb01f434f3d01e80a4a34ebfb3 /src/libmdsclient/comm.h | |
parent | m (diff) | |
download | mds-65b72b4aaa2a6a09ec8d91e20aa469af69497676.tar.gz mds-65b72b4aaa2a6a09ec8d91e20aa469af69497676.tar.bz2 mds-65b72b4aaa2a6a09ec8d91e20aa469af69497676.tar.xz |
If send fails with EPIPE, set errno to ECONNRESET instead
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | src/libmdsclient/comm.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/libmdsclient/comm.h b/src/libmdsclient/comm.h index bb8f880..a162d0a 100644 --- a/src/libmdsclient/comm.h +++ b/src/libmdsclient/comm.h @@ -177,7 +177,6 @@ int libmds_connection_establish_address(libmds_connection_t* restrict this, * @throws ENOMEM See send(2) * @throws ENOTCONN See send(2) * @throws ENOTSOCK See send(2) - * @throws EPIPE See send(2) * @throws See pthread_mutex_lock(3) */ __attribute__((nonnull)) @@ -206,7 +205,6 @@ size_t libmds_connection_send(libmds_connection_t* restrict this, const char* re * @throws ENOMEM See send(2) * @throws ENOTCONN See send(2) * @throws ENOTSOCK See send(2) - * @throws EPIPE See send(2) */ __attribute__((nonnull)) size_t libmds_connection_send_unlocked(libmds_connection_t* restrict this, const char* restrict message, |