SendNetworkString over ssl?
Posted: Wed Oct 19, 2016 1:03 pm
I want to install a ssl certificate on my server.
Will there be problems with sending user highscores to it after that?
I initiate the connection like this:
After that I send users highscores like this:
Will it be enough to change the port to 443?
Will there be problems with sending user highscores to it after that?
I initiate the connection like this:
Code: Select all
con = OpenNetworkConnection("www.lostlabyrinth.com", 80);
Code: Select all
SendNetworkString(con, "GET /newscore.php?" + p + " HTTP/1.1" + Chr(10))
SendNetworkString(con, "Host: www.lostlabyrinth.com" + Chr(10))
SendNetworkString(con, "User-agent: PureBasicAgent" + Chr(10))
SendNetworkString(con, "Accept: */*" + Chr(10))
SendNetworkString(con, Chr(10))