68
68
69
69
/* Portable 'sclose_nolog' used only in child process instead of 'sclose'
70
70
to avoid fooling the socket leak detector */
71
- #if defined(HAVE_CLOSESOCKET )
71
+ #ifdef HAVE_PIPE
72
+ # define sclose_nolog (x ) close((x))
73
+ #eliif defined(HAVE_CLOSESOCKET)
72
74
# define sclose_nolog (x ) closesocket((x))
73
75
#elif defined(HAVE_CLOSESOCKET_CAMEL )
74
76
# define sclose_nolog (x ) CloseSocket((x))
@@ -189,16 +191,16 @@ static CURLcode ntlm_wb_init(struct Curl_easy *data, struct ntlmdata *ntlm,
189
191
goto done ;
190
192
}
191
193
192
- if (Curl_socketpair ( AF_UNIX , SOCK_STREAM , 0 , sockfds )) {
194
+ if (wakeup_create ( sockfds )) {
193
195
failf (data , "Could not open socket pair. errno %d: %s" ,
194
196
errno , Curl_strerror (errno , buffer , sizeof (buffer )));
195
197
goto done ;
196
198
}
197
199
198
200
child_pid = fork ();
199
201
if (child_pid == -1 ) {
200
- sclose (sockfds [0 ]);
201
- sclose (sockfds [1 ]);
202
+ wakeup_close (sockfds [0 ]);
203
+ wakeup_close (sockfds [1 ]);
202
204
failf (data , "Could not fork. errno %d: %s" ,
203
205
errno , Curl_strerror (errno , buffer , sizeof (buffer )));
204
206
goto done ;
@@ -268,7 +270,7 @@ static CURLcode ntlm_wb_response(struct Curl_easy *data, struct ntlmdata *ntlm,
268
270
Curl_dyn_init (& b , MAX_NTLM_WB_RESPONSE );
269
271
270
272
while (len_in > 0 ) {
271
- ssize_t written = swrite (ntlm -> ntlm_auth_hlpr_socket , input , len_in );
273
+ ssize_t written = wakeup_write (ntlm -> ntlm_auth_hlpr_socket , input , len_in );
272
274
if (written == -1 ) {
273
275
/* Interrupted by a signal, retry it */
274
276
if (errno == EINTR )
@@ -282,7 +284,7 @@ static CURLcode ntlm_wb_response(struct Curl_easy *data, struct ntlmdata *ntlm,
282
284
/* Read one line */
283
285
while (1 ) {
284
286
ssize_t size =
285
- sread (ntlm -> ntlm_auth_hlpr_socket , buf , data -> set .buffer_size );
287
+ wakeup_read (ntlm -> ntlm_auth_hlpr_socket , buf , data -> set .buffer_size );
286
288
if (size == -1 ) {
287
289
if (errno == EINTR )
288
290
continue ;
0 commit comments