1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
1999-08-31 11:25:23 +08:00
|
|
|
/*
|
|
|
|
* Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
|
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
#include <ac/socket.h>
|
1999-09-01 01:51:04 +08:00
|
|
|
#include <ac/unistd.h>
|
1999-08-31 11:25:23 +08:00
|
|
|
|
1999-08-31 13:18:06 +08:00
|
|
|
#include <lutil.h>
|
|
|
|
|
|
|
|
/* Return a pair of socket descriptors that are connected to each other.
|
|
|
|
* The returned descriptors are suitable for use with select(). The two
|
1999-08-31 11:25:23 +08:00
|
|
|
* descriptors may or may not be identical; the function may return
|
|
|
|
* the same descriptor number in both slots. It is guaranteed that
|
1999-08-31 13:18:06 +08:00
|
|
|
* data written on sds[1] will be readable on sds[0]. The returned
|
1999-08-31 11:25:23 +08:00
|
|
|
* descriptors may be datagram oriented, so data should be written
|
|
|
|
* in reasonably small pieces and read all at once. On Unix systems
|
|
|
|
* this function is best implemented using a single pipe() call.
|
|
|
|
*/
|
1999-08-31 13:18:06 +08:00
|
|
|
|
|
|
|
int lutil_pair( LBER_SOCKET_T sds[2] )
|
1999-08-31 11:25:23 +08:00
|
|
|
{
|
1999-09-01 01:01:10 +08:00
|
|
|
#ifdef USE_PIPE
|
|
|
|
return pipe( sds );
|
|
|
|
#else
|
1999-08-31 11:25:23 +08:00
|
|
|
struct sockaddr_in si;
|
|
|
|
int rc, len = sizeof(si);
|
1999-08-31 13:18:06 +08:00
|
|
|
LBER_SOCKET_T sd;
|
1999-08-31 11:25:23 +08:00
|
|
|
|
1999-08-31 13:18:06 +08:00
|
|
|
sd = socket( AF_INET, SOCK_DGRAM, 0 );
|
1999-09-01 00:47:42 +08:00
|
|
|
if ( sd == AC_SOCKET_INVALID )
|
1999-08-31 13:18:06 +08:00
|
|
|
return sd;
|
1999-08-31 11:25:23 +08:00
|
|
|
|
|
|
|
(void) memset( (void*) &si, 0, len );
|
|
|
|
si.sin_family = AF_INET;
|
|
|
|
si.sin_port = 0;
|
|
|
|
si.sin_addr.s_addr = htonl( INADDR_LOOPBACK );
|
|
|
|
|
1999-09-01 00:47:42 +08:00
|
|
|
rc = bind( sd, (struct sockaddr *)&si, len );
|
|
|
|
if ( rc == AC_SOCKET_ERROR ) {
|
1999-08-31 13:18:06 +08:00
|
|
|
tcp_close(sd);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
1999-09-01 00:47:42 +08:00
|
|
|
rc = getsockname( sd, (struct sockaddr *)&si, &len );
|
|
|
|
if ( rc == AC_SOCKET_ERROR ) {
|
1999-08-31 13:18:06 +08:00
|
|
|
tcp_close(sd);
|
1999-08-31 11:25:23 +08:00
|
|
|
return rc;
|
|
|
|
}
|
1999-08-31 13:18:06 +08:00
|
|
|
|
1999-09-01 00:47:42 +08:00
|
|
|
rc = connect( sd, (struct sockaddr *)&si, len );
|
|
|
|
if ( rc == AC_SOCKET_ERROR ) {
|
1999-08-31 13:18:06 +08:00
|
|
|
tcp_close(sd);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
sds[0] = sds[1] = sd;
|
1999-08-31 11:25:23 +08:00
|
|
|
return 0;
|
1999-09-01 01:01:10 +08:00
|
|
|
#endif
|
1999-08-31 11:25:23 +08:00
|
|
|
}
|