Changeset 1091 in ntrip for trunk/rtcm3torinex
- Timestamp:
- Sep 2, 2008, 9:29:33 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/rtcm3torinex/rtcm3torinex.c
r1088 r1091 1 1 /* 2 2 Converter for RTCM3 data to RINEX. 3 $Id: rtcm3torinex.c,v 1. 292008/07/22 15:15:51stoecker Exp $3 $Id: rtcm3torinex.c,v 1.30 2008/09/01 07:47:15 stoecker Exp $ 4 4 Copyright (C) 2005-2008 by Dirk Stöcker <stoecker@alberding.eu> 5 5 … … 1532 1532 1533 1533 #ifndef NO_RTCM3_MAIN 1534 static char datestr[] = "$Date: 2008/0 7/22 15:15:51$";1534 static char datestr[] = "$Date: 2008/09/01 07:47:15 $"; 1535 1535 1536 1536 /* The string, which is send as agent in HTTP request */ … … 1887 1887 } 1888 1888 1889 #ifndef WINDOWSVERSION 1890 static void WaitMicro(int mic) 1891 { 1892 struct timeval tv; 1893 tv.tv_sec = mic/1000000; 1894 tv.tv_usec = mic%1000000; 1895 #ifdef DEBUG 1896 fprintf(stderr, "Waiting %d micro seconds\n", mic); 1897 #endif 1898 select(0, 0, 0, 0, &tv); 1899 } 1900 #else /* WINDOWSVERSION */ 1901 void WaitMicro(int mic) 1902 { 1903 Sleep(mic/1000); 1904 } 1905 #endif /* WINDOWSVERSION */ 1906 1889 1907 #define ALARMTIME (2*60) 1890 1908 … … 2192 2210 if(init) 2193 2211 { 2212 int z; 2194 2213 if(u < -30000 && sn > 30000) sn -= 0xFFFF; 2195 2214 if(ssrc != w || ts > v) … … 2199 2218 } 2200 2219 if(u > sn) /* don't show out-of-order packets */ 2201 fwrite(buf+12, (size_t)i-12, 1, stdout); 2220 for(z = 12; z < i && !stop; ++z) 2221 HandleByte(&Parser, (unsigned int) buf[z]); 2202 2222 } 2203 2223 sn = u; ts = v; ssrc = w; init = 1; … … 2324 2344 while(!stop && (numbytes=recv(sockfd, buf, MAXDATASIZE-1, 0)) != -1) 2325 2345 { 2326 alarm(ALARMTIME); 2346 if(numbytes > 0) 2347 alarm(ALARMTIME); 2348 else 2349 { 2350 WaitMicro(100); 2351 continue; 2352 } 2327 2353 if(!k) 2328 2354 { … … 2353 2379 if(i < numbytes-l) 2354 2380 chunkymode = 1; 2355 2381 } 2356 2382 else if(numbytes < 12 || strncmp("ICY 200 OK\r\n", buf, 12)) 2357 2383 {
Note:
See TracChangeset
for help on using the changeset viewer.