1/* Extracted from anet.c to work properly with Hiredis error reporting.
2 *
3 * Copyright (c) 2009-2011, Salvatore Sanfilippo <antirez at gmail dot com>
4 * Copyright (c) 2010-2014, Pieter Noordhuis <pcnoordhuis at gmail dot com>
5 * Copyright (c) 2015, Matt Stancliff <matt at genges dot com>,
6 * Jan-Erik Rediger <janerik at fnordig dot com>
7 *
8 * All rights reserved.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions are met:
12 *
13 * * Redistributions of source code must retain the above copyright notice,
14 * this list of conditions and the following disclaimer.
15 * * Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * * Neither the name of Redis nor the names of its contributors may be used
19 * to endorse or promote products derived from this software without
20 * specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
23 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
26 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32 * POSSIBILITY OF SUCH DAMAGE.
33 */
34
35#ifndef __NET_H
36#define __NET_H
37
38#include "hiredis.h"
39
40void redisNetClose(redisContext *c);
41ssize_t redisNetRead(redisContext *c, char *buf, size_t bufcap);
42ssize_t redisNetWrite(redisContext *c);
43
44int redisCheckSocketError(redisContext *c);
45int redisContextSetTimeout(redisContext *c, const struct timeval tv);
46int redisContextConnectTcp(redisContext *c, const char *addr, int port, const struct timeval *timeout);
47int redisContextConnectBindTcp(redisContext *c, const char *addr, int port,
48 const struct timeval *timeout,
49 const char *source_addr);
50int redisContextConnectUnix(redisContext *c, const char *path, const struct timeval *timeout);
51int redisKeepAlive(redisContext *c, int interval);
52int redisCheckConnectDone(redisContext *c, int *completed);
53
54int redisSetTcpNoDelay(redisContext *c);
55
56#endif
57