Android Question async stream

MESTERM

Member
Licensed User
hi i'm using network library and a socket to connect my WiFi module and asyncstream to revice datas and send data to that access point now i wanted to now if it is tcp/connection oriented or udp/connection less
 

Didier9

Well-Known Member
Licensed User
Longtime User
A TCP socket is declared as Socket
B4X:
Public TCPSck1 as Socket
A UDP socket is declared as UDPSocket
B4X:
Public UDSck1 as UDPSocket
 
Upvote 0
Top