1
vote
3answers
72 views
what is best port for program
Which of the following ports is the best one to use for a program I'm working on using a custom protocol still under development. I'm looking for one that will be accessible to vir …
1
vote
3answers
48 views
[C#] What is the correct way to close a TCP connection
I have a TcpClient object which sends some data to server, using its underlying NetworkStream.Write().
Therefor, I have:
TcpClient server = new TcpClient(serverName, 50001);
/* . …
0
votes
2answers
32 views
Restricting tcp communication to specific ip’s using C#
Hi,
I want to make a simple program that can restrict any communication over the internet except for some specific ip's. So that the user can eliminate any unwanted traffic. It ha …
0
votes
1answer
31 views
Checking a local TCP port is not open in Java
Is there a simple way to make sure that a local port is not already open. Some TCP socket servers (eg Grizzly) don't seem to do this check by default. When this check is missing, …
0
votes
5answers
65 views
Client/Server: Integer always received as 1 (C-programming)
Hi!
I'm building a client and a server program that exchanges data over TCP and I'm having trouble sending an ACK-confirmation from the server back to the client when an operation …
2
votes
2answers
33 views
Long Lived Persistent TCP Connection on the Android
I've read some articles on the web and some questions on StackOverFlow, but no one seems to have a definite answer over a) If google uses Long Lived TCP connections for Gmail, Mail …
2
votes
2answers
57 views
Rejecting a TCP connection before it’s being accepted?
There are 3 different accept versions in winsock. Aside from the basic accept which is there for standard compliance, there's also AcceptEx which seems the most advanced version (d …
2
votes
2answers
72 views
One’s complement instead of just a sum of bits
A question in my university homework is why use the one's complement instead of just the sum of bits in a TCP checksum. I can't find it in my book and Google isn't helping. Any cha …
0
votes
5answers
161 views
Sending an int over TCP (C-programming)
Hi!
I have a server and a client program (both running on the same machine). The client is able to send a struct to the server with members such as "ID", "size" etc. Then I would …
0
votes
3answers
32 views
SSL_accept with blocking socket
I made a server with SSL and blocking sockets.
When I connect with telnet (so it does not do the handshake), the SSL_accept blocks indefinitely and blocks every new handshake/accep …
0
votes
2answers
51 views
How to list all devices in my wifi range in iphone.
I am using the reachability code from apple to find if my iphone is connected to the wifi. Next i would like to list all the devices that are in my wifi range. How should i do this …
0
votes
6answers
99 views
Sending struct over TCP (C-programming)
Hi again!
I have a client and server program where I want to send an entire struct from the client and then output the struct member "ID" on the server.
I have done all the conne …
0
votes
0answers
29 views
How do I gather TCP statistics on Windows?
I am interested in gathering some statistics from every TCP connection on a windows box for performance evaluation reasons. I see part of the API I need:
"The GetTcpTable2 functi …
0
votes
2answers
45 views
Idle tcp file descriptor after failed connect on HPUX
I have a client tcp socket (in c++) that has a loop where it retries to open a socket and connect to a server at a certain interval until it succeeds.
A bug in the program caused …
2
votes
4answers
226 views
Is TCP Guaranteed to arrive in order?
If I send two TCP messages, do I need to handle the case where the latter arrives before the former? Or is it guaranteed to arrive in the order I send it? I assume that this is not …
