Anyone know how sockets work in MooSock ?
Anyone know how sockets work in MooSock ?
- You connect to a server and a socket it made
- You can first start to use it after the 'On connect' condition is triggered.
- After you connect, you can either send text, text lines or binary files to the server or you can also just await data being sent to you.
- (I think) you can connect to multiple servers at a time this way (more sockets are made)
OR
- You can host a server on a port.
- For each user connecting to your server a socket is made
Generally:
- You can send and receive data through a socket as you wish (mostly)
- You can with MooSock's actions select the socket you want to send data through if you have more of them.
Was that the kind of answer you were looking for?![]()
Yes! - 14 years later! (Helpful for my understanding)