2013-06-28 08:59:16 +08:00
|
|
|
/* Lossless_UDP.h
|
2013-07-27 20:43:36 +08:00
|
|
|
*
|
2013-08-04 05:46:52 +08:00
|
|
|
* An implementation of the Lossless_UDP protocol as seen in http://wiki.tox.im/index.php/Lossless_UDP
|
2013-07-27 20:43:36 +08:00
|
|
|
*
|
2013-07-26 09:45:56 +08:00
|
|
|
* Copyright (C) 2013 Tox project All Rights Reserved.
|
|
|
|
*
|
|
|
|
* This file is part of Tox.
|
|
|
|
*
|
|
|
|
* Tox is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Tox is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Tox. If not, see <http://www.gnu.org/licenses/>.
|
2013-07-27 20:43:36 +08:00
|
|
|
*
|
2013-07-26 09:45:56 +08:00
|
|
|
*/
|
2013-06-30 06:40:41 +08:00
|
|
|
|
2013-07-27 20:43:36 +08:00
|
|
|
#ifndef LOSSLESS_UDP_H
|
|
|
|
#define LOSSLESS_UDP_H
|
2013-06-28 08:59:16 +08:00
|
|
|
|
|
|
|
#include "network.h"
|
|
|
|
|
2013-07-23 06:06:24 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2013-06-28 08:59:16 +08:00
|
|
|
|
2013-07-27 20:48:50 +08:00
|
|
|
/* maximum length of the data in the data packets */
|
2013-07-03 21:45:01 +08:00
|
|
|
#define MAX_DATA_SIZE 1024
|
|
|
|
|
2013-08-02 03:58:19 +08:00
|
|
|
/*
|
|
|
|
* Initialize a new connection to ip_port
|
|
|
|
* Returns an integer corresponding to the connection id.
|
|
|
|
* Return -1 if it could not initialize the connection.
|
|
|
|
* Return number if there already was an existing connection to that ip_port.
|
|
|
|
*/
|
2013-07-27 20:48:50 +08:00
|
|
|
int new_connection(IP_Port ip_port);
|
2013-06-28 08:59:16 +08:00
|
|
|
|
2013-08-02 03:58:19 +08:00
|
|
|
/*
|
|
|
|
* Get connection id from IP_Port.
|
|
|
|
* Return -1 if there are no connections like we are looking for.
|
|
|
|
* Return id if it found it .
|
|
|
|
*/
|
2013-07-27 20:48:50 +08:00
|
|
|
int getconnection_id(IP_Port ip_port);
|
2013-06-30 23:34:35 +08:00
|
|
|
|
2013-08-02 03:58:19 +08:00
|
|
|
/*
|
|
|
|
* Returns an int corresponding to the next connection in our imcoming connection list
|
|
|
|
* Return -1 if there are no new incoming connections in the list.
|
|
|
|
*/
|
2013-07-27 20:48:50 +08:00
|
|
|
int incoming_connection();
|
2013-06-28 08:59:16 +08:00
|
|
|
|
2013-08-02 03:58:19 +08:00
|
|
|
/*
|
|
|
|
* Return -1 if it could not kill the connection.
|
|
|
|
* Return 0 if killed successfully
|
|
|
|
*/
|
2013-07-27 20:48:50 +08:00
|
|
|
int kill_connection(int connection_id);
|
2013-06-28 08:59:16 +08:00
|
|
|
|
2013-08-02 03:58:19 +08:00
|
|
|
/*
|
|
|
|
* Kill connection in seconds seconds.
|
|
|
|
* Return -1 if it can not kill the connection.
|
|
|
|
* Return 0 if it will kill it
|
|
|
|
*/
|
2013-07-27 20:48:50 +08:00
|
|
|
int kill_connection_in(int connection_id, uint32_t seconds);
|
2013-06-30 23:34:35 +08:00
|
|
|
|
2013-08-02 03:58:19 +08:00
|
|
|
/*
|
|
|
|
* Returns the ip_port of the corresponding connection.
|
|
|
|
* Return 0 if there is no such connection.
|
|
|
|
*/
|
2013-07-27 20:48:50 +08:00
|
|
|
IP_Port connection_ip(int connection_id);
|
2013-06-30 23:34:35 +08:00
|
|
|
|
2013-08-02 03:58:19 +08:00
|
|
|
/*
|
|
|
|
* Returns the id of the next packet in the queue
|
|
|
|
* Return -1 if no packet in queue
|
|
|
|
*/
|
2013-07-27 20:48:50 +08:00
|
|
|
char id_packet(int connection_id);
|
2013-06-30 23:34:35 +08:00
|
|
|
|
2013-08-02 03:58:19 +08:00
|
|
|
/*
|
|
|
|
* Return 0 if there is no received data in the buffer.
|
|
|
|
* Return length of received packet if successful
|
|
|
|
*/
|
2013-07-27 20:48:50 +08:00
|
|
|
int read_packet(int connection_id, uint8_t *data);
|
2013-06-28 08:59:16 +08:00
|
|
|
|
2013-08-02 03:58:19 +08:00
|
|
|
/*
|
|
|
|
* Return 0 if data could not be put in packet queue
|
|
|
|
* Return 1 if data was put into the queue
|
|
|
|
*/
|
2013-07-27 20:48:50 +08:00
|
|
|
int write_packet(int connection_id, uint8_t *data, uint32_t length);
|
2013-07-06 05:00:39 +08:00
|
|
|
|
2013-08-02 03:58:19 +08:00
|
|
|
/* Returns the number of packets in the queue waiting to be successfully sent. */
|
2013-07-27 20:48:50 +08:00
|
|
|
uint32_t sendqueue(int connection_id);
|
2013-06-28 08:59:16 +08:00
|
|
|
|
2013-08-02 03:58:19 +08:00
|
|
|
/*
|
|
|
|
* returns the number of packets in the queue waiting to be successfully
|
|
|
|
* read with read_packet(...)
|
|
|
|
*/
|
2013-07-27 20:48:50 +08:00
|
|
|
uint32_t recvqueue(int connection_id);
|
2013-06-28 08:59:16 +08:00
|
|
|
|
2013-08-02 03:58:19 +08:00
|
|
|
/* Check if connection is connected:
|
|
|
|
* Return 0 no.
|
|
|
|
* Return 1 if attempting handshake.
|
|
|
|
* Return 2 if handshake is done.
|
|
|
|
* Return 3 if fully connected.
|
|
|
|
* Return 4 if timed out and wating to be killed.
|
|
|
|
*/
|
2013-07-27 20:48:50 +08:00
|
|
|
int is_connected(int connection_id);
|
2013-06-28 08:59:16 +08:00
|
|
|
|
2013-08-02 03:58:19 +08:00
|
|
|
/* Call this function a couple times per second It's the main loop. */
|
2013-07-27 20:48:50 +08:00
|
|
|
void doLossless_UDP();
|
2013-06-28 08:59:16 +08:00
|
|
|
|
2013-08-02 03:58:19 +08:00
|
|
|
/*
|
|
|
|
* If we receive a Lossless_UDP packet, call this function so it can be handled.
|
|
|
|
* Return 0 if packet is handled correctly.
|
|
|
|
* Return 1 if it didn't handle the packet or if the packet was shit.
|
|
|
|
*/
|
2013-07-27 20:48:50 +08:00
|
|
|
int LosslessUDP_handlepacket(uint8_t *packet, uint32_t length, IP_Port source);
|
2013-06-28 08:59:16 +08:00
|
|
|
|
2013-07-23 06:06:24 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-06-30 23:34:35 +08:00
|
|
|
#endif
|