version 1.19, 2002/02/14 20:10:13
|
version 1.30.2.1, 2005/01/20 18:03:48
|
Line 1
|
Line 1
|
/* $OpenLDAP: pkg/ldap/include/lber_pvt.h,v 1.18 2002/02/14 17:55:38 ando Exp $ */ |
/* $OpenLDAP: pkg/ldap/include/lber_pvt.h,v 1.30 2004/04/27 19:40:54 ando Exp $ */ |
/* |
/* This work is part of OpenLDAP Software <http://www.openldap.org/>. |
* Copyright 1998-2002 The OpenLDAP Foundation, Redwood City, California, USA |
* |
|
* Copyright 1998-2005 The OpenLDAP Foundation. |
* All rights reserved. |
* All rights reserved. |
* |
* |
* Redistribution and use in source and binary forms, with or without |
* Redistribution and use in source and binary forms, with or without |
* modification, are permitted only as authorized by the OpenLDAP |
* modification, are permitted only as authorized by the OpenLDAP |
* Public License. A copy of this license is available at |
* Public License. |
* http://www.OpenLDAP.org/license.html or in file LICENSE in the |
* |
* top-level directory of the distribution. |
* A copy of this license is available in file LICENSE in the |
|
* top-level directory of the distribution or, alternatively, at |
|
* <http://www.OpenLDAP.org/license.html>. |
*/ |
*/ |
|
|
/* |
/* |
* lber_pvt.h - Header for ber_pvt_ functions. These are meant to be used |
* lber_pvt.h - Header for ber_pvt_ functions. |
* by the OpenLDAP distribution only. |
* These are meant to be internal to OpenLDAP Software. |
*/ |
*/ |
|
|
#ifndef _LBER_PVT_H |
#ifndef _LBER_PVT_H |
Line 21
|
Line 25
|
|
|
LDAP_BEGIN_DECL |
LDAP_BEGIN_DECL |
|
|
|
/* for allocating aligned buffers (on the stack) */ |
|
#define LBER_ALIGNED_BUFFER(uname,size) \ |
|
union uname { \ |
|
char buffer[size]; \ |
|
/* force alignment */ \ |
|
int ialign; \ |
|
long lalign; \ |
|
float falign; \ |
|
double dalign; \ |
|
char* palign; \ |
|
} |
|
|
|
#define LBER_ELEMENT_SIZEOF (256) /* must be >= sizeof(BerElement) */ |
|
typedef LBER_ALIGNED_BUFFER(lber_berelement_u,LBER_ELEMENT_SIZEOF) |
|
BerElementBuffer; |
|
|
typedef struct sockbuf_buf { |
typedef struct sockbuf_buf { |
ber_len_t buf_size; |
ber_len_t buf_size; |
ber_len_t buf_ptr; |
ber_len_t buf_ptr; |
Line 61 ber_pvt_sb_copy_out LDAP_P(( Sockbuf_Buf
|
Line 81 ber_pvt_sb_copy_out LDAP_P(( Sockbuf_Buf
|
LBER_F( int ) |
LBER_F( int ) |
ber_pvt_socket_set_nonblock LDAP_P(( ber_socket_t sd, int nb )); |
ber_pvt_socket_set_nonblock LDAP_P(( ber_socket_t sd, int nb )); |
|
|
|
/* |
|
* memory.c |
|
*/ |
|
LBER_F( void * ) |
|
ber_memalloc_x LDAP_P(( |
|
ber_len_t s, void *ctx)); |
|
|
|
LBER_F( void * ) |
|
ber_memrealloc_x LDAP_P(( |
|
void* p, |
|
ber_len_t s, void *ctx )); |
|
|
|
LBER_F( void * ) |
|
ber_memcalloc_x LDAP_P(( |
|
ber_len_t n, |
|
ber_len_t s, void *ctx )); |
|
|
|
LBER_F( void ) |
|
ber_memfree_x LDAP_P(( |
|
void* p, void *ctx )); |
|
|
|
LBER_F( void ) |
|
ber_memvfree_x LDAP_P(( |
|
void** vector, void *ctx )); |
|
|
|
LBER_F( void ) |
|
ber_bvfree_x LDAP_P(( |
|
struct berval *bv, void *ctx )); |
|
|
|
LBER_F( void ) |
|
ber_bvecfree_x LDAP_P(( |
|
struct berval **bv, void *ctx )); |
|
|
|
LBER_F( int ) |
|
ber_bvecadd_x LDAP_P(( |
|
struct berval ***bvec, |
|
struct berval *bv, void *ctx )); |
|
|
|
LBER_F( struct berval * ) |
|
ber_dupbv_x LDAP_P(( |
|
struct berval *dst, struct berval *src, void *ctx )); |
|
|
|
LBER_F( struct berval * ) |
|
ber_str2bv_x LDAP_P(( |
|
LDAP_CONST char *, ber_len_t len, int dup, struct berval *bv, void *ctx)); |
|
|
|
LBER_F( struct berval * ) |
|
ber_mem2bv_x LDAP_P(( |
|
LDAP_CONST char *, ber_len_t len, int dup, struct berval *bv, void *ctx)); |
|
|
|
LBER_F( char * ) |
|
ber_strdup_x LDAP_P(( |
|
LDAP_CONST char *, void *ctx )); |
|
|
|
LBER_F( void ) |
|
ber_bvarray_free_x LDAP_P(( BerVarray p, void *ctx )); |
|
|
|
LBER_F( int ) |
|
ber_bvarray_add_x LDAP_P(( BerVarray *p, BerValue *bv, void *ctx )); |
|
|
#if 0 |
#if 0 |
#define ber_bvstrcmp(v1,v2) \ |
#define ber_bvstrcmp(v1,v2) \ |
Line 86 ber_pvt_socket_set_nonblock LDAP_P(( ber
|
Line 165 ber_pvt_socket_set_nonblock LDAP_P(( ber
|
#define ber_bvchr(bv,c) \ |
#define ber_bvchr(bv,c) \ |
memchr( (bv)->bv_val, (c), (bv)->bv_len ) |
memchr( (bv)->bv_val, (c), (bv)->bv_len ) |
|
|
|
#define BER_BVC(s) { STRLENOF(s), (s) } |
|
#define BER_BVNULL { 0L, NULL } |
|
#define BER_BVZERO(bv) \ |
|
do { \ |
|
(bv)->bv_len = 0; \ |
|
(bv)->bv_val = NULL; \ |
|
} while (0) |
|
#define BER_BVSTR(bv,s) \ |
|
do { \ |
|
(bv)->bv_len = STRLENOF(s); \ |
|
(bv)->bv_val = (s); \ |
|
} while (0) |
|
#define BER_BVISNULL(bv) ((bv)->bv_val == NULL) |
|
#define BER_BVISEMPTY(bv) ((bv)->bv_len == 0) |
|
|
LDAP_END_DECL |
LDAP_END_DECL |
|
|
#endif |
#endif |