Changeset 4e21e41ac9381e7d24f3a0ace8870ae0532d2cd7
- Timestamp:
- 12/06/08 19:16:55
(4 months ago)
- Author:
- Rémi Denis-Courmont <rdenis@simphalempin.com>
- git-committer:
- Rémi Denis-Courmont <rdenis@simphalempin.com> 1213291015 +0300
- git-parent:
[ead20e7c7c83815787f946db920e51bc38706eee]
- git-author:
- Rémi Denis-Courmont <rdenis@simphalempin.com> 1213291015 +0300
- Message:
connect: handle EINTR
Though this should not happen as we are using non-blocking mode
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r2487f4b |
r4e21e41 |
|
| 162 | 162 | int timeout, val; |
|---|
| 163 | 163 | |
|---|
| 164 | | if( net_errno != EINPROGRESS ) |
|---|
| | 164 | if( net_errno != EINPROGRESS && net_errno != EINTR ) |
|---|
| 165 | 165 | { |
|---|
| 166 | 166 | msg_Err( p_this, "connection failed: %m" ); |
|---|