X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;ds=sidebyside;f=include%2Flber_pvt.h;h=f67a26ae5e579942615e750b39380382a976b1c2;hb=1f1f8849ebb285dab07dfd06e75d1adef51f01a4;hp=30ec675f14f0f114d87e85c657bf9be95f4124db;hpb=bd36de108fd8b44ec751581efbef600b6d13c7d6;p=openldap diff --git a/include/lber_pvt.h b/include/lber_pvt.h index 30ec675f14..f67a26ae5e 100644 --- a/include/lber_pvt.h +++ b/include/lber_pvt.h @@ -1,6 +1,6 @@ /* $OpenLDAP$ */ /* - * Copyright 1998,1999 The OpenLDAP Foundation, Redwood City, California, USA + * Copyright 1998-2000 The OpenLDAP Foundation, Redwood City, California, USA * All rights reserved. * * Redistribution and use in source and binary forms are permitted only @@ -20,17 +20,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 */ -LDAP_F( BER_LOG_PRINT_FN ) ber_pvt_log_print; +LBER_F( BER_LOG_PRINT_FN ) ber_pvt_log_print; -LDAP_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