Changeset 92 in ntrip
- Timestamp:
- Aug 31, 2006, 10:12:45 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncgetthread.cpp
r90 r92 72 72 QByteArray userAndPwd = mountPoint.userName().toAscii() + ":" + 73 73 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() + 75 82 " HTTP/1.0\r\n" 76 83 "User-Agent: NTRIP BNC 1.0\r\n"
Note:
See TracChangeset
for help on using the changeset viewer.