OSDN Git Service

Add MS7619SE
[uclinux-h8/uClinux-dist.git] / user / ser / parser / parse_nameaddr.h
1 /* 
2  * $Id: parse_nameaddr.h,v 1.5 2004/08/24 09:01:25 janakj Exp $
3  *
4  * Copyright (C) 2001-2003 FhG Fokus
5  *
6  * This file is part of ser, a free SIP server.
7  *
8  * ser is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version
12  *
13  * For a license to use the ser software under conditions
14  * other than those described here, or to purchase support for this
15  * software, please contact iptel.org by e-mail at the following addresses:
16  *    info@iptel.org
17  *
18  * ser is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License 
24  * along with this program; if not, write to the Free Software 
25  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26  *
27  * History
28  * --------
29  * 2003-03-24 Created by janakj
30  */
31
32 #ifndef PARSE_NAMEADDR_H
33 #define PARSE_NAMEADDR_H
34
35 #include <stdio.h>
36 #include "../str.h"
37
38 /*
39  * Name-addr structure, see RFC3261 for more details
40  */
41 typedef struct name_addr {
42         str name;   /* Display name part */
43         str uri;    /* Uri part without surrounding <> */
44         int len;    /* Total length of the field (including all
45                     * whitechars present in the parsed message */
46 } name_addr_t;
47
48
49 /*
50  * Parse name-addr part, the given string can be longer,
51  * parsing will stop when closing > is found
52  */
53 int parse_nameaddr(str* _s, name_addr_t* _a);
54
55
56 /*
57  * Print a name-addr structure, just for debugging
58  */
59 void print_nameaddr(FILE* _o, name_addr_t* _a);
60
61
62 #endif /* PARSE_NAMEADDR_H */