![]() |
F´ Flight Software - C/C++ Documentation
devel
A framework for building embedded system applications to NASA flight quality standards.
|
Helper for setting up Tcp using Berkeley sockets as a server. More...
#include <Drv/Ip/TcpServerSocket.hpp>
Public Member Functions | |
TcpServerSocket () | |
Constructor for client socket tcp implementation. More... | |
SocketIpStatus | startup () override |
Opens the server socket and listens, does not block. More... | |
void | shutdown () override |
Shutdown and close the server socket followed by the open client. More... | |
![]() | |
IpSocket () | |
virtual | ~IpSocket () |
SocketIpStatus | configure (const char *hostname, const U16 port, const U32 send_timeout_seconds, const U32 send_timeout_microseconds) |
configure the ip socket with host and transmission timeouts More... | |
bool | isStarted () |
Returns true when the socket is started. More... | |
bool | isOpened () |
check if IP socket has previously been opened More... | |
SocketIpStatus | open () |
open the IP socket for communications More... | |
SocketIpStatus | send (const U8 *const data, const U32 size) |
send data out the IP socket from the given buffer More... | |
SocketIpStatus | recv (U8 *const data, I32 &size) |
receive data from the IP socket from the given buffer More... | |
void | close () |
closes the socket More... | |
Protected Member Functions | |
SocketIpStatus | openProtocol (NATIVE_INT_TYPE &fd) override |
Tcp specific implementation for opening a client socket connected to this server. More... | |
I32 | sendProtocol (const U8 *const data, const U32 size) override |
Protocol specific implementation of send. Called directly with retry from send. More... | |
I32 | recvProtocol (U8 *const data, const U32 size) override |
Protocol specific implementation of recv. Called directly with error handling from recv. More... | |
![]() | |
SocketIpStatus | setupTimeouts (NATIVE_INT_TYPE socketFd) |
setup the socket timeout properties of the opened outgoing socket More... | |
Additional Inherited Members | |
![]() | |
static SocketIpStatus | addressToIp4 (const char *address, void *ip4) |
converts a given address in dot form x.x.x.x to an ip address. ONLY works for IPv4. More... | |
![]() | |
Os::Mutex | m_lock |
NATIVE_INT_TYPE | m_fd |
U32 | m_timeoutSeconds |
U32 | m_timeoutMicroseconds |
U16 | m_port |
IP address port used. More... | |
bool | m_open |
Have we successfully opened. More... | |
bool | m_started |
Have we successfully started the socket. More... | |
char | m_hostname [SOCKET_MAX_HOSTNAME_SIZE] |
Hostname to supply. More... | |
Helper for setting up Tcp using Berkeley sockets as a server.
Certain IP headers have conflicting definitions with the m_data member of various types in fprime. TcpServerSocket separates the ip setup from the incoming Fw::Buffer in the primary component class preventing this collision.
Definition at line 26 of file TcpServerSocket.hpp.
Drv::TcpServerSocket::TcpServerSocket | ( | ) |
Constructor for client socket tcp implementation.
Definition at line 40 of file TcpServerSocket.cpp.
|
overrideprotectedvirtual |
Tcp specific implementation for opening a client socket connected to this server.
fd | (output) file descriptor opened. Only valid on SOCK_SUCCESS. Otherwise will be invalid |
Implements Drv::IpSocket.
Definition at line 93 of file TcpServerSocket.cpp.
|
overrideprotectedvirtual |
Protocol specific implementation of recv. Called directly with error handling from recv.
data | data pointer to fill |
size | size of data buffer |
Implements Drv::IpSocket.
Definition at line 126 of file TcpServerSocket.cpp.
|
overrideprotectedvirtual |
Protocol specific implementation of send. Called directly with retry from send.
data | data to send |
size | size of data to send |
Implements Drv::IpSocket.
Definition at line 122 of file TcpServerSocket.cpp.
|
overridevirtual |
Shutdown and close the server socket followed by the open client.
First, this calls shutdown
and close
on the server socket and then calls the close method to shutdown
and close
the client.
Reimplemented from Drv::IpSocket.
Definition at line 82 of file TcpServerSocket.cpp.
|
overridevirtual |
Opens the server socket and listens, does not block.
Opens the server's listening socket such that this server can listen for incoming client requests. Given the nature of this component, only one (1) client can be handled at a time. After this call succeeds, clients may connect. This call does not block, block occurs on open
while waiting to accept incoming clients.
Reimplemented from Drv::IpSocket.
Definition at line 42 of file TcpServerSocket.cpp.