moved all third-party lib to separate folder
This commit is contained in:
4
thirdparty/libcsp/src/transport/CMakeLists.txt
vendored
Normal file
4
thirdparty/libcsp/src/transport/CMakeLists.txt
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
target_sources(${LIB_CSP_NAME} PRIVATE
|
||||
csp_rdp.c
|
||||
csp_udp.c
|
||||
)
|
1102
thirdparty/libcsp/src/transport/csp_rdp.c
vendored
Normal file
1102
thirdparty/libcsp/src/transport/csp_rdp.c
vendored
Normal file
File diff suppressed because it is too large
Load Diff
46
thirdparty/libcsp/src/transport/csp_transport.h
vendored
Normal file
46
thirdparty/libcsp/src/transport/csp_transport.h
vendored
Normal file
@ -0,0 +1,46 @@
|
||||
/*
|
||||
Cubesat Space Protocol - A small network-layer protocol designed for Cubesats
|
||||
Copyright (C) 2012 GomSpace ApS (http://www.gomspace.com)
|
||||
Copyright (C) 2012 AAUSAT3 Project (http://aausat3.space.aau.dk)
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library 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
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#ifndef _CSP_TRANSPORT_H_
|
||||
#define _CSP_TRANSPORT_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/** ARRIVING SEGMENT */
|
||||
void csp_udp_new_packet(csp_conn_t * conn, csp_packet_t * packet);
|
||||
void csp_rdp_new_packet(csp_conn_t * conn, csp_packet_t * packet);
|
||||
|
||||
/** RDP: USER REQUESTS */
|
||||
int csp_rdp_connect(csp_conn_t * conn, uint32_t timeout);
|
||||
int csp_rdp_allocate(csp_conn_t * conn);
|
||||
int csp_rdp_close(csp_conn_t * conn);
|
||||
void csp_rdp_conn_print(csp_conn_t * conn);
|
||||
int csp_rdp_send(csp_conn_t * conn, csp_packet_t * packet, uint32_t timeout);
|
||||
int csp_rdp_check_ack(csp_conn_t * conn);
|
||||
void csp_rdp_check_timeouts(csp_conn_t * conn);
|
||||
void csp_rdp_flush_all(csp_conn_t * conn);
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /* extern "C" */
|
||||
#endif
|
||||
|
||||
#endif /* _CSP_TRANSPORT_H_ */
|
49
thirdparty/libcsp/src/transport/csp_udp.c
vendored
Normal file
49
thirdparty/libcsp/src/transport/csp_udp.c
vendored
Normal file
@ -0,0 +1,49 @@
|
||||
/*
|
||||
Cubesat Space Protocol - A small network-layer protocol designed for Cubesats
|
||||
Copyright (C) 2012 GomSpace ApS (http://www.gomspace.com)
|
||||
Copyright (C) 2012 AAUSAT3 Project (http://aausat3.space.aau.dk)
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library 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
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include <csp/csp.h>
|
||||
#include <csp/arch/csp_queue.h>
|
||||
#include "../csp_port.h"
|
||||
#include "../csp_conn.h"
|
||||
#include "csp_transport.h"
|
||||
|
||||
void csp_udp_new_packet(csp_conn_t * conn, csp_packet_t * packet) {
|
||||
|
||||
/* Enqueue */
|
||||
if (csp_conn_enqueue_packet(conn, packet) < 0) {
|
||||
csp_log_error("Connection buffer queue full!");
|
||||
csp_buffer_free(packet);
|
||||
return;
|
||||
}
|
||||
|
||||
/* Try to queue up the new connection pointer */
|
||||
if (conn->socket != NULL) {
|
||||
if (csp_queue_enqueue(conn->socket, &conn, 0) != CSP_QUEUE_OK) {
|
||||
csp_log_warn("Warning socket connection queue full");
|
||||
csp_close(conn);
|
||||
return;
|
||||
}
|
||||
|
||||
/* Ensure that this connection will not be posted to this socket again */
|
||||
conn->socket = NULL;
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user