Tor
0.4.9.2-alpha-dev
Toggle main menu visibility
Main Page
Related Pages
Modules
Data Structures
Data Structures
Data Structure Index
Data Fields
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Functions
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerator
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Typedefs
b
c
d
f
g
h
l
m
n
o
p
r
s
v
Enumerations
a
b
c
d
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Enumerator
a
b
c
d
e
g
h
i
m
n
o
p
q
r
s
t
v
w
Macros
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
core
or
crypt_path_reference_st.h
Go to the documentation of this file.
1
/* Copyright (c) 2001 Matej Pfajfar.
2
* Copyright (c) 2001-2004, Roger Dingledine.
3
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
4
* Copyright (c) 2007-2021, The Tor Project, Inc. */
5
/* See LICENSE for licensing information */
6
7
/**
8
* @file crypt_path_reference_st.h
9
* @brief reference-counting structure for crypt_path_t
10
**/
11
12
#ifndef CRYPT_PATH_REFERENCE_ST_H
13
#define CRYPT_PATH_REFERENCE_ST_H
14
15
/** A reference-counted pointer to a crypt_path_t, used only to share
16
* the final rendezvous cpath to be used on a service-side rendezvous
17
* circuit among multiple circuits built in parallel to the same
18
* destination rendezvous point. */
19
struct
crypt_path_reference_t
{
20
/** The reference count. */
21
unsigned
int
refcount
;
22
/** The pointer. Set to NULL when the crypt_path_t is put into use
23
* on an opened rendezvous circuit. */
24
crypt_path_t
*
cpath
;
25
};
26
27
#endif
/* !defined(CRYPT_PATH_REFERENCE_ST_H) */
crypt_path_reference_t
Definition:
crypt_path_reference_st.h:19
crypt_path_reference_t::cpath
crypt_path_t * cpath
Definition:
crypt_path_reference_st.h:24
crypt_path_reference_t::refcount
unsigned int refcount
Definition:
crypt_path_reference_st.h:21
crypt_path_t
Definition:
crypt_path_st.h:51
Generated by
1.9.4