0
votes
4answers
43 views
Maintaining many socket connections with a single thread
Many tutorials on socket communication I see seem to use 1 thread per socket. But on a server used for online gaming, you might have 10k concurrent users - 10k threads isn't probab …
1
vote
4answers
97 views
How do I extract the network protocol from the source code of the server?
I'm trying to write a chat client for a popular network. The original client is proprietary, and is about 15 GB larger than I would like. (To be fair, others call it a game.)
Ther …
1
vote
1answer
26 views
networkStream.CanRead true but Buffer returning no value
I have a do while loop that reads a buffer from a NetworkStream object
the while condition is networkStream.CanRead so as long as it can read it should continue reading from the bu …
0
votes
1answer
31 views
Change the settings of a single NIC using WMI (C#)?
Hi. I have read this article about using WMI to change the settings of NICs ( Article)
But I can't figure out how to change the settings of a single NIC (based on MACaddress, ID o …
3
votes
3answers
93 views
How many open udp or tcp/ip connections can a linux machine have?
There are limits imposed by available memory, bandwidth, CPU, and of course, the network connectivity. But those can often be scaled vertically. Are there any other limiting factor …
0
votes
2answers
79 views
How to use simple TCP/IP sockets connection over Net.TCP WCF binding?
How to use simple TCP/IP sockets connections over/with Net.TCP WCF binding?
Idea is – We have a web service with Net.TCP binding on some URL, port. We want to take advantage of th …
0
votes
5answers
53 views
Private Network (as in IPv4) question
I am working on an embedded TCP/IP4 stack and HTTP/SNMP/SMTP stuff.
It functionally works but I want to make it work faster on LAN.
Because of the Nagle's Algorithm and the delayed …
1
vote
2answers
86 views
How to create simple C# full-duplex TCP/IP stream socket connection?
How to create simple C# full-duplex TCP/IP stream socket connection?
What do I need? I need -
Open Source Libs
Tutorials
Blog posts/Articles
1
vote
1answer
35 views
Programmatically Changing NameServer in Windows TCP/IP
Hello, I am building a VPN application where I need to set DNS server programmatically. I am changing NameServer parameter in the registry (in HKEY_LOCAL_MACHINE\SYSTEM\CurrentCont …
0
votes
1answer
27 views
How to force a Http HEAD command to terminate (for HttpClient and curl) ?
If you run this command:
$ curl -XHEAD -i -H "User-Agent: myuseragent" http://www.google.com
HTTP/1.1 302 Found
... snip ...
Server: gws
Content-Length: 222
X-XSS-Protection: 0
…
0
votes
0answers
129 views
Is there a command line way to show the outward-facing IP address for my machine? [closed]
Is there a command line way to show the outward-facing IP address for my machine?
0
votes
0answers
14 views
SLES 9 vs. SLES 10
Are there any important change in how SLES 10 implements Tcp sockets vs. SLES 9?
I have several apps written in C# (.NET 3.5) that run on Windows XP and Windows Server 2003. Th …
1
vote
2answers
40 views
How can I establish a TCP connection between many computers behind two firewalls?
I'd like to establish several TCP connections between computers behind a firewall.
The follow picture illustrates a simple network:
From the picture I'd like to establish 3 TCP …
1
vote
7answers
83 views
Optimum programming language to implement server using tcp/ip socket
Hi,
What could be the optimum programming languages (Perl, PHP, Java, Python or something else) to implement server (multi-threaded?) using tcp/ip socket serving like 1000's of cl …
0
votes
0answers
37 views
A can ping B, B can ping C but A cant ping C. How do i connect A to C (ethernet)? [closed]
I have a computer at home with ip 192.168.221.xxx I have another computer at work that I can ping and it has 2 ip addresses: 192.168.1.xxx and 192.168.0.xxx. Those last 2 addresses …
