mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-14 23:33:31 +01:00
19 lines
644 B
C
19 lines
644 B
C
/* Copyright (c) 2014-2020, The Tor Project, Inc. */
|
|
/* See LICENSE for licensing information */
|
|
|
|
#ifndef TOR_TEST_CONNECTION_H
|
|
#define TOR_TEST_CONNECTION_H
|
|
|
|
/** Some constants used by test_connection and helpers */
|
|
#define TEST_CONN_FAMILY (AF_INET)
|
|
#define TEST_CONN_ADDRESS "127.0.0.1"
|
|
#define TEST_CONN_ADDRESS_2 "127.0.0.2"
|
|
#define TEST_CONN_PORT (12345)
|
|
#define TEST_CONN_ADDRESS_PORT "127.0.0.1:12345"
|
|
#define TEST_CONN_FD_INIT 0x10000
|
|
|
|
void test_conn_lookup_addr_helper(const char *address,
|
|
int family, tor_addr_t *addr);
|
|
|
|
#endif /* !defined(TOR_TEST_CONNECTION_H) */
|