20.03.2011, 11:58
(
Последний раз редактировалось Vince; 22.03.2011 в 16:12.
)
Is this still being worked on? As far as I can see, it appears that none of the native callbacks ever get called.
For example:
It definitely DOES connect, but it does not call OnSocketConnect.
I have attached a pic of some packet snipping I did. Don't know if it will be of any use, but as you can see the socket successfully connects and automatically starts TLS negotiation (which was initiated by the web server). Packets 23 are 38 is the socket_connect function, packets 143 - 149 are (so I assume) socket_send("quit\r\n");.
Pic: http://i52.tinypic.com/2nlftk.png
EDIT: I got it to work I'm so happy right now. Though it is a real pain in the ass that the callbacks don't work
For example:
pawn Код:
public OnGameModeInit()
{
socket_connect("mail.venturas-cnr.com", 25);
// Other stuff
return 1;
}
I have attached a pic of some packet snipping I did. Don't know if it will be of any use, but as you can see the socket successfully connects and automatically starts TLS negotiation (which was initiated by the web server). Packets 23 are 38 is the socket_connect function, packets 143 - 149 are (so I assume) socket_send("quit\r\n");.
Pic: http://i52.tinypic.com/2nlftk.png
EDIT: I got it to work I'm so happy right now. Though it is a real pain in the ass that the callbacks don't work