/**
* Create a new session
*
- * @param address address the peer is using inbound
- * @param address address the peer is using outbound
+ * @param addr_in address the peer is using inbound
+ * @param addr_out address the peer is using outbound
* @param peer identity
* @return created session object
*/
* @param session session to send data to
* @return bytes sent to peer
*/
-static size_t send_prepare(struct Session* session );
+static size_t send_prepare(struct Session* ses );
/**
* Function setting up curl handle and selecting message to send
* @param ses session to send data to
* @return bytes sent to peer
*/
-static size_t send_prepare(struct Session* session )
+static size_t send_prepare(struct Session* ses )
{
fd_set rs;
fd_set ws;
grs,
gws,
&send_execute,
- session);
+ ses);
GNUNET_NETWORK_fdset_destroy (gws);
GNUNET_NETWORK_fdset_destroy (grs);