Revert "Revert "and added files""
[bcm963xx.git] / userapps / opensource / libosip2 / src / test / twwwa.c
1 /*
2   The oSIP library implements the Session Initiation Protocol (SIP -rfc2543-)
3   Copyright (C) 2001  Aymeric MOIZARD jack@atosc.org
4   
5   This library is free software; you can redistribute it and/or
6   modify it under the terms of the GNU Lesser General Public
7   License as published by the Free Software Foundation; either
8   version 2.1 of the License, or (at your option) any later version.
9   
10   This library is distributed in the hope that it will be useful,
11   but WITHOUT ANY WARRANTY; without even the implied warranty of
12   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13   Lesser General Public License for more details.
14   
15   You should have received a copy of the GNU Lesser General Public
16   License along with this library; if not, write to the Free Software
17   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18 */
19
20
21 #ifdef ENABLE_MPATROL
22 #include <mpatrol.h>
23 #endif
24
25
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <osip2/internal.h>
29 #include <osipparser2/osip_message.h>
30
31
32 int
33 main (int argc, char **argv)
34 {
35   FILE *wwwauthenticates_file;
36
37
38   osip_www_authenticate_t *wwwauthenticate;
39   char *a_wwwauthenticate;
40   char *dest;
41   char *res;
42
43   wwwauthenticates_file = fopen (argv[1], "r");
44   if (wwwauthenticates_file == NULL)
45     {
46       fprintf (stdout,
47                "Failed to open %s file.\nUsage: twwwauthenticate wwwauthenticates.txt\n",
48                argv[1]);
49       exit (0);
50     }
51
52   a_wwwauthenticate = (char *) osip_malloc (200);
53   res = fgets (a_wwwauthenticate, 200, wwwauthenticates_file);  /* lines are under 200 */
54   while (res != NULL)
55     {
56
57       int errcode;
58
59       /* remove the last '\n' before parsing */
60       strncpy (a_wwwauthenticate + strlen (a_wwwauthenticate) - 1, "\0", 1);
61
62       if (0 != strncmp (a_wwwauthenticate, "#", 1))
63         {
64           /* allocate & init wwwauthenticate */
65           osip_www_authenticate_init (&wwwauthenticate);
66           printf ("=================================================\n");
67           printf ("WWWAUTHENTICATE TO PARSE: |%s|\n", a_wwwauthenticate);
68           errcode =
69             osip_www_authenticate_parse (wwwauthenticate, a_wwwauthenticate);
70           if (errcode != -1)
71             {
72               if (osip_www_authenticate_to_str (wwwauthenticate, &dest) != -1)
73                 {
74                   printf ("result:                   |%s|\n", dest);
75                   osip_free (dest);
76                 }
77             }
78           else
79             printf ("Bad wwwauthenticate format: %s\n", a_wwwauthenticate);
80           osip_www_authenticate_free (wwwauthenticate);
81           printf ("=================================================\n");
82         }
83       res = fgets (a_wwwauthenticate, 200, wwwauthenticates_file);      /* lines are under 200 */
84     }
85   osip_free (a_wwwauthenticate);
86   return 0;
87 }