X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=libraries%2Fliblutil%2Fsockpair.c;h=b351f0a8a57d28387b32c3baf8229d3155e52e4d;hb=aa33f4b220924d9b054c5acbce3440dadef41a27;hp=648009d315f7eb24c6a882d135b6ca2fdf067334;hpb=a56c161bdbc1443808039d0eaf9b84474a243352;p=openldap diff --git a/libraries/liblutil/sockpair.c b/libraries/liblutil/sockpair.c index 648009d315..b351f0a8a5 100644 --- a/libraries/liblutil/sockpair.c +++ b/libraries/liblutil/sockpair.c @@ -1,7 +1,16 @@ /* $OpenLDAP$ */ -/* - * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved. - * COPYING RESTRICTIONS APPLY, see COPYRIGHT file +/* This work is part of OpenLDAP Software . + * + * Copyright 1998-2012 The OpenLDAP Foundation. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted only as authorized by the OpenLDAP + * Public License. + * + * A copy of this license is available in the file LICENSE in the + * top-level directory of the distribution or, alternatively, at + * . */ #include "portable.h" @@ -20,18 +29,20 @@ * this function is best implemented using a single pipe() call. */ -int lutil_pair( LBER_SOCKET_T sds[2] ) +int lutil_pair( ber_socket_t sds[2] ) { #ifdef USE_PIPE return pipe( sds ); #else struct sockaddr_in si; - int rc, len = sizeof(si); - LBER_SOCKET_T sd; + int rc; + ber_socklen_t len = sizeof(si); + ber_socket_t sd; sd = socket( AF_INET, SOCK_DGRAM, 0 ); - if ( sd == AC_SOCKET_INVALID ) + if ( sd == AC_SOCKET_INVALID ) { return sd; + } (void) memset( (void*) &si, '\0', len ); si.sin_family = AF_INET; @@ -56,7 +67,12 @@ int lutil_pair( LBER_SOCKET_T sds[2] ) return rc; } - sds[0] = sds[1] = sd; + sds[0] = sd; +#if !HAVE_WINSOCK + sds[1] = dup( sds[0] ); +#else + sds[1] = sds[0]; +#endif return 0; #endif }