Changeset 1883 in ntrip for trunk/ntripserver


Ignore:
Timestamp:
Sep 7, 2009, 3:26:36 PM (15 years ago)
Author:
stoecker
Message:

removed beta warning

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ntripserver/ntripserver.c

    r1811 r1883  
    11/*
    2  * $Id: ntripserver.c,v 1.47 2009/02/11 10:20:32 stoecker Exp $
     2 * $Id: ntripserver.c,v 1.48 2009/04/27 09:47:59 stoecker Exp $
    33 *
    44 * Copyright (c) 2003...2007
     
    3737
    3838/* CVS revision and version */
    39 static char revisionstr[] = "$Revision: 1.47 $";
    40 static char datestr[]     = "$Date: 2009/02/11 10:20:32 $";
     39static char revisionstr[] = "$Revision: 1.48 $";
     40static char datestr[]     = "$Date: 2009/04/27 09:47:59 $";
    4141
    4242#include <ctype.h>
     
    437437    fprintf(stderr, "\n");
    438438    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");
    451439  }
    452440
     
    969957            "Transfer-Encoding: chunked\r\n\r\n",
    970958            mountpoint, casterouthost, AGENTSTRING,
    971             revisionstr, authorization, ntrip_str ? "\r\nNtrip-STR: " : "",
     959            revisionstr, authorization, ntrip_str ? (outputmode == NTRIP1 ? "\r\nSTR: " : "\r\nNtrip-STR: ") : "",
    972960            ntrip_str);
    973961            i += j;
Note: See TracChangeset for help on using the changeset viewer.