aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-service-transport_ats.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-10-18 12:33:21 +0000
committerChristian Grothoff <christian@grothoff.org>2015-10-18 12:33:21 +0000
commit9cd0d5068f3341fe8451a61872894f28a5ac9047 (patch)
tree390b09e837978c1dbef176950b04f42ecf39e140 /src/transport/gnunet-service-transport_ats.h
parent38d26a302cba9de8362960186b645e8f2133a538 (diff)
downloadgnunet-9cd0d5068f3341fe8451a61872894f28a5ac9047.tar.gz
gnunet-9cd0d5068f3341fe8451a61872894f28a5ac9047.zip
rename 'struct Session' to 'struct GNUNET_ATS_Session' to satisfy naming conventions
Diffstat (limited to 'src/transport/gnunet-service-transport_ats.h')
-rw-r--r--src/transport/gnunet-service-transport_ats.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/transport/gnunet-service-transport_ats.h b/src/transport/gnunet-service-transport_ats.h
index e73e82913..5e98112f8 100644
--- a/src/transport/gnunet-service-transport_ats.h
+++ b/src/transport/gnunet-service-transport_ats.h
@@ -52,7 +52,7 @@ GST_ats_done (void);
52 */ 52 */
53int 53int
54GST_ats_is_known (const struct GNUNET_HELLO_Address *address, 54GST_ats_is_known (const struct GNUNET_HELLO_Address *address,
55 struct Session *session); 55 struct GNUNET_ATS_Session *session);
56 56
57 57
58/** 58/**
@@ -77,7 +77,7 @@ GST_ats_is_known_no_session (const struct GNUNET_HELLO_Address *address);
77 */ 77 */
78void 78void
79GST_ats_block_address (const struct GNUNET_HELLO_Address *address, 79GST_ats_block_address (const struct GNUNET_HELLO_Address *address,
80 struct Session *session); 80 struct GNUNET_ATS_Session *session);
81 81
82 82
83/** 83/**
@@ -90,7 +90,7 @@ GST_ats_block_address (const struct GNUNET_HELLO_Address *address,
90 */ 90 */
91void 91void
92GST_ats_block_reset (const struct GNUNET_HELLO_Address *address, 92GST_ats_block_reset (const struct GNUNET_HELLO_Address *address,
93 struct Session *session); 93 struct GNUNET_ATS_Session *session);
94 94
95 95
96/** 96/**
@@ -105,7 +105,7 @@ GST_ats_block_reset (const struct GNUNET_HELLO_Address *address,
105 */ 105 */
106void 106void
107GST_ats_add_inbound_address (const struct GNUNET_HELLO_Address *address, 107GST_ats_add_inbound_address (const struct GNUNET_HELLO_Address *address,
108 struct Session *session, 108 struct GNUNET_ATS_Session *session,
109 const struct GNUNET_ATS_Properties *prop); 109 const struct GNUNET_ATS_Properties *prop);
110 110
111 111
@@ -132,7 +132,7 @@ GST_ats_add_address (const struct GNUNET_HELLO_Address *address,
132 */ 132 */
133void 133void
134GST_ats_new_session (const struct GNUNET_HELLO_Address *address, 134GST_ats_new_session (const struct GNUNET_HELLO_Address *address,
135 struct Session *session); 135 struct GNUNET_ATS_Session *session);
136 136
137 137
138/** 138/**
@@ -187,7 +187,7 @@ GST_ats_update_distance (const struct GNUNET_HELLO_Address *address,
187 */ 187 */
188void 188void
189GST_ats_del_session (const struct GNUNET_HELLO_Address *address, 189GST_ats_del_session (const struct GNUNET_HELLO_Address *address,
190 struct Session *session); 190 struct GNUNET_ATS_Session *session);
191 191
192 192
193/** 193/**