X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2Flber_pvt.h;h=b2f808d4a0ab91c33ade448d2f0952c949ab99fc;hb=975a5e9a24e971197baa9ea2d4479100977c9060;hp=0ac13134da41647220173de915491ceb98f4bdb7;hpb=eaaea51b538450656e746708732cfd36f45f77e7;p=openldap diff --git a/include/lber_pvt.h b/include/lber_pvt.h index 0ac13134da..b2f808d4a0 100644 --- a/include/lber_pvt.h +++ b/include/lber_pvt.h @@ -1,12 +1,13 @@ /* $OpenLDAP$ */ /* - * Copyright 1998,1999 The OpenLDAP Foundation, Redwood City, California, USA + * Copyright 1998-2001 The OpenLDAP Foundation, Redwood City, California, USA * All rights reserved. * - * Redistribution and use in source and binary forms 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. + * 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. */ /* * lber_pvt.h - Header for ber_pvt_ functions. These are meant to be used @@ -20,18 +21,46 @@ LDAP_BEGIN_DECL +typedef struct sockbuf_buf { + ber_len_t buf_size; + ber_len_t buf_ptr; + ber_len_t buf_end; + char *buf_base; +} Sockbuf_Buf; + /* * bprint.c */ -LIBLBER_F( BER_LOG_PRINT_FN ) ber_pvt_log_print; +LBER_V( BER_LOG_PRINT_FN ) ber_pvt_log_print; -LIBLBER_F( int ) +LBER_F( int ) ber_pvt_log_printf LDAP_P(( int errlvl, int loglvl, const char *fmt, ... )) LDAP_GCCATTR((format(printf, 3, 4))); +/* + * sockbuf.c + */ +LBER_F( ber_slen_t ) +ber_pvt_sb_do_write LDAP_P(( Sockbuf_IO_Desc *sbiod, Sockbuf_Buf *buf_out )); + +LBER_F( void ) +ber_pvt_sb_buf_init LDAP_P(( Sockbuf_Buf *buf )); + +LBER_F( void ) +ber_pvt_sb_buf_destroy LDAP_P(( Sockbuf_Buf *buf )); + +LBER_F( int ) +ber_pvt_sb_grow_buffer LDAP_P(( Sockbuf_Buf *buf, ber_len_t minsize )); + +LBER_F( ber_len_t ) +ber_pvt_sb_copy_out LDAP_P(( Sockbuf_Buf *sbb, char *buf, ber_len_t len )); + +LBER_F( int ) +ber_pvt_socket_set_nonblock LDAP_P(( ber_socket_t sd, int nb )); + LDAP_END_DECL #endif