Changeset 9 in ntrip
- Timestamp:
- Jan 3, 2005, 12:33:39 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ntripclient/NtripLinuxClient.c
r8 r9 1 1 /* 2 2 Easy example NTRIP client for Linux/Unix. 3 $Id: NtripLinuxClient.c,v 1. 5 2004/11/25 12:47:16stoecker Exp $3 $Id: NtripLinuxClient.c,v 1.6 2004/12/13 16:41:41 stoecker Exp $ 4 4 Copyright (C) 2003 by Dirk Stoecker <stoecker@epost.de> 5 5 … … 25 25 1.2 2003-02-25 stoecker fixed agent string 26 26 1.6 2004-12-13 stoecker fixed server string 27 1.7 2005-01-03 stoecker fixed for GNCaster access 27 28 */ 28 29 … … 45 46 46 47 /* CVS revision and version */ 47 static char revisionstr[] = "$Revision: 1. 5$";48 static char datestr[] = "$Date: 2004/1 1/25 12:47:16$";48 static char revisionstr[] = "$Revision: 1.6 $"; 49 static char datestr[] = "$Date: 2004/12/13 16:41:41 $"; 49 50 50 51 struct Args … … 264 265 if(!k) 265 266 { 266 if(numbytes !=12 || strncmp("ICY 200 OK\r\n", buf, 12))267 if(numbytes < 12 || strncmp("ICY 200 OK\r\n", buf, 12)) 267 268 { 268 269 fprintf(stderr, "Could not get the requested data\n");
Note:
See TracChangeset
for help on using the changeset viewer.