| FFmpeg
    | 
tcp.c File Reference
  #include "avformat.h"#include "libavutil/parseutils.h"#include "libavutil/opt.h"#include "libavutil/time.h"#include "internal.h"#include "network.h"#include "os_support.h"#include "url.h"
Include dependency graph for tcp.c:

Go to the source code of this file.
| Data Structures | |
| struct | TCPContext | 
| Macros | |
| #define | OFFSET(x) offsetof(TCPContext, x) | 
| #define | D AV_OPT_FLAG_DECODING_PARAM | 
| #define | E AV_OPT_FLAG_ENCODING_PARAM | 
| Typedefs | |
| typedef struct TCPContext | TCPContext | 
| Functions | |
| static int | tcp_open (URLContext *h, const char *uri, int flags) | 
| static int | tcp_read (URLContext *h, uint8_t *buf, int size) | 
| static int | tcp_write (URLContext *h, const uint8_t *buf, int size) | 
| static int | tcp_shutdown (URLContext *h, int flags) | 
| static int | tcp_close (URLContext *h) | 
| static int | tcp_get_file_handle (URLContext *h) | 
| Variables | |
| static const AVOption | options [] | 
| static const AVClass | tcp_context_class | 
| URLProtocol | ff_tcp_protocol | 
Macro Definition Documentation
| #define D AV_OPT_FLAG_DECODING_PARAM | 
| #define E AV_OPT_FLAG_ENCODING_PARAM | 
| #define OFFSET | ( | x | ) | offsetof(TCPContext, x) | 
Typedef Documentation
| typedef struct TCPContext TCPContext | 
Function Documentation
| 
 | static | 
| 
 | static | 
| 
 | static | 
| 
 | static | 
| 
 | static | 
| 
 | static | 
Variable Documentation
| URLProtocol ff_tcp_protocol | 
Initial value:
= {
    .name                = "tcp",
    .url_open            = tcp_open,
    .url_read            = tcp_read,
    .url_write           = tcp_write,
    .url_close           = tcp_close,
    .url_get_file_handle = tcp_get_file_handle,
    .url_shutdown        = tcp_shutdown,
    .priv_data_size      = sizeof(TCPContext),
    .priv_data_class     = &tcp_context_class,
}
struct TCPContext TCPContext
| 
 | static | 
Initial value:
= {
{"listen", "listen on port instead of connecting", OFFSET(listen), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, D|E },
{"timeout", "timeout of socket i/o operations", OFFSET(rw_timeout), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, D|E },
{"listen_timeout", "connection awaiting timeout", OFFSET(listen_timeout), AV_OPT_TYPE_INT, {.i64 = -1}, -1, INT_MAX, D|E },
{NULL}
}
Definition: opt.h:222
| 
 | static | 
Initial value:
= {
    .class_name = "tcp",
    .item_name  = av_default_item_name,
    .option     = options,
    .version    = LIBAVUTIL_VERSION_INT,
}
Generated on Fri Oct 31 2025 06:56:24 for FFmpeg by
 1.8.11
 1.8.11