зеркало из https://github.com/mozilla/pjs.git
105 строки
2.7 KiB
C
105 строки
2.7 KiB
C
/*
|
|
* The contents of this file are subject to the Netscape Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is Mozilla Communicator client code, released
|
|
* March 31, 1998.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
|
|
/*
|
|
* Internal header for libprldap -- glue NSPR (Netscape Portable Runtime)
|
|
* to libldap.
|
|
*
|
|
*/
|
|
|
|
#include "ldap.h"
|
|
#include "nspr.h"
|
|
#include "ldappr.h"
|
|
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
#include <stdarg.h>
|
|
|
|
/*
|
|
* Macros:
|
|
*/
|
|
|
|
/* #define PRLDAP_DEBUG 1 */ /* uncomment to enable debugging printfs */
|
|
|
|
/*
|
|
* All of the sockets we use are IPv6 capable.
|
|
* Change the following #define to PR_AF_INET to support IPv4 only.
|
|
*/
|
|
#define PRLDAP_DEFAULT_ADDRESS_FAMILY PR_AF_INET6
|
|
|
|
|
|
/*
|
|
* Data structures:
|
|
*/
|
|
|
|
/* data structure that populates the I/O callback session arg. */
|
|
typedef struct lextiof_session_private {
|
|
PRPollDesc *prsess_pollds; /* for poll callback */
|
|
int prsess_pollds_count; /* # of elements in pollds */
|
|
int prsess_io_max_timeout; /* in milliseconds */
|
|
void *prsess_appdata; /* application specific data */
|
|
} PRLDAPIOSessionArg;
|
|
|
|
/* data structure that populates the I/O callback socket-specific arg. */
|
|
typedef struct lextiof_socket_private {
|
|
PRFileDesc *prsock_prfd; /* associated NSPR file desc. */
|
|
int prsock_io_max_timeout; /* in milliseconds */
|
|
void *prsock_appdata; /* application specific data */
|
|
} PRLDAPIOSocketArg;
|
|
|
|
|
|
/*
|
|
* Function prototypes:
|
|
*/
|
|
|
|
/*
|
|
* From ldapprio.c:
|
|
*/
|
|
int prldap_install_io_functions( LDAP *ld, int shared );
|
|
int prldap_session_arg_from_ld( LDAP *ld, PRLDAPIOSessionArg **sessargpp );
|
|
int prldap_set_io_max_timeout( PRLDAPIOSessionArg *prsessp,
|
|
int io_max_timeout );
|
|
int prldap_get_io_max_timeout( PRLDAPIOSessionArg *prsessp,
|
|
int *io_max_timeoutp );
|
|
|
|
|
|
/*
|
|
* From ldapprthreads.c:
|
|
*/
|
|
int prldap_install_thread_functions( LDAP *ld, int shared );
|
|
int prldap_thread_new_handle( LDAP *ld, void *sessionarg );
|
|
void prldap_thread_dispose_handle( LDAP *ld, void *sessionarg );
|
|
|
|
|
|
/*
|
|
* From ldapprdns.c:
|
|
*/
|
|
int prldap_install_dns_functions( LDAP *ld );
|
|
|
|
|
|
/*
|
|
* From ldapprerror.c:
|
|
*/
|
|
void prldap_set_system_errno( int e );
|
|
int prldap_get_system_errno( void );
|
|
int prldap_prerr2errno( void );
|