FFmpeg
|
Go to the source code of this file.
Functions | |
static int | compare_addr (const struct sockaddr_storage *a, const struct sockaddr_storage *b) |
int | ff_ip_check_source_lists (struct sockaddr_storage *source_addr_ptr, IPSourceFilters *s) |
Checks the source address against a given IP source filter. More... | |
struct addrinfo * | ff_ip_resolve_host (void *log_ctx, const char *hostname, int port, int type, int family, int flags) |
Resolves hostname into an addrinfo structure. More... | |
static int | ip_parse_addr_list (void *log_ctx, const char *buf, struct sockaddr_storage **address_list_ptr, int *address_list_size_ptr) |
static int | ip_parse_sources_and_blocks (void *log_ctx, const char *buf, IPSourceFilters *filters, int parse_include_list) |
int | ff_ip_parse_sources (void *log_ctx, const char *buf, IPSourceFilters *filters) |
Parses the address[,address] source list in buf and adds it to the filters in the IPSourceFilters structure. More... | |
int | ff_ip_parse_blocks (void *log_ctx, const char *buf, IPSourceFilters *filters) |
Parses the address[,address] source block list in buf and adds it to the filters in the IPSourceFilters structure. More... | |
void | ff_ip_reset_filters (IPSourceFilters *filters) |
Resets the IP filter list and frees the internal fields of an IPSourceFilters structure. More... | |
|
static |
Definition at line 24 of file ip.c.
Referenced by ff_ip_check_source_lists().
int ff_ip_check_source_lists | ( | struct sockaddr_storage * | source_addr_ptr, |
IPSourceFilters * | s | ||
) |
Checks the source address against a given IP source filter.
Definition at line 44 of file ip.c.
Referenced by rtp_read(), and udp_read().
struct addrinfo* ff_ip_resolve_host | ( | void * | log_ctx, |
const char * | hostname, | ||
int | port, | ||
int | type, | ||
int | family, | ||
int | flags | ||
) |
Resolves hostname into an addrinfo structure.
Definition at line 63 of file ip.c.
Referenced by ip_parse_addr_list(), udp_set_url(), and udp_socket_create().
|
static |
Definition at line 94 of file ip.c.
Referenced by ip_parse_sources_and_blocks().
|
static |
Definition at line 128 of file ip.c.
Referenced by ff_ip_parse_blocks(), and ff_ip_parse_sources().
int ff_ip_parse_sources | ( | void * | log_ctx, |
const char * | buf, | ||
IPSourceFilters * | filters | ||
) |
Parses the address[,address] source list in buf and adds it to the filters in the IPSourceFilters structure.
Definition at line 143 of file ip.c.
Referenced by rtp_open(), and udp_open().
int ff_ip_parse_blocks | ( | void * | log_ctx, |
const char * | buf, | ||
IPSourceFilters * | filters | ||
) |
Parses the address[,address] source block list in buf and adds it to the filters in the IPSourceFilters structure.
Definition at line 148 of file ip.c.
Referenced by rtp_open(), and udp_open().
void ff_ip_reset_filters | ( | IPSourceFilters * | filters | ) |
Resets the IP filter list and frees the internal fields of an IPSourceFilters structure.
Definition at line 153 of file ip.c.
Referenced by rtp_close(), udp_close(), and udp_open().