SIP Witch 1.9.15
|
oSIP osip_via header definition. More...
#include <osipparser2/osip_list.h>
Go to the source code of this file.
Data Structures | |
struct | osip_via |
Definition of the Via header. More... | |
Macros | |
#define | osip_via_set_version via_set_version |
#define | osip_via_get_version via_get_version |
#define | osip_via_set_protocol via_set_protocol |
#define | osip_via_get_protocol via_get_protocol |
#define | osip_via_set_host via_set_host |
#define | osip_via_get_host via_get_host |
#define | osip_via_set_port via_set_port |
#define | osip_via_get_port via_get_port |
#define | osip_via_set_comment via_set_comment |
#define | osip_via_get_comment via_get_comment |
#define | osip_via_set_hidden(header) osip_generic_param_add((&(header)->via_params),osip_strdup("hidden"),NULL) |
Allocate and add a hidden parameter element in a list. More... | |
#define | osip_via_set_ttl(header, value) osip_generic_param_add((&(header)->via_params),osip_strdup("ttl"),value) |
Allocate and add a ttl parameter element in a list. More... | |
#define | osip_via_set_maddr(header, value) osip_generic_param_add((&(header)->via_params),osip_strdup("maddr"),value) |
Allocate and add a maddr parameter element in a list. More... | |
#define | osip_via_set_received(header, value) osip_generic_param_add((&(header)->via_params),osip_strdup("received"),value) |
Allocate and add a received parameter element in a list. More... | |
#define | osip_via_set_branch(header, value) osip_generic_param_add((&(header)->via_params),osip_strdup("branch"),value) |
Allocate and add a branch parameter element in a list. More... | |
#define | osip_via_param_add(header, name, value) osip_generic_param_add((&(header)->via_params),name,value) |
Allocate and add a generic parameter element in a list. More... | |
#define | osip_via_param_get_byname(header, name, dest) osip_generic_param_get_byname((&(header)->via_params),name,dest) |
Find a header parameter in a Via element. More... | |
Typedefs | |
typedef struct osip_via | osip_via_t |
Structure for Via headers. More... | |
Functions | |
int | osip_via_init (osip_via_t **header) |
Allocate a Via element. More... | |
void | osip_via_free (osip_via_t *header) |
Free a Via element. More... | |
int | osip_via_parse (osip_via_t *header, const char *hvalue) |
Parse a Via element. More... | |
int | osip_via_to_str (const osip_via_t *header, char **dest) |
Get a string representation of a Via element. More... | |
int | osip_via_clone (const osip_via_t *header, osip_via_t **dest) |
Clone a Via element. More... | |
void | via_set_version (osip_via_t *header, char *value) |
Set the SIP version in the Via element. More... | |
char * | via_get_version (osip_via_t *header) |
Get the SIP version from a Via header. More... | |
void | via_set_protocol (osip_via_t *header, char *value) |
Set the protocol in the Via element. More... | |
char * | via_get_protocol (osip_via_t *header) |
Get the protocol from a Via header. More... | |
void | via_set_host (osip_via_t *header, char *value) |
Set the host in the Via element. More... | |
char * | via_get_host (osip_via_t *header) |
Get the host from a Via header. More... | |
void | via_set_port (osip_via_t *header, char *value) |
Set the port in the Via element. More... | |
char * | via_get_port (osip_via_t *header) |
Get the port from a Via header. More... | |
void | via_set_comment (osip_via_t *header, char *value) |
Set the comment in the Via element. More... | |
char * | via_get_comment (osip_via_t *header) |
Get the comment from a Via header. More... | |
int | osip_via_match (osip_via_t *via1, osip_via_t *via2) |
Check if the Via headers match. More... | |
oSIP osip_via header definition.
Definition in file osip_via.h.