Jump to content

tcp commands not working ?


Recommended Posts

Hello All,

I can not get this to work

the first tcprecv works i think the tcpsend works i can not get the secant tcprecv to work

what i went to do is send dat wit tcpsend then see what is sent back

;CLIENT!!!!!!!! Start SERVER First...

$name = "mail.insightbb.com"

$port="110"

; Start The TCP Services

;==============================================

TCPStartUp()

$g_IP = TCPNameToIP($name)

; Connect to a Listening "SOCKET"

;==============================================

$socket = TCPConnect( $g_IP, $port)

;If $socket = -1 Then Exit

While 1

$recv = TCPRecv( $socket, 2048 )

If $recv = "" Then ContinueLoop

MsgBox(0,"",$recv)

TCPSend($socket,"user ")

$recv = TCPRecv( $socket, 2048 )

MsgBox(0,"",$recv)

Exit

WEnd

thanks for any help

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...