Tagged Questions

0
votes
1answer
34 views

BSD socket compatible wrapper around winsock?

I'm attempting to port a Linux application to Windows. The application isn't too complex, using all fairly standard code, with few external dependencies. The main dependencies are libelf (which …
-2
votes
4answers
143 views

What’s a portable way of converting Byte-Order of strings in C

I am trying to write server that will communicate with any standard client that can make socket connections (e.g. telnet client) It started out as an echo server, which of course did not need to …
1
vote
1answer
38 views

C# bandwidth monitor excluding local traffic

I am trying to find some example code to build a bandwidth monitor to keep tabs on my daily on/off peek download usage. I have a semi working solution but the data it shows includes all data …
0
votes
3answers
49 views

How can I solve an application networking issue?

Hello, I have assisted with an application that has a couple of thousand deployments. This application is a .NET 2 Winforms application. There are a couple of features that require the …
1
vote
2answers
77 views

Tcp connections hang on CLOSE_WAIT status.

Client close the socket first, when there is not much data from server, tcp connection shutdown is okay like: FIN --> <-- ACK <-- FIN, ACK ACK --> When the server is busying …
0
votes
1answer
22 views

UDP Problem With Non-Reception

Hello, I am new to Network Programming, and I am having a problem with some code I've been testing as the basis of a LAN chat program. Server Code: public static void Main() { UdpClient …
1
vote
3answers
252 views

How to tunnel TCP over reliable UDP?

Assume I have a reliable UDP library, and want to tunnel arbitrary TCP connections over it. This is my current approach to doing so, but I feel that it may not be very efficient. Any suggestions are …
0
votes
4answers
109 views

How to build a server that accepts many thousands of persistent network connections?

I am about build a server on linux (I get to pick programming language) that accepts many TCP/IP socket persistent connections from a desktop software. How can this be done cheaply and efficiently? A …
1
vote
1answer
61 views

Most effective way to connect/retry connecting using C#?

I am creating a little game client that will end up connecting to a server to gather some information on available games to play, how many players are playing, and all kinds of other stuff that you …
4
votes
3answers
83 views

Why would a browser make two separate requests for the same file?

I'm debugging a program I wrote and noticed something strange. I set up an HTTP server on port 12345 that servers a simple OGG video file, and attempted to access it from Firefox. Upon sniffing the …
0
votes
2answers
69 views

Where can I find documentation for Net::Libnet?

Could someone provide some links to additional documentation or tutorials for the CPAN module Net::Libnet?
0
votes
2answers
190 views

How can I capture and edit network packets on the fly with Perl?

Does someone know about a CPAN module on Win32 that captures network packets and edit them on the fly? As far as I know, the only Perl module on Win32 that deals with packets on the fly is Net::Pcap …
1
vote
3answers
60 views

huffman algorithm needs help in storing char code

I have written program to obtain the code for each char as shown in the program output. enter some text: nslfaslfjasfj text = "nslfaslfjasfj" a:2 f:3 j:2 l:2 n:1 s:3 Huffman Algorithm Below …
1
vote
5answers
119 views

Passing structures using sento()

How do I pass following message format from a UDP client to a UDP server? ----------------------------- |Ver|p|fff| length| checksum| ---------------------------- | Customer id | …
1
vote
2answers
62 views

Interrupt boost::asio synchronous read?

I'm using asio synchronous sockets to read data over TCP from a background thread. This is encapsulated in a "server" class. However, I want the thread to exit when the destructor of this class is …

1 2 3 4 5 24 next
15 30 50 per page