]> git.sur5r.net Git - openldap/blobdiff - libraries/liblber/sockbuf.c
More for multival attrs
[openldap] / libraries / liblber / sockbuf.c
index fef9071af3a6af7571cdb772f6b9bb800679ffa9..31e8e8a8bc1d5702f1fb09175d2edd8f31da7379 100644 (file)
@@ -2,7 +2,7 @@
 /* $OpenLDAP$ */
 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
  *
- * Copyright 1998-2014 The OpenLDAP Foundation.
+ * Copyright 1998-2016 The OpenLDAP Foundation.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -928,6 +928,7 @@ sb_dgram_write( Sockbuf_IO_Desc *sbiod, void *buf, ber_len_t len )
 {
        ber_slen_t rc;
        struct sockaddr *dst;
+       socklen_t dstsize;
    
        assert( sbiod != NULL );
        assert( SOCKBUF_VALID( sbiod->sbiod_sb ) );
@@ -936,9 +937,12 @@ sb_dgram_write( Sockbuf_IO_Desc *sbiod, void *buf, ber_len_t len )
        dst = buf;
        buf = (char *) buf + sizeof( struct sockaddr_storage );
        len -= sizeof( struct sockaddr_storage );
-   
-       rc = sendto( sbiod->sbiod_sb->sb_fd, buf, len, 0, dst,
-               sizeof( struct sockaddr_storage ) );
+       dstsize = dst->sa_family == AF_INET ? sizeof( struct sockaddr_in )
+#ifdef LDAP_PF_INET6
+               : dst->sa_family == AF_INET6 ? sizeof( struct sockaddr_in6 )
+#endif
+               : sizeof( struct sockaddr_storage );
+       rc = sendto( sbiod->sbiod_sb->sb_fd, buf, len, 0, dst, dstsize );
 
        if ( rc < 0 ) return -1;