I am completely new to sockets and not that familiar with the concept. I am planning on making a phone application f开发者_开发问答or chatting. now I was told that if you open a socket you can push re
I\'m in process of writing Android 2.2 application with BT support. Two BT devices need to exchange messages.
In server-client program server can listen for a number of clients. listen(sockfd,5); Does it mean that server can handle 5 clients at the same time. O开发者_如何学运维r I have to use multi thread
I\'ve been working with node.js for the past couple of weeks and I need to implement the FAST-CGI protocol.
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time,or an extraordinarily narrow situation that is not generally applic
When the callback assigned by Socket.BeginReceive() gets some bytes, what is the best way to know I have the whole message? Should I have the first 4 bytes of each message I send hold the length of th
I\'m experimenting with socket communication between android and windows. Everything works fine till i use the 10.0.2.2 address which is the loopback to the computer on which the emulator is running.
I\'ve been asked to make a JAVA application for sending frames using sockets, my question is simple, is there anything special with this \"frames\"? i mean, i know how to transport bytes through net,
we\'re going to develop a game with internet multiplayer support. since it\'s an interactive game I know I have to use UDP to reduce connection latency, but I\'m wondering what are the possible errors
In android, there are two classes LocalServerSocket and LocalSocket. I think they are something like AF_LOCAL in unix socket (I am not sure it is correct or not).