1 /*
2  * This file is part of the Sofia-SIP package
3  *
4  * Copyright (C) 2005 Nokia Corporation.
5  *
6  * Contact: Pekka Pessi <pekka.pessi@nokia.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation; either version 2.1 of
11  * the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21  * 02110-1301 USA
22  *
23  */
24 
25 #ifndef AUTH_COMMON_H
26 /** Defined when <sofia-sip/auth_common.h> has been included. */
27 #define AUTH_COMMON_H
28 
29 /**@file sofia-sip/auth_common.h
30  *
31  * Functions common for client/server.
32  *
33  * @author Pekka Pessi <Pekka.Pessi@nokia.com>
34  *
35  * @date Created: Fri May 19 15:54:08 EEST 2006 ppessi
36  */
37 
38 #ifndef SU_ALLOC_H
39 #include <sofia-sip/su_alloc.h>
40 #endif
41 
42 SOFIA_BEGIN_DECLS
43 
44 SOFIAPUBFUN issize_t auth_get_params(su_home_t *home,
45 				     char const * const params[], ...
46  			          /* char const * name,
47 				     char const **return_value */);
48 
49 SOFIAPUBFUN int auth_struct_copy(void *dst, void const *src, isize_t s_size);
50 
51 SOFIAPUBFUN int auth_strcmp(char const *quoted, char const *unquoted);
52 
53 SOFIA_END_DECLS
54 
55 #endif
56