tcp.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2016 Alexander Aring <aar@pengutronix.de>
3  * Freie Universität Berlin
4  * HAW Hamburg
5  * Kaspar Schleiser <kaspar@schleiser.de>
6  *
7  * This file is subject to the terms and conditions of the GNU Lesser
8  * General Public License v2.1. See the file LICENSE in the top level
9  * directory for more details.
10  */
11 
12 #pragma once
13 
304 #include <errno.h>
305 #include <stdint.h>
306 #include <stdlib.h>
307 #include <sys/types.h>
308 
309 /* net/sock/async/types.h included by net/sock.h needs to re-typedef the
310  * `sock_tcp_t` and `sock_tcp_queue_t` to prevent cyclic includes */
311 #if defined (__clang__)
312 # pragma clang diagnostic push
313 # pragma clang diagnostic ignored "-Wtypedef-redefinition"
314 #endif
315 
316 #include "net/sock.h"
317 
318 #ifdef __cplusplus
319 extern "C" {
320 #endif
321 
322 typedef struct _sock_tl_ep sock_tcp_ep_t;
330 typedef struct sock_tcp sock_tcp_t;
331 
338 typedef struct sock_tcp_queue sock_tcp_queue_t;
339 
340 #if defined (__clang__)
341 # pragma clang diagnostic pop
342 #endif
343 
374 int sock_tcp_connect(sock_tcp_t *sock, const sock_tcp_ep_t *remote,
375  uint16_t local_port, uint16_t flags);
376 
401  sock_tcp_t *queue_array, unsigned queue_len,
402  uint16_t flags);
403 
414 
423 
436 
449 
462 
489  uint32_t timeout);
490 
521 ssize_t sock_tcp_read(sock_tcp_t *sock, void *data, size_t max_len,
522  uint32_t timeout);
523 
544 ssize_t sock_tcp_write(sock_tcp_t *sock, const void *data, size_t len);
545 
546 #ifdef __cplusplus
547 }
548 #endif
549 
550 #include "sock_types.h"
551 
int sock_tcp_get_local(sock_tcp_t *sock, sock_tcp_ep_t *ep)
Gets the local end point of a TCP sock object.
int sock_tcp_listen(sock_tcp_queue_t *queue, const sock_tcp_ep_t *local, sock_tcp_t *queue_array, unsigned queue_len, uint16_t flags)
Listen for an incoming connection request on local end point.
void sock_tcp_stop_listen(sock_tcp_queue_t *queue)
Stops listening on TCP listening queue.
int sock_tcp_connect(sock_tcp_t *sock, const sock_tcp_ep_t *remote, uint16_t local_port, uint16_t flags)
Establishes a new TCP sock connection.
int sock_tcp_accept(sock_tcp_queue_t *queue, sock_tcp_t **sock, uint32_t timeout)
Receives and handles TCP connection requests from other peers.
ssize_t sock_tcp_read(sock_tcp_t *sock, void *data, size_t max_len, uint32_t timeout)
Reads data from an established TCP stream.
ssize_t sock_tcp_write(sock_tcp_t *sock, const void *data, size_t len)
Writes data to an established TCP stream.
void sock_tcp_disconnect(sock_tcp_t *sock)
Disconnects a TCP connection.
int sock_tcp_queue_get_local(sock_tcp_queue_t *queue, sock_tcp_ep_t *ep)
Gets the local end point of a TCP sock queue object.
int sock_tcp_get_remote(sock_tcp_t *sock, sock_tcp_ep_t *ep)
Gets the remote end point of a TCP sock object.
Common sock API definitions.
Common IP-based transport layer end point.
Definition: sock.h:214
TCP queue type.
Definition: sock_types.h:114
unsigned short len
Length of the struct sock_tcp_queue::array.
Definition: sock_types.h:118
TCP sock type.
Definition: sock_types.h:101