aboutsummaryrefslogtreecommitdiff
path: root/src/transport
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2012-02-13 17:00:10 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2012-02-13 17:00:10 +0000
commit3b2be11385b8b4626b86d4438008eb0508f856fa (patch)
tree50129841d9edb39ac8a1a01b3972c15bf6c198f9 /src/transport
parent6be522885e1ad907c00a293b928fc37973f0d331 (diff)
downloadgnunet-3b2be11385b8b4626b86d4438008eb0508f856fa.tar.gz
gnunet-3b2be11385b8b4626b86d4438008eb0508f856fa.zip
- doxygen errors
Diffstat (limited to 'src/transport')
-rw-r--r--src/transport/gnunet-service-transport.c4
-rw-r--r--src/transport/gnunet-service-transport_neighbours.c6
-rw-r--r--src/transport/transport_api_address_lookup.c2
3 files changed, 6 insertions, 6 deletions
diff --git a/src/transport/gnunet-service-transport.c b/src/transport/gnunet-service-transport.c
index 8b96babc3..cd9bb5c65 100644
--- a/src/transport/gnunet-service-transport.c
+++ b/src/transport/gnunet-service-transport.c
@@ -120,7 +120,7 @@ process_hello_update (void *cls, const struct GNUNET_MessageHeader *hello)
120 * @param peer (claimed) identity of the other peer 120 * @param peer (claimed) identity of the other peer
121 * @param address the address 121 * @param address the address
122 * @param session session used 122 * @param session session used
123 * @param msg the message to process 123 * @param message the message to process
124 * @param ats performance information 124 * @param ats performance information
125 * @param ats_count number of records in ats 125 * @param ats_count number of records in ats
126 * @return how long the plugin should wait until receiving more data 126 * @return how long the plugin should wait until receiving more data
@@ -408,7 +408,7 @@ plugin_env_address_to_type (void *cls,
408 * @param bandwidth_out assigned outbound bandwidth for the connection, 0 to disconnect from peer 408 * @param bandwidth_out assigned outbound bandwidth for the connection, 0 to disconnect from peer
409 * @param bandwidth_in assigned inbound bandwidth for the connection, 0 to disconnect from peer 409 * @param bandwidth_in assigned inbound bandwidth for the connection, 0 to disconnect from peer
410 * @param ats ATS information 410 * @param ats ATS information
411 * @param number of ATS elements 411 * @param ats_count number of ATS elements
412 */ 412 */
413static void 413static void
414ats_request_address_change (void *cls, 414ats_request_address_change (void *cls,
diff --git a/src/transport/gnunet-service-transport_neighbours.c b/src/transport/gnunet-service-transport_neighbours.c
index 12a3cd171..6c072130b 100644
--- a/src/transport/gnunet-service-transport_neighbours.c
+++ b/src/transport/gnunet-service-transport_neighbours.c
@@ -791,19 +791,19 @@ transmission_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
791 * @param cls closure for callbacks 791 * @param cls closure for callbacks
792 * @param connect_cb function to call if we connect to a peer 792 * @param connect_cb function to call if we connect to a peer
793 * @param disconnect_cb function to call if we disconnect from a peer 793 * @param disconnect_cb function to call if we disconnect from a peer
794 * @param address_cb function to call if we change an active address 794 * @param peer_address_cb function to call if we change an active address
795 * of a neighbour 795 * of a neighbour
796 */ 796 */
797void 797void
798GST_neighbours_start (void *cls, 798GST_neighbours_start (void *cls,
799 GNUNET_TRANSPORT_NotifyConnect connect_cb, 799 GNUNET_TRANSPORT_NotifyConnect connect_cb,
800 GNUNET_TRANSPORT_NotifyDisconnect disconnect_cb, 800 GNUNET_TRANSPORT_NotifyDisconnect disconnect_cb,
801 GNUNET_TRANSPORT_PeerIterateCallback address_cb) 801 GNUNET_TRANSPORT_PeerIterateCallback peer_address_cb)
802{ 802{
803 callback_cls = cls; 803 callback_cls = cls;
804 connect_notify_cb = connect_cb; 804 connect_notify_cb = connect_cb;
805 disconnect_notify_cb = disconnect_cb; 805 disconnect_notify_cb = disconnect_cb;
806 address_change_cb = address_cb; 806 address_change_cb = peer_address_cb;
807 neighbours = GNUNET_CONTAINER_multihashmap_create (NEIGHBOUR_TABLE_SIZE); 807 neighbours = GNUNET_CONTAINER_multihashmap_create (NEIGHBOUR_TABLE_SIZE);
808} 808}
809 809
diff --git a/src/transport/transport_api_address_lookup.c b/src/transport/transport_api_address_lookup.c
index 32bb41d55..6e03945c5 100644
--- a/src/transport/transport_api_address_lookup.c
+++ b/src/transport/transport_api_address_lookup.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file transport/transport_api_peer_address_lookup.c 22 * @file transport/transport_api_address_lookup.c
23 * @brief given a peer id, get all known addresses from transport service 23 * @brief given a peer id, get all known addresses from transport service
24 * 24 *
25 * This api provides the ability to query the transport service about 25 * This api provides the ability to query the transport service about