Guest konggang Posted April 20, 2007 Posted April 20, 2007 ;SERVER!! Start Me First !!!!!!!!!!!!!!!$g_IP = "127.0.0.1"; Start The TCP Services;==============================================TCPStartUp(); Create a Listening "SOCKET";==============================================$MainSocket = TCPListen($g_IP, 65432, 100 )If $MainSocket = -1 Then Exit; look for client connection;--------------------While 1$ConnectedSocket = TCPAccept( $MainSocket)If $ConnectedSocket >= 0 Then msgbox(0,"","my server - Client Connected") exitEndIfWendhi, guys, when I run this script, the TCPAccept function won't block, it always fail, any idea? thanks.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now