aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-service-transport_validation.c
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_validation.c
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_validation.c')
-rw-r--r--src/transport/gnunet-service-transport_validation.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/transport/gnunet-service-transport_validation.c b/src/transport/gnunet-service-transport_validation.c
index 89e901561..d36418cc2 100644
--- a/src/transport/gnunet-service-transport_validation.c
+++ b/src/transport/gnunet-service-transport_validation.c
@@ -517,7 +517,7 @@ static void
517transmit_ping_if_allowed (void *cls, 517transmit_ping_if_allowed (void *cls,
518 const struct GNUNET_PeerIdentity *pid, 518 const struct GNUNET_PeerIdentity *pid,
519 const struct GNUNET_HELLO_Address *address_null, 519 const struct GNUNET_HELLO_Address *address_null,
520 struct Session *session_null, 520 struct GNUNET_ATS_Session *session_null,
521 int result) 521 int result)
522{ 522{
523 struct ValidationEntry *ve = cls; 523 struct ValidationEntry *ve = cls;
@@ -529,7 +529,7 @@ transmit_ping_if_allowed (void *cls,
529 size_t tsize; 529 size_t tsize;
530 size_t slen; 530 size_t slen;
531 uint16_t hsize; 531 uint16_t hsize;
532 struct Session *session; 532 struct GNUNET_ATS_Session *session;
533 533
534 ve->bc = NULL; 534 ve->bc = NULL;
535 if (GNUNET_OK != result) 535 if (GNUNET_OK != result)
@@ -995,7 +995,7 @@ multicast_pong (void *cls,
995{ 995{
996 struct TransportPongMessage *pong = cls; 996 struct TransportPongMessage *pong = cls;
997 struct GNUNET_TRANSPORT_PluginFunctions *papi; 997 struct GNUNET_TRANSPORT_PluginFunctions *papi;
998 struct Session *session; 998 struct GNUNET_ATS_Session *session;
999 999
1000 papi = GST_plugins_find (address->transport_name); 1000 papi = GST_plugins_find (address->transport_name);
1001 if (NULL == papi) 1001 if (NULL == papi)
@@ -1039,7 +1039,7 @@ int
1039GST_validation_handle_ping (const struct GNUNET_PeerIdentity *sender, 1039GST_validation_handle_ping (const struct GNUNET_PeerIdentity *sender,
1040 const struct GNUNET_MessageHeader *hdr, 1040 const struct GNUNET_MessageHeader *hdr,
1041 const struct GNUNET_HELLO_Address *sender_address, 1041 const struct GNUNET_HELLO_Address *sender_address,
1042 struct Session *session) 1042 struct GNUNET_ATS_Session *session)
1043{ 1043{
1044 const struct TransportPingMessage *ping; 1044 const struct TransportPingMessage *ping;
1045 struct TransportPongMessage *pong; 1045 struct TransportPongMessage *pong;