Changeset 1883 in ntrip for trunk/ntripserver
- Timestamp:
- Sep 7, 2009, 3:26:36 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ntripserver/ntripserver.c
r1811 r1883 1 1 /* 2 * $Id: ntripserver.c,v 1.4 7 2009/02/11 10:20:32stoecker Exp $2 * $Id: ntripserver.c,v 1.48 2009/04/27 09:47:59 stoecker Exp $ 3 3 * 4 4 * Copyright (c) 2003...2007 … … 37 37 38 38 /* CVS revision and version */ 39 static char revisionstr[] = "$Revision: 1.4 7$";40 static char datestr[] = "$Date: 2009/0 2/11 10:20:32$";39 static char revisionstr[] = "$Revision: 1.48 $"; 40 static char datestr[] = "$Date: 2009/04/27 09:47:59 $"; 41 41 42 42 #include <ctype.h> … … 437 437 fprintf(stderr, "\n"); 438 438 usage(1, argv[0]); /* never returns */ 439 }440 441 if(outputmode != NTRIP1)442 {443 fprintf(stderr, "\nWARNING: *** NTRIP VERSION 2 PROTOCOL IS STILL"444 " BETA AND MAY BE CHANGED ***\n\n");445 }446 447 if(ntrip_str && (outputmode == NTRIP1))448 {449 fprintf(stderr, "WARNING: OutputMode is Ntrip version 1.0"450 " - Ntrip-STR will not be considered\n");451 439 } 452 440 … … 969 957 "Transfer-Encoding: chunked\r\n\r\n", 970 958 mountpoint, casterouthost, AGENTSTRING, 971 revisionstr, authorization, ntrip_str ? "\r\nNtrip-STR: ": "",959 revisionstr, authorization, ntrip_str ? (outputmode == NTRIP1 ? "\r\nSTR: " : "\r\nNtrip-STR: ") : "", 972 960 ntrip_str); 973 961 i += j;
Note:
See TracChangeset
for help on using the changeset viewer.