Advertisement
Guest User

Untitled

a guest
Aug 8th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.64 KB | None | 0 0
  1.     /// Connect and login. The QUrls query parameters will be evaluated for the login data.
  2.     /// Minimum information needed to try a connection in the url are host and username.
  3.     /// Url syntax: {tundra|http|https}://host:port/?username=x&password=y&avatarurl=z&protocol={udp|tcp}
  4.     /// Url examples: tundra://server.com/?username=John tundra://server.com:5432/?username=John&password=pWd123&protocol=udp
  5.     /// \param QUrl the login url.
  6.     /// \note The port where we perform the login will be gotten from urls port, not from a query parameter. If port is not present we default to tundras default 2345.
  7.     void Login(const QUrl& loginUrl);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement