#include "priv.h"
#include <freesdp/parser.h>
Go to the source code of this file.
Defines | |
#define | MAXSHORTFIELDLEN 96 |
#define | MSFLENS "95" |
#define | MAXLONGFIELDLEN 1024 |
#define | MLFLENS "1023" |
Functions | |
fsdp_error_t | fsdp_parse_c (const char **p, fsdp_network_type_t *ntype, fsdp_address_type_t *atype, fsdp_connection_address_t *address) |
fsdp_error_t | fsdp_parse_b (const char **p, fsdp_bw_modifier_t **bw_modifiers, unsigned int *bw_modifiers_count) |
fsdp_error_t | fsdp_parse_k (const char **p, fsdp_encryption_method_t *method, char **content) |
fsdp_error_t | fsdp_repeat_time_to_uint (const char *time, unsigned long int *seconds) |
fsdp_error_t | fsdp_parse_rtpmap (fsdp_rtpmap_t ***rtpmap, unsigned int *counter, const char *value) |
Definition in file parserpriv.h.
|
Maximun default field len for "maybe very long" fields, like information, attribute values. This can also be used for lines where there is only a string field, like phone and email. MLFLENS value must be MAXLONGFIELDLEN - 1 Definition at line 113 of file parserpriv.h. Referenced by fsdp_parse(), fsdp_parse_k(), and fsdp_parse_rtpmap(). |
|
Maximun default field len for "expected to be short" fields, like username, session_id or inet addresses. MDFLENS value must be MAXSHORTFIELDLEN - 1 Definition at line 103 of file parserpriv.h. Referenced by fsdp_parse(), fsdp_parse_b(), fsdp_parse_c(), fsdp_parse_k(), and fsdp_parse_rtpmap(). |
|
Definition at line 114 of file parserpriv.h. Referenced by fsdp_parse(), and fsdp_parse_k(). |
|
Definition at line 104 of file parserpriv.h. Referenced by fsdp_parse(), and fsdp_parse_c(). |
|
Parse b (b=:<bandwidth-value>) consecutive lines. If the textual description in
Referenced by fsdp_parse(). |
|
Parse a connection (c= ) line. If the textual description in
Referenced by fsdp_parse(). |
|
Parse a k (k=) or (k=:) line. If the textual description in
Referenced by fsdp_parse(). |
|
Referenced by fsdp_parse(). |
|
Parses a string whose first token (first characters before the first space or end of string) is supposed to be a time in SDP syntax. Some examples of SDP times are: 2d, 5h, 3444, 7778s,
Referenced by fsdp_parse(). |