Changeset 484 in ntrip


Ignore:
Timestamp:
Aug 30, 2007, 9:38:24 AM (17 years ago)
Author:
stoecker
Message:

updated, renamed

Location:
trunk/ntripclient
Files:
2 added
3 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ntripclient/makefile

    r472 r484  
    1 
     1# $Id$
    22# probably works not with all compilers. Thought this should be easy
    33# fixable. There is nothing special at this source.
    44
    5 ntripclient: NtripLinuxClient.c
     5ntripclient: ntripclient.c
    66        $(CC) -Wall -W -O3 $? -o $@
    77
    88archive:
    9         zip -9 NtripLinuxClient.zip NtripLinuxClient.c makefile ReadmeLinuxClient.txt StartNtripLinuxClient
     9        tar -czf ntripclient.tgz ntripclient.c makefile README startntripclient.sh
  • trunk/ntripclient/ntripclient.c

    r483 r484  
    11/*
    2   Easy example NTRIP client for Linux/Unix.
    3   $Id: NtripLinuxClient.c,v 1.28 2007/08/23 06:55:36 stoecker Exp $
     2  Easy example NTRIP client for POSIX.
     3  $Id: ntripclient.c,v 1.29 2007/08/30 07:35:13 stoecker Exp $
    44  Copyright (C) 2003-2005 by Dirk Stoecker <soft@dstoecker.de>
    55   
     
    3939
    4040/* The string, which is send as agent in HTTP request */
    41 #define AGENTSTRING "NTRIP NtripLinuxClient"
     41#define AGENTSTRING "NTRIP NtripClientPOSIX"
    4242
    4343#define MAXDATASIZE 1000 /* max number of bytes we can get at once */
     
    4545
    4646/* CVS revision and version */
    47 static char revisionstr[] = "$Revision: 1.28 $";
    48 static char datestr[]     = "$Date: 2007/08/23 06:55:36 $";
     47static char revisionstr[] = "$Revision: 1.29 $";
     48static char datestr[]     = "$Date: 2007/08/30 07:35:13 $";
    4949
    5050struct Args
Note: See TracChangeset for help on using the changeset viewer.