mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 13:43:47 +01:00
20 lines
593 B
C
20 lines
593 B
C
/* Copyright (c) 2001 Matej Pfajfar.
|
|
* Copyright (c) 2001-2004, Roger Dingledine.
|
|
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
|
* Copyright (c) 2007-2017, The Tor Project, Inc. */
|
|
/* See LICENSE for licensing information */
|
|
|
|
#ifndef TOR_BUFFERS_TLS_H
|
|
#define TOR_BUFFERS_TLS_H
|
|
|
|
struct buf_t;
|
|
struct tor_tls_t;
|
|
|
|
int buf_read_from_tls(struct buf_t *buf,
|
|
struct tor_tls_t *tls, size_t at_most);
|
|
int buf_flush_to_tls(struct buf_t *buf, struct tor_tls_t *tls,
|
|
size_t sz, size_t *buf_flushlen);
|
|
|
|
#endif /* !defined(TOR_BUFFERS_TLS_H) */
|
|
|