SIP Witch 1.9.15
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Data Structures | Macros | Typedefs | Functions
osip_from.h File Reference

oSIP osip_from header definition. More...

#include <osipparser2/osip_list.h>
#include <osipparser2/osip_uri.h>
Include dependency graph for osip_from.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  osip_from
 Definition of the From header. More...
 

Macros

#define osip_from_param_add(header, name, value)   osip_generic_param_add((&(header)->gen_params),name,value)
 Allocate and add a generic parameter element in a list. More...
 
#define osip_from_param_get_byname(header, name, dest)   osip_generic_param_get_byname((&(header)->gen_params),name,dest)
 Find a header parameter in a From element. More...
 
#define osip_from_get_tag(header, dest)   osip_generic_param_get_byname((&(header)->gen_params), "tag",dest)
 Find the tag parameter in a From element. More...
 
#define osip_from_set_tag(header, value)   osip_generic_param_add((&(header)->gen_params), osip_strdup("tag"),value)
 Allocate and add a tag parameter element in a Contact element. More...
 

Typedefs

typedef struct osip_from osip_from_t
 Structure for From headers. More...
 

Functions

int osip_from_init (osip_from_t **header)
 Allocate a From element. More...
 
void osip_from_free (osip_from_t *header)
 Free a From element. More...
 
int osip_from_parse (osip_from_t *header, const char *hvalue)
 Parse a From element. More...
 
int osip_from_to_str (const osip_from_t *header, char **dest)
 Get a string representation of a From element. More...
 
int osip_from_clone (const osip_from_t *header, osip_from_t **dest)
 Clone a From element. More...
 
void osip_from_set_displayname (osip_from_t *header, char *value)
 Set the displayname in the From element. More...
 
char * osip_from_get_displayname (osip_from_t *header)
 Get the displayname from a From header. More...
 
void osip_from_set_url (osip_from_t *header, osip_uri_t *url)
 Set the url in the From element. More...
 
osip_uri_tosip_from_get_url (osip_from_t *header)
 Get the url from a From header. More...
 
int osip_from_param_get (osip_from_t *header, int pos, osip_generic_param_t **dest)
 Get a header parameter from a From element. More...
 
int osip_from_compare (osip_from_t *header1, osip_from_t *header2)
 
int osip_from_tag_match (osip_from_t *from1, osip_from_t *from2)
 Check if the tags in the From headers match. More...
 

Detailed Description

oSIP osip_from header definition.

Definition in file osip_from.h.