1 | 1 |
deleted file mode 100644 |
... | ... |
@@ -1,71 +0,0 @@ |
1 |
-/* $Id$ |
|
2 |
- * |
|
3 |
- * Copyright (C) 2006-2007 VozTelecom Sistemas S.L |
|
4 |
- * |
|
5 |
- * This file is part of Kamailio, a free SIP server. |
|
6 |
- * |
|
7 |
- * Kamailio is free software; you can redistribute it and/or modify |
|
8 |
- * it under the terms of the GNU General Public License as published by |
|
9 |
- * the Free Software Foundation; either version 2 of the License, or |
|
10 |
- * (at your option) any later version |
|
11 |
- * |
|
12 |
- * Kamailio is distributed in the hope that it will be useful, |
|
13 |
- * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
14 |
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
15 |
- * GNU General Public License for more details. |
|
16 |
- * |
|
17 |
- * You should have received a copy of the GNU General Public License |
|
18 |
- * along with this program; if not, write to the Free Software |
|
19 |
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
20 |
- */ |
|
21 |
- |
|
22 |
-/* |
|
23 |
- * ===================================================================================== |
|
24 |
- * |
|
25 |
- * Filename: encode_expires.c |
|
26 |
- * |
|
27 |
- * Description: functions to [en|de]code expires header |
|
28 |
- * |
|
29 |
- * Version: 1.0 |
|
30 |
- * Created: 22/11/05 00:05:54 CET |
|
31 |
- * Revision: none |
|
32 |
- * Compiler: gcc |
|
33 |
- * |
|
34 |
- * Author: Elias Baixas (EB), elias@conillera.net |
|
35 |
- * Company: VozTele.com |
|
36 |
- * |
|
37 |
- * ===================================================================================== |
|
38 |
- */ |
|
39 |
- |
|
40 |
-#define _GNU_SOURCE |
|
41 |
-#include <stdio.h> |
|
42 |
-#include <netinet/in.h> |
|
43 |
-#include <string.h> |
|
44 |
-#include "../../parser/parse_expires.h" |
|
45 |
- |
|
46 |
-/* |
|
47 |
- * Encodes expires headers (content = delta-seconds) |
|
48 |
- * 4: network-byte-order value |
|
49 |
- * 2: hdr-based pointer to begin of value string + value string length |
|
50 |
- */ |
|
51 |
-int encode_expires(char *hdrstart,int hdrlen,exp_body_t *body,unsigned char *where) |
|
52 |
-{ |
|
53 |
- int i; |
|
54 |
- |
|
55 |
- i=htonl(body->val); |
|
56 |
- memcpy(where,&i,4); |
|
57 |
- where[4]=(unsigned char)(body->text.s-hdrstart); |
|
58 |
- where[5]=(unsigned char)(body->text.len); |
|
59 |
- return 6; |
|
60 |
-} |
|
61 |
- |
|
62 |
-int print_encoded_expires(FILE *fd,char *hdr,int hdrlen,unsigned char* payload,int paylen,char *prefix) |
|
63 |
-{ |
|
64 |
- int i; |
|
65 |
- memcpy(&i,payload,4); |
|
66 |
- i=ntohl(i); |
|
67 |
- fprintf(fd,"%sEXPIRES VALUE=%d==%.*s\n",prefix,i,payload[5],&hdr[payload[4]]); |
|
68 |
- return 1; |
|
69 |
-} |
|
70 |
- |
|
71 |
- |
git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@5192 689a6050-402a-0410-94f2-e92a70836424
... | ... |
@@ -59,12 +59,12 @@ int encode_expires(char *hdrstart,int hdrlen,exp_body_t *body,unsigned char *whe |
59 | 59 |
return 6; |
60 | 60 |
} |
61 | 61 |
|
62 |
-int print_encoded_expires(int fd,char *hdr,int hdrlen,unsigned char* payload,int paylen,char *prefix) |
|
62 |
+int print_encoded_expires(FILE *fd,char *hdr,int hdrlen,unsigned char* payload,int paylen,char *prefix) |
|
63 | 63 |
{ |
64 | 64 |
int i; |
65 | 65 |
memcpy(&i,payload,4); |
66 | 66 |
i=ntohl(i); |
67 |
- dprintf(fd,"%sEXPIRES VALUE=%d==%.*s\n",prefix,i,payload[5],&hdr[payload[4]]); |
|
67 |
+ fprintf(fd,"%sEXPIRES VALUE=%d==%.*s\n",prefix,i,payload[5],&hdr[payload[4]]); |
|
68 | 68 |
return 1; |
69 | 69 |
} |
70 | 70 |
|
git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@4518 689a6050-402a-0410-94f2-e92a70836424
... | ... |
@@ -2,14 +2,14 @@ |
2 | 2 |
* |
3 | 3 |
* Copyright (C) 2006-2007 VozTelecom Sistemas S.L |
4 | 4 |
* |
5 |
- * This file is part of openser, a free SIP server. |
|
5 |
+ * This file is part of Kamailio, a free SIP server. |
|
6 | 6 |
* |
7 |
- * openser is free software; you can redistribute it and/or modify |
|
7 |
+ * Kamailio is free software; you can redistribute it and/or modify |
|
8 | 8 |
* it under the terms of the GNU General Public License as published by |
9 | 9 |
* the Free Software Foundation; either version 2 of the License, or |
10 | 10 |
* (at your option) any later version |
11 | 11 |
* |
12 |
- * openser is distributed in the hope that it will be useful, |
|
12 |
+ * Kamailio is distributed in the hope that it will be useful, |
|
13 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | 15 |
* GNU General Public License for more details. |
git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@1819 689a6050-402a-0410-94f2-e92a70836424
... | ... |
@@ -1,4 +1,24 @@ |
1 |
-/* $Id$ */ |
|
1 |
+/* $Id$ |
|
2 |
+ * |
|
3 |
+ * Copyright (C) 2006-2007 VozTelecom Sistemas S.L |
|
4 |
+ * |
|
5 |
+ * This file is part of openser, a free SIP server. |
|
6 |
+ * |
|
7 |
+ * openser is free software; you can redistribute it and/or modify |
|
8 |
+ * it under the terms of the GNU General Public License as published by |
|
9 |
+ * the Free Software Foundation; either version 2 of the License, or |
|
10 |
+ * (at your option) any later version |
|
11 |
+ * |
|
12 |
+ * openser is distributed in the hope that it will be useful, |
|
13 |
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
14 |
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
15 |
+ * GNU General Public License for more details. |
|
16 |
+ * |
|
17 |
+ * You should have received a copy of the GNU General Public License |
|
18 |
+ * along with this program; if not, write to the Free Software |
|
19 |
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
20 |
+ */ |
|
21 |
+ |
|
2 | 22 |
/* |
3 | 23 |
* ===================================================================================== |
4 | 24 |
* |
git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@1448 689a6050-402a-0410-94f2-e92a70836424
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,51 @@ |
1 |
+/* $Id$ */ |
|
2 |
+/* |
|
3 |
+ * ===================================================================================== |
|
4 |
+ * |
|
5 |
+ * Filename: encode_expires.c |
|
6 |
+ * |
|
7 |
+ * Description: functions to [en|de]code expires header |
|
8 |
+ * |
|
9 |
+ * Version: 1.0 |
|
10 |
+ * Created: 22/11/05 00:05:54 CET |
|
11 |
+ * Revision: none |
|
12 |
+ * Compiler: gcc |
|
13 |
+ * |
|
14 |
+ * Author: Elias Baixas (EB), elias@conillera.net |
|
15 |
+ * Company: VozTele.com |
|
16 |
+ * |
|
17 |
+ * ===================================================================================== |
|
18 |
+ */ |
|
19 |
+ |
|
20 |
+#define _GNU_SOURCE |
|
21 |
+#include <stdio.h> |
|
22 |
+#include <netinet/in.h> |
|
23 |
+#include <string.h> |
|
24 |
+#include "../../parser/parse_expires.h" |
|
25 |
+ |
|
26 |
+/* |
|
27 |
+ * Encodes expires headers (content = delta-seconds) |
|
28 |
+ * 4: network-byte-order value |
|
29 |
+ * 2: hdr-based pointer to begin of value string + value string length |
|
30 |
+ */ |
|
31 |
+int encode_expires(char *hdrstart,int hdrlen,exp_body_t *body,unsigned char *where) |
|
32 |
+{ |
|
33 |
+ int i; |
|
34 |
+ |
|
35 |
+ i=htonl(body->val); |
|
36 |
+ memcpy(where,&i,4); |
|
37 |
+ where[4]=(unsigned char)(body->text.s-hdrstart); |
|
38 |
+ where[5]=(unsigned char)(body->text.len); |
|
39 |
+ return 6; |
|
40 |
+} |
|
41 |
+ |
|
42 |
+int print_encoded_expires(int fd,char *hdr,int hdrlen,unsigned char* payload,int paylen,char *prefix) |
|
43 |
+{ |
|
44 |
+ int i; |
|
45 |
+ memcpy(&i,payload,4); |
|
46 |
+ i=ntohl(i); |
|
47 |
+ dprintf(fd,"%sEXPIRES VALUE=%d==%.*s\n",prefix,i,payload[5],&hdr[payload[4]]); |
|
48 |
+ return 1; |
|
49 |
+} |
|
50 |
+ |
|
51 |
+ |