summaryrefslogtreecommitdiff
path: root/noncore/todayplugins/stockticker/libstocks/http.c
authorllornkcor <llornkcor>2002-10-31 20:32:13 (UTC)
committer llornkcor <llornkcor>2002-10-31 20:32:13 (UTC)
commit73b03f932dd43d684e67db1837bf506ee015f2eb (patch) (unidiff)
tree87be47c236586177c65b38216818951337c0b59a /noncore/todayplugins/stockticker/libstocks/http.c
parent50f1091ee877020c9864ce24202951f49bec8cd7 (diff)
downloadopie-73b03f932dd43d684e67db1837bf506ee015f2eb.zip
opie-73b03f932dd43d684e67db1837bf506ee015f2eb.tar.gz
opie-73b03f932dd43d684e67db1837bf506ee015f2eb.tar.bz2
make define __UNIX__ inherent
Diffstat (limited to 'noncore/todayplugins/stockticker/libstocks/http.c') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/todayplugins/stockticker/libstocks/http.c87
1 files changed, 44 insertions, 43 deletions
diff --git a/noncore/todayplugins/stockticker/libstocks/http.c b/noncore/todayplugins/stockticker/libstocks/http.c
index 462080d..3078746 100644
--- a/noncore/todayplugins/stockticker/libstocks/http.c
+++ b/noncore/todayplugins/stockticker/libstocks/http.c
@@ -6,22 +6,23 @@
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 13 * Library General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Library General Public 15 * You should have received a copy of the GNU Library General Public
16 * License along with this library; if not, write to the 16 * License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA. 18 * Boston, MA 02111-1307, USA.
19 */ 19 */
20 20
21#define __HTTP_C__ 21#define __HTTP_C__
22#define __UNIX__
22 23
23#ifdef __UNIX__ 24#ifdef __UNIX__
24#include <sys/socket.h> 25#include <sys/socket.h>
25#include <netinet/in.h> 26#include <netinet/in.h>
26#include <arpa/inet.h> 27#include <arpa/inet.h>
27#include <netdb.h> 28#include <netdb.h>
@@ -82,15 +83,15 @@ libstocks_return_code http_get(char *http_file, char *http_server, char **pdata)
82 server.sin_port = (unsigned short) htons( http_proxy_server ? http_proxy_port : 80 ); 83 server.sin_port = (unsigned short) htons( http_proxy_server ? http_proxy_port : 80 );
83 84
84 } else 85 } else
85 { 86 {
86 87
87#ifdef DEBUG 88#ifdef DEBUG
88 printf(" gethostbyname : NOK\n"); 89 printf(" gethostbyname : NOK\n");
89#endif 90#endif
90 return ERRHOST; 91 return ERRHOST;
91 } 92 }
92 93
93 /* create socket */ 94 /* create socket */
94 if ((s = socket(AF_INET, SOCK_STREAM, 0)) < 0) 95 if ((s = socket(AF_INET, SOCK_STREAM, 0)) < 0)
95 { 96 {
96 97
@@ -118,13 +119,13 @@ libstocks_return_code http_get(char *http_file, char *http_server, char **pdata)
118 } 119 }
119 120
120 /* create header */ 121 /* create header */
121 if (http_proxy_server) 122 if (http_proxy_server)
122 { 123 {
123 sprintf(header,"GET http://%.128s:80%.256s HTTP/1.0\015\012\015\012", 124 sprintf(header,"GET http://%.128s:80%.256s HTTP/1.0\015\012\015\012",
124 http_server, http_file); 125 http_server, http_file);
125 } 126 }
126 else 127 else
127 { 128 {
128 sprintf(header,"GET %s HTTP/1.0\015\012\015\012",http_file); 129 sprintf(header,"GET %s HTTP/1.0\015\012\015\012",http_file);
129 } 130 }
130 131
@@ -135,13 +136,13 @@ libstocks_return_code http_get(char *http_file, char *http_server, char **pdata)
135 if (write(s,header,hlg)!=hlg) 136 if (write(s,header,hlg)!=hlg)
136#elif __WINDOWS__ 137#elif __WINDOWS__
137 if (send(s,header,hlg, 0)!=hlg) 138 if (send(s,header,hlg, 0)!=hlg)
138#endif 139#endif
139 { 140 {
140#ifdef DEBUG 141#ifdef DEBUG
141 printf(" send header : NOK\n"); 142 printf(" send header : NOK\n");
142#endif 143#endif
143 return ERRWHEA; 144 return ERRWHEA;
144 } 145 }
145 146
146 data_lgr = 0; 147 data_lgr = 0;
147 r=1; 148 r=1;
@@ -154,42 +155,42 @@ libstocks_return_code http_get(char *http_file, char *http_server, char **pdata)
154 r=read(s,buf,BUF_SIZE); 155 r=read(s,buf,BUF_SIZE);
155#elif __WINDOWS__ 156#elif __WINDOWS__
156 r=recv(s,buf,BUF_SIZE,0); 157 r=recv(s,buf,BUF_SIZE,0);
157#endif 158#endif
158 159
159 if (r) 160 if (r)
160 { 161 {
161 if(!data_lgr) 162 if(!data_lgr)
162 { 163 {
163 if((data = malloc(r+1))==NULL) 164 if((data = malloc(r+1))==NULL)
164 { 165 {
165 fprintf(stderr,"Memory allocating error (%s line %d)\n" 166 fprintf(stderr,"Memory allocating error (%s line %d)\n"
166 ,__FILE__, __LINE__); 167 ,__FILE__, __LINE__);
167 exit(1); 168 exit(1);
168 } 169 }
169 170
170 memcpy(data,buf,r); 171 memcpy(data,buf,r);
171 data_lgr = r; 172 data_lgr = r;
172 data[r]=0; 173 data[r]=0;
173 } 174 }
174 else 175 else
175 { 176 {
176 if((temp = malloc(r+data_lgr+1))==NULL) 177 if((temp = malloc(r+data_lgr+1))==NULL)
177 { 178 {
178 fprintf(stderr,"Memory allocating error (%s line %d)\n" 179 fprintf(stderr,"Memory allocating error (%s line %d)\n"
179 ,__FILE__, __LINE__); 180 ,__FILE__, __LINE__);
180 exit(1); 181 exit(1);
181 } 182 }
182 memcpy(temp, data, data_lgr); 183 memcpy(temp, data, data_lgr);
183 memcpy(temp+data_lgr, buf, r); 184 memcpy(temp+data_lgr, buf, r);
184 temp[r+data_lgr]=0; 185 temp[r+data_lgr]=0;
185 data_lgr += r; 186 data_lgr += r;
186 free(data); 187 free(data);
187 data = temp; 188 data = temp;
188 } 189 }
189 } 190 }
190 } 191 }
191 192
192 /* close socket */ 193 /* close socket */
193#ifdef __UNIX__ 194#ifdef __UNIX__
194 close(s); 195 close(s);
195#elif __WINDOWS__ 196#elif __WINDOWS__
@@ -207,20 +208,20 @@ libstocks_return_code http_get(char *http_file, char *http_server, char **pdata)
207 header_founded = 0; 208 header_founded = 0;
208 while( !header_founded ) 209 while( !header_founded )
209 { 210 {
210 if (*temp==0) return ERRRHEA; 211 if (*temp==0) return ERRRHEA;
211 212
212 if( *temp==0x0A ) 213 if( *temp==0x0A )
213 { 214 {
214 /* test if it is the header end */ 215 /* test if it is the header end */
215 temp ++; 216 temp ++;
216 if (*temp == 0x0D) temp++; 217 if (*temp == 0x0D) temp++;
217 if (*temp == 0x0A) header_founded = 1; 218 if (*temp == 0x0A) header_founded = 1;
218 } 219 }
219 else 220 else
220 temp++; 221 temp++;
221 } 222 }
222 223
223 *temp = 0; 224 *temp = 0;
224 temp++; 225 temp++;
225 226
226 sscanf(data,"HTTP/1.%*d %03d",&error_code); 227 sscanf(data,"HTTP/1.%*d %03d",&error_code);
@@ -235,13 +236,13 @@ libstocks_return_code http_get(char *http_file, char *http_server, char **pdata)
235 } 236 }
236 237
237 if ((csv_ptr = malloc(strlen(temp)+1))==NULL) 238 if ((csv_ptr = malloc(strlen(temp)+1))==NULL)
238 { 239 {
239 free(data); 240 free(data);
240 fprintf(stderr,"Memory allocating error (%s line %d)\n" 241 fprintf(stderr,"Memory allocating error (%s line %d)\n"
241 ,__FILE__, __LINE__); 242 ,__FILE__, __LINE__);
242 exit(1); 243 exit(1);
243 } 244 }
244 245
245 memcpy(csv_ptr, temp, strlen(temp)+1); 246 memcpy(csv_ptr, temp, strlen(temp)+1);
246 free(data); 247 free(data);
247 248