Changeset 484 in ntrip
- Timestamp:
- Aug 30, 2007, 9:38:24 AM (17 years ago)
- Location:
- trunk/ntripclient
- Files:
-
- 2 added
- 3 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ntripclient/makefile
r472 r484 1 1 # $Id$ 2 2 # probably works not with all compilers. Thought this should be easy 3 3 # fixable. There is nothing special at this source. 4 4 5 ntripclient: NtripLinuxClient.c5 ntripclient: ntripclient.c 6 6 $(CC) -Wall -W -O3 $? -o $@ 7 7 8 8 archive: 9 zip -9 NtripLinuxClient.zip NtripLinuxClient.c makefile ReadmeLinuxClient.txt StartNtripLinuxClient9 tar -czf ntripclient.tgz ntripclient.c makefile README startntripclient.sh -
trunk/ntripclient/ntripclient.c
r483 r484 1 1 /* 2 Easy example NTRIP client for Linux/Unix.3 $Id: NtripLinuxClient.c,v 1.28 2007/08/23 06:55:36stoecker Exp $2 Easy example NTRIP client for POSIX. 3 $Id: ntripclient.c,v 1.29 2007/08/30 07:35:13 stoecker Exp $ 4 4 Copyright (C) 2003-2005 by Dirk Stoecker <soft@dstoecker.de> 5 5 … … 39 39 40 40 /* The string, which is send as agent in HTTP request */ 41 #define AGENTSTRING "NTRIP Ntrip LinuxClient"41 #define AGENTSTRING "NTRIP NtripClientPOSIX" 42 42 43 43 #define MAXDATASIZE 1000 /* max number of bytes we can get at once */ … … 45 45 46 46 /* CVS revision and version */ 47 static char revisionstr[] = "$Revision: 1.2 8$";48 static char datestr[] = "$Date: 2007/08/ 23 06:55:36$";47 static char revisionstr[] = "$Revision: 1.29 $"; 48 static char datestr[] = "$Date: 2007/08/30 07:35:13 $"; 49 49 50 50 struct Args
Note:
See TracChangeset
for help on using the changeset viewer.