blob: 1fb0037bf6619485b19e1c96ef3284520ce8b936 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#ifndef __CONTACT_H__
#define __CONTACT_H__
#include <ucimap.h>
struct account {
struct ucimap_section_data map;
const char *name;
char *realm;
char *username;
char *password;
int sip_port;
char *stun_host;
int stun_port;
struct list_head head;
};
struct contact {
struct ucimap_section_data map;
const char *name;
const char *identifier;
const char *number;
struct list_head head;
};
int contacts_init(void);
void contacts_free(void);
struct contact *contact_get(const char *number);
struct account *get_account(void);
#endif
|