Changeset 17 in ntrip for trunk/ntripclient
- Timestamp:
- Apr 19, 2005, 1:28:10 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ntripclient/NtripLinuxClient.c
r14 r17 1 1 /* 2 2 Easy example NTRIP client for Linux/Unix. 3 $Id: NtripLinuxClient.c,v 1. 92005/02/15 16:15:33stoecker Exp $3 $Id: NtripLinuxClient.c,v 1.10 2005/02/16 15:23:36 stoecker Exp $ 4 4 Copyright (C) 2003-2005 by Dirk Stoecker <soft@dstoecker.de> 5 5 … … 38 38 39 39 /* CVS revision and version */ 40 static char revisionstr[] = "$Revision: 1. 9$";41 static char datestr[] = "$Date: 2005/02/1 5 16:15:33$";40 static char revisionstr[] = "$Revision: 1.10 $"; 41 static char datestr[] = "$Date: 2005/02/16 15:23:36 $"; 42 42 43 43 struct Args … … 259 259 if(numbytes < 12 || strncmp("ICY 200 OK\r\n", buf, 12)) 260 260 { 261 fprintf(stderr, "Could not get the requested data\n"); 261 fprintf(stderr, "Could not get the requested data: "); 262 for(k = 0; k < numbytes && buf[k] != '\n' && buf[k] != '\r'; ++k) 263 { 264 fprintf(stderr, "%c", isprint(buf[k]) ? buf[k] : '.'); 265 } 266 fprintf(stderr, "\n"); 262 267 exit(1); 263 268 }
Note:
See TracChangeset
for help on using the changeset viewer.