X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2Flber_pvt.h;h=b2f808d4a0ab91c33ade448d2f0952c949ab99fc;hb=975a5e9a24e971197baa9ea2d4479100977c9060;hp=fc8091e0aa6376aebf42f7f67c85d407e8f8414f;hpb=321354ecff5571b92cda1bf4b0299e33218d9be8;p=openldap diff --git a/include/lber_pvt.h b/include/lber_pvt.h index fc8091e0aa..b2f808d4a0 100644 --- a/include/lber_pvt.h +++ b/include/lber_pvt.h @@ -1,14 +1,16 @@ +/* $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 lber_pvt_ functions. These are meant to be used + * lber_pvt.h - Header for ber_pvt_ functions. These are meant to be used * by the OpenLDAP distribution only. */ @@ -19,16 +21,45 @@ 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 */ -extern BER_LOG_PRINT_FN lber_pvt_log_print; +LBER_V( BER_LOG_PRINT_FN ) ber_pvt_log_print; -LDAP_F int lber_pvt_log_printf LDAP_P(( +LBER_F( int ) +ber_pvt_log_printf LDAP_P(( int errlvl, int loglvl, - char *fmt, - ... )); + 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