MIP_SDK
latest-2-g34f3e39
MicroStrain Communications Library for embedded systems
|
#include <microstrain/common/platform.h>
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
Go to the source code of this file.
Classes | |
struct | tcp_socket |
Typedefs | |
typedef struct tcp_socket | tcp_socket |
Functions | |
void | tcp_socket_init (tcp_socket *socket_ptr) |
bool | tcp_socket_is_open (const tcp_socket *socket_ptr) |
bool | tcp_socket_open (tcp_socket *socket_ptr, const char *hostname, uint16_t port, unsigned int timeout_ms) |
bool | tcp_socket_close (tcp_socket *socket_ptr) |
bool | tcp_socket_send (tcp_socket *socket_ptr, const void *buffer, size_t num_bytes, size_t *bytes_written) |
bool | tcp_socket_recv (tcp_socket *socket_ptr, void *buffer, size_t num_bytes, size_t *bytes_read) |