mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-13 22:53:44 +01:00
27 lines
745 B
C
27 lines
745 B
C
|
/* Copyright (c) 2001 Matej Pfajfar.
|
||
|
* Copyright (c) 2001-2004, Roger Dingledine.
|
||
|
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
||
|
* Copyright (c) 2007-2018, The Tor Project, Inc. */
|
||
|
/* See LICENSE for licensing information */
|
||
|
|
||
|
/**
|
||
|
* \file buffers.h
|
||
|
* \brief Header file for buffers.c.
|
||
|
**/
|
||
|
|
||
|
#ifndef TOR_BUFFERS_NET_H
|
||
|
#define TOR_BUFFERS_NET_H
|
||
|
|
||
|
#include <stddef.h>
|
||
|
#include "lib/net/socket.h"
|
||
|
|
||
|
struct buf_t;
|
||
|
int buf_read_from_socket(struct buf_t *buf, tor_socket_t s, size_t at_most,
|
||
|
int *reached_eof,
|
||
|
int *socket_error);
|
||
|
|
||
|
int buf_flush_to_socket(struct buf_t *buf, tor_socket_t s, size_t sz,
|
||
|
size_t *buf_flushlen);
|
||
|
|
||
|
#endif /* !defined(TOR_BUFFERS_H) */
|