1999-08-31 09:17:01 +08:00
|
|
|
/* $OpenLDAP$ */
|
1999-01-26 09:21:35 +08:00
|
|
|
/*
|
2003-01-04 04:20:47 +08:00
|
|
|
* Copyright 1998-2003 The OpenLDAP Foundation, Redwood City, California, USA
|
1999-01-26 09:21:35 +08:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
2001-05-29 11:29:53 +08:00
|
|
|
* 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 at
|
|
|
|
* http://www.OpenLDAP.org/license.html or in file LICENSE in the
|
|
|
|
* top-level directory of the distribution.
|
1999-01-26 09:21:35 +08:00
|
|
|
*/
|
|
|
|
/*
|
1999-05-19 09:12:33 +08:00
|
|
|
* lber_pvt.h - Header for ber_pvt_ functions. These are meant to be used
|
1999-01-26 09:21:35 +08:00
|
|
|
* by the OpenLDAP distribution only.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LBER_PVT_H
|
|
|
|
#define _LBER_PVT_H 1
|
|
|
|
|
|
|
|
#include <lber.h>
|
|
|
|
|
|
|
|
LDAP_BEGIN_DECL
|
|
|
|
|
2000-06-02 04:59:21 +08:00
|
|
|
typedef struct sockbuf_buf {
|
|
|
|
ber_len_t buf_size;
|
|
|
|
ber_len_t buf_ptr;
|
|
|
|
ber_len_t buf_end;
|
|
|
|
char *buf_base;
|
|
|
|
} Sockbuf_Buf;
|
|
|
|
|
1999-01-26 09:21:35 +08:00
|
|
|
/*
|
|
|
|
* bprint.c
|
|
|
|
*/
|
2001-12-07 12:03:25 +08:00
|
|
|
LBER_V( BER_LOG_PRINT_FN ) ber_pvt_log_print;
|
1999-01-26 09:21:35 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LBER_F( int )
|
1999-05-19 09:12:33 +08:00
|
|
|
ber_pvt_log_printf LDAP_P((
|
1999-01-26 09:21:35 +08:00
|
|
|
int errlvl,
|
|
|
|
int loglvl,
|
1999-05-19 09:12:33 +08:00
|
|
|
const char *fmt,
|
1999-09-04 05:06:33 +08:00
|
|
|
... )) LDAP_GCCATTR((format(printf, 3, 4)));
|
1999-01-26 09:21:35 +08:00
|
|
|
|
2000-06-02 04:59:21 +08:00
|
|
|
/*
|
|
|
|
* sockbuf.c
|
|
|
|
*/
|
2000-06-19 03:48:07 +08:00
|
|
|
LBER_F( ber_slen_t )
|
2000-06-02 04:59:21 +08:00
|
|
|
ber_pvt_sb_do_write LDAP_P(( Sockbuf_IO_Desc *sbiod, Sockbuf_Buf *buf_out ));
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LBER_F( void )
|
2000-06-02 04:59:21 +08:00
|
|
|
ber_pvt_sb_buf_init LDAP_P(( Sockbuf_Buf *buf ));
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LBER_F( void )
|
2000-06-02 04:59:21 +08:00
|
|
|
ber_pvt_sb_buf_destroy LDAP_P(( Sockbuf_Buf *buf ));
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LBER_F( int )
|
2000-06-02 04:59:21 +08:00
|
|
|
ber_pvt_sb_grow_buffer LDAP_P(( Sockbuf_Buf *buf, ber_len_t minsize ));
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LBER_F( ber_len_t )
|
2000-06-02 04:59:21 +08:00
|
|
|
ber_pvt_sb_copy_out LDAP_P(( Sockbuf_Buf *sbb, char *buf, ber_len_t len ));
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LBER_F( int )
|
2000-06-02 04:59:21 +08:00
|
|
|
ber_pvt_socket_set_nonblock LDAP_P(( ber_socket_t sd, int nb ));
|
|
|
|
|
2002-01-17 02:16:15 +08:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
#define ber_bvstrcmp(v1,v2) \
|
|
|
|
((v1)->bv_len < (v2)->bv_len \
|
|
|
|
? -1 : ((v1)->bv_len > (v2)->bv_len \
|
|
|
|
? 1 : strncmp((v1)->bv_val, (v2)->bv_val, (v1)->bv_len) ))
|
|
|
|
#else
|
|
|
|
/* avoid strncmp() */
|
|
|
|
#define ber_bvstrcmp(v1,v2) ber_bvcmp((v1),(v2))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define ber_bvstrcasecmp(v1,v2) \
|
|
|
|
((v1)->bv_len < (v2)->bv_len \
|
|
|
|
? -1 : ((v1)->bv_len > (v2)->bv_len \
|
|
|
|
? 1 : strncasecmp((v1)->bv_val, (v2)->bv_val, (v1)->bv_len) ))
|
|
|
|
|
|
|
|
#define ber_bvccmp(v1,c) \
|
2002-01-17 03:18:41 +08:00
|
|
|
( (v1)->bv_len == 1 && (v1)->bv_val[0] == (c) )
|
|
|
|
|
|
|
|
#define ber_strccmp(s,c) \
|
2002-01-17 03:31:25 +08:00
|
|
|
( (s)[0] == (c) && (s)[1] == '\0' )
|
2002-01-17 02:16:15 +08:00
|
|
|
|
2002-02-15 05:10:13 +08:00
|
|
|
#define ber_bvchr(bv,c) \
|
|
|
|
memchr( (bv)->bv_val, (c), (bv)->bv_len )
|
2002-02-15 02:55:38 +08:00
|
|
|
|
2002-08-29 18:42:13 +08:00
|
|
|
#define BER_BVC(x) { sizeof( (x) ) - 1, (x) }
|
|
|
|
#define BER_BVNULL { 0L, NULL }
|
2002-04-09 02:37:37 +08:00
|
|
|
|
1999-01-26 09:21:35 +08:00
|
|
|
LDAP_END_DECL
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|