summaryrefslogtreecommitdiff
path: root/lib/gnutls_buffers.h
blob: 121311186fcadae6a77b8dcc69093d51fc2afc4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
 * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation
 *
 * Author: Nikos Mavroyanopoulos
 *
 * This file is part of GNUTLS.
 *
 * The GNUTLS library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 * USA
 *
 */

int _gnutls_record_buffer_put(content_type_t type,
			      gnutls_session_t session, opaque * data,
			      size_t length);
int _gnutls_record_buffer_get_size(content_type_t type,
				   gnutls_session_t session);
int _gnutls_record_buffer_get(content_type_t type,
			      gnutls_session_t session, opaque * data,
			      size_t length);
ssize_t _gnutls_io_read_buffered(gnutls_session_t, opaque ** iptr,
				 size_t n, content_type_t);
void _gnutls_io_clear_read_buffer(gnutls_session_t);
int _gnutls_io_clear_peeked_data(gnutls_session_t session);

ssize_t _gnutls_io_write_buffered(gnutls_session_t, const void *iptr,
				  size_t n);
ssize_t _gnutls_io_write_buffered2(gnutls_session_t, const void *iptr,
				   size_t n, const void *iptr2, size_t n2);

int _gnutls_handshake_buffer_get_size(gnutls_session_t session);
int _gnutls_handshake_buffer_peek(gnutls_session_t session, opaque * data,
				  size_t length);
int _gnutls_handshake_buffer_put(gnutls_session_t session, opaque * data,
				 size_t length);
int _gnutls_handshake_buffer_clear(gnutls_session_t session);
int _gnutls_handshake_buffer_empty(gnutls_session_t session);
int _gnutls_handshake_buffer_get_ptr(gnutls_session_t session,
				     opaque ** data_ptr, size_t * length);

#define _gnutls_handshake_io_buffer_clear( session) \
        _gnutls_buffer_clear( &session->internals.handshake_send_buffer); \
        _gnutls_buffer_clear( &session->internals.handshake_recv_buffer); \
        session->internals.handshake_send_buffer_prev_size = 0

ssize_t _gnutls_handshake_io_recv_int(gnutls_session_t, content_type_t,
				      gnutls_handshake_description_t, void *, size_t);
ssize_t _gnutls_handshake_io_send_int(gnutls_session_t, content_type_t,
				      gnutls_handshake_description_t, const void *, size_t);
ssize_t _gnutls_io_write_flush(gnutls_session_t session);
ssize_t _gnutls_handshake_io_write_flush(gnutls_session_t session);

size_t gnutls_record_check_pending(gnutls_session_t session);