Changeset 88 in ntrip for trunk/BNC/bncmain.cpp


Ignore:
Timestamp:
Aug 31, 2006, 7:20:36 PM (18 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncmain.cpp

    r82 r88  
    4646  else {
    4747    QSettings settings;
    48     QString    proxyHost = settings.value("proxyHost").toString();
    49     int        proxyPort = settings.value("proxyPort").toInt();
    50     QByteArray user      = settings.value("user").toString().toAscii();
    51     QByteArray password  = settings.value("password").toString().toAscii();
    52    
    5348    bncCaster* caster = new bncCaster(settings.value("outFile").toString(),
    5449                                      settings.value("outPort").toInt());
     
    6560      if (hlp.size() <= 1) continue;
    6661      QUrl url(hlp[0]);
    67       QByteArray mountPoint = url.path().mid(1).toAscii();
    68       QByteArray format     = hlp[1].toAscii();
    69 
    70       bncGetThread* getThread = new bncGetThread(url.host(), url.port(),
    71                                                  proxyHost, proxyPort,
    72                                                  mountPoint, user, password,
    73                                                  format);
     62      QByteArray format = hlp[1].toAscii();
     63      bncGetThread* getThread = new bncGetThread(url, format);
    7464      app.connect(getThread, SIGNAL(newMessage(const QByteArray&)),
    7565                  &app, SLOT(slotMessage(const QByteArray&)));
     
    7969      getThread->start();
    8070    }
    81     if (caster->nMountPoints() == 0) {
     71    if (caster->numStations() == 0) {
    8272      return 0;
    8373    }
Note: See TracChangeset for help on using the changeset viewer.