I am using the iNetwork library to receive connections from external clients.
But I would like to know the IP address of the clients, what can I do?
B4X:
Do While True
Serv.Listen
Wait For Serv_NewConnection (Successful As Boolean, NewSocket As Socket)
If Successful Then
astream.Initialize(NewSocket.InputStream,NewSocke.OutputStream,"astream")
log("ip")
End If
Loop
But I would like to know the IP address of the clients, what can I do?