Changeset 92 in ntrip


Ignore:
Timestamp:
Aug 31, 2006, 10:12:45 PM (18 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncgetthread.cpp

    r90 r92  
    7272  QByteArray userAndPwd = mountPoint.userName().toAscii() + ":" +
    7373                          mountPoint.password().toAscii();
    74   QByteArray  reqStr = "GET " + mountPoint.path().toAscii() +
     74
     75  QUrl hlp;
     76  hlp.setScheme("http");
     77  hlp.setHost(mountPoint.host());
     78  hlp.setPort(mountPoint.port());
     79  hlp.setPath(mountPoint.path());
     80
     81  QByteArray  reqStr = "GET " + hlp.toEncoded() +
    7582                       " HTTP/1.0\r\n"
    7683                       "User-Agent: NTRIP BNC 1.0\r\n"
Note: See TracChangeset for help on using the changeset viewer.