Tagged Questions

8
votes
4answers
1k views

Why is writing a closed TCP socket worse than reading one?

When you read a closed TCP socket you get a regular error, i.e. it either returns 0 indicating EOF or -1 and an error code in errno which can be printed with perror. However, when you write a closed ...
8
votes
10answers
2k views

How can I learn _really_ low-level network programming?

So I want to learn all about networks. Well below the socket, down to raw sockets and stuff. And I want to understand hubs, routers, access points, etc. For example, I'd like to be able to write my ...
8
votes
1answer
1k views

Everything a c++ developer should know about network programming?

So I am doing a lot of high performance network programming using Boost::Asio (or just Asio if you will), and have a pretty solid grasp of the essentials of both TCP and UDP protocols. I am wondering ...
7
votes
8answers
2k views

Network Communication Design Patterns

I've come to realize that several questions I asked in the past, such as this really boil down to a more fundamental question. Are there any well known design patterns for network communications and ...
6
votes
4answers
2k views

How to send large data using C# UdpClient?

I'm trying to send a large amount of data (more than 50 MB) using C# UdpClient. So at first I split the data into 65507 byte blocks and send them in a loop. for(int i = 0; i < packetCount; i++) ...
6
votes
0answers
730 views

SCTP with Multihoming as a Drop In Replacement for TCP

SCTP has native multi-homing support which if I understand it correctly will automatically reroute your packets over a secondary NIC if the primary interface goes down. I duplicated this ...
6
votes
3answers
3k 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 ...
5
votes
4answers
2k views

How to send a WOL package(or anything at all) through a nic which has no IP address?

I'm trying to send a WOL package on all interfaces in order to wake up the gateway(which is the DHCP server, so the machine won't have an IP yet). And it seems that I can only bind sockets to IP and ...
4
votes
3answers
114 views

Inform me when site (server) is online again

When I ping one site it returns "Request timed out". I want to make little program that will inform me (sound beep or something like that) when this server is online again. No matter in which ...
4
votes
3answers
195 views

Rationale behind ACKs and SEQs?

I am not sure if people find this obvious but I have two questions: During the 3-way handshake, why is ACK = SEQ + 1 i.e. why am I ACKing for the next byte that I am expecting from the sender? After ...
4
votes
5answers
2k views

Python TCP stack implementation

Is there a python library which implements a standalone TCP stack? I can't use the usual python socket library because I'm receiving a stream of packets over a socket (they are being tunneled to me ...
4
votes
2answers
5k views

How to measure network performance (how to benchmark network protocol)

First, a bit of background. There are many various comparison of distributed version control systems (DVCS) which compare size of repository, or benchmark speed of operations. I haven't found any that ...
4
votes
3answers
390 views

Application level checksumming as the tcp checksumming might be too weak?

This Paper (When the CRC and TCP checksum disagree) suggests that since the TCP checksumming algorithm is rather weak, there would occur an undetected error every 16 million to 10 billion packets ...
4
votes
2answers
750 views

How can I reverse engineer an application's protocol?

I'm using an application (an instant messenger) which is not very popular. I'm trying to find the protocol that it uses. I know it's using TCP/IP but I want to find out all the commands that it is ...
4
votes
4answers
246 views

Protocol simplicity versus “properness”

I have another argument with a friend of mine. Consider having a need to design a simplistic JSON-based protocol, which is basically used to send sort of events (messages) between parties. Say, ...
4
votes
3answers
5k views

Where is the Don't Fragment Bit of the IP Flags used?

I am curious to know where the "Don't Fragment" [DF] Bit of the IP Flags is used. As fragmentation is invisible to higher layers and they don't care too. I am also looking for an example. Thanks a ...
4
votes
3answers
486 views

Does anyone know of any problems with using WCF to expose a SOAP interface for non .NET clients?

Does anyone know of any problems with using WCF to expose a SOAP interface for non .NET clients? For example incompatibilities with other SOAP libraries? This is so that the SOAP interface can be ...
3
votes
1answer
95 views

Linux TCP socket in blocking mode

When I create a TCP socket in blocking mode and use the send (or sendto) functions, when the will the function call return? Will it have to wait till the other side of the socket has received the ...
3
votes
1answer
78 views

how can asn1 notation and libraries help me?

Abstract Syntax Notation I'm in the process of writing a network client and server, in the process of research i came across asn1 notation. How does asn1 notation help me program network services ...
3
votes
5answers
1k views

How to send raw data over a network?

I've same data stored in a byte-array. The data contains a IPv4 packet (which contains a udp-packet). I want to send these array raw over the network using C# (preferred) or C++. I don't want to use ...
3
votes
1answer
539 views

Select returning 0 on a closed SCTP socket

This is related to the question: SCTP with Multihoming as a Drop In Replacement for TCP I have a simple echo client / concurrent server app that ran perfectly fine using TCP. I could pipe a file to ...
3
votes
3answers
1k views

What kind of SCTP support is there on various Windows versions?

What kind of SCTP support is there on various Windows versions?
3
votes
5answers
483 views

Using TCP for real-time commands: Nagle arithmetic causes huge delays, what should I do?

I'm writing a socket server and flash game client. The game requires real-time commands such as movement and turning. It is important for these commands to be sent by the server to the client as soon ...
3
votes
5answers
1k views

Heartbeat Protocols/Algorithms or best practices

Recently I've added some load-balancing capabilities to a piece of software that I wrote. It is a networked application that does some data crunching based on input coming from a SQL database. Since ...
2
votes
0answers
32 views

Does cable length affects response time of ping? [migrated]

The question is above. Any link/idea is well appreciated. My best regards...
2
votes
1answer
127 views

How to print an integer and Counter32 value in net-snmp

I founded this code that print string values and it works fine: add_mibdir("."); pdu = snmp_pdu_create(SNMP_MSG_GET); read_objid(if_index, id_oid, &id_len); snmp_add_null_var(pdu, id_oid, ...
2
votes
1answer
56 views

Design(Classes, methods, interfaces) of real time applications(server/client)

I´ve been looking for a good book or article about this topic but didnt find much. I didnt find a good example - piece of code - for a specific scenario. Like clients/server conversation. In my ...
2
votes
4answers
248 views

Help me reduce my internet usage! Or just understand TCP [closed]

I was sitting in my kitchen (far from my router) and things were getting slow. I was thinking about TCP and wondering this: If packets getting sent from say, Google servers, are getting lost because ...
2
votes
3answers
200 views

Simulating host unreachable - how to achieve/implement it

Here is my scenario: A is a provisioning server and B is an client. Whenever there is any change in B's setup, it uploads the appropriate config file to A. I am working as an automation engineer to ...
2
votes
2answers
234 views

How to perform a latency test in iPhone

I would like to perform a latency test with respect to different urls in my iPhone app, an approach would be to make an async request for an url and measure the time duration based upon when the ...
2
votes
6answers
1k views

Flow based routing and openflow

This may not be the typical stackoverflow question. A colleague of mine has been speculating that flow-based routing is going to be the next big thing in networking. Openflow provides the ...
2
votes
6answers
252 views

Question about port numbers in computer networks

Based on my understanding, port numbers are just like telephone extensions. Just as a business telephone switchboard can use a main phone number and assign each employee an extension number (like ...
2
votes
1answer
184 views

programing practices : how to choose a packet size for UDP datagrams?

Disclaimer : this is not a "how to" question. I would more like to know, as a background information what are the different actual practices actually used. We know that UDP does not have a PMTU ...
2
votes
2answers
360 views

Is there a Java client that supports Telnet RFC2217 (to communicate with COM ports over a network connection)?

This should be simple, very simple, but I'm having a hard time with it. Problem I'm looking for an open source project, in java, that will communicate using the RFC2217 protocol. I find no shortage ...
2
votes
1answer
1k views

Apache HttpClient CoreConnectionPNames.CONNECTION_TIMEOUT does nothing?

I get strange behavior from HttpClient with parameter CoreConnectionPNames.CONNECTION_TIMEOUT set to 1. I would expect that HttpGet request would fail, throwing connection timeout exception and yet ...
2
votes
4answers
2k views

How to fake source ip-address of a udp-packet?

Think about the following: Your ISP offers you a dynamic ip-address (for example 123.123.123.123). My question is simple (the answer may not be): Is it possible to send a single udp-packet with an ...
2
votes
1answer
744 views

Write program like netstat

I would like to write an application like a netstat - to show all the active connections and the open ports respectively. The problem is that I don't know how to do it - I've done some network ...
2
votes
2answers
795 views

How can I send raw IP packets with Perl under Windows?

Is there any Perl module which has the capability to send raw packets on Windows? I know there is Net::RawIP, but it seems that it does not work on Windows.
2
votes
2answers
324 views

Virtual Network Connection

I can see that lot's of programs like openvpn and Teamviewer for their VPN Connection creat a virtual network connection on windows. I want to create one for myself for testing purposes. Is it ...
2
votes
4answers
392 views

Why no “what's my ip” well-known port/service?

I know there are some web sites that provide this service but given that pretty much everyone lives behind NAT these days, why isn't this standardized on a port and provided as a service to whomever ...
2
votes
3answers
775 views

Is SCTP good for peer-to-peer apps?

I am considering using SCTP instead of TCP for a p2p app written in C. Should I do it? Also how does the speed of SCTP compare to the speed of TCP? EDIT: I found that SCTP can be tunneled over UDP ...
1
vote
2answers
53 views

TCP server in C client in java comunication

I have server in c and client in java but it doesn't work. 1. run server, server wait for clients 2. run client - client sends string 3. server get the firs character and increment it and send to ...
1
vote
4answers
57 views

How to tell the TCP server that the particular message has ended?

TCP client sends data byte by byte. So, how to tell the server that this message has ended and the new message begins now? One way is to fix a special character that'll be sent as a bookmark, but ...
1
vote
1answer
84 views

Browse desktop files from iOS device over local network

I currently have my app configured for file sharing through itunes. However, I want to be able to browse through my my files located on my mac from my iOS device like the FileBrowser app or the Files ...
1
vote
1answer
55 views

Can we establish a connection-less or connection-oriented nature of a connection between 2 computers connected via bluetooth?

This sounds a silly question, but I'm trying to create a network between 3 computers over bluetooth, can we try to establish a connection-less or connection-oriented connection between each node, just ...
1
vote
2answers
85 views

does protobuf need a network packet header?

I am using 'protobuf' for C/S network program using TCP. here is my steps for client: 1, pack data into a 'protobuf' 2, get size in bytes of the pack and construct a length-prefix frame 3, write ...
1
vote
1answer
490 views

Bluetooth send/receive text without pairing using C# on 2 Windows 7 Computers

I have read that pairing is a must before communicating anything over bluetooth, but I want to know, Can I create an application which would read a text which is broadcasted by another bluetooth App ...
1
vote
3answers
379 views

TCP implementation in Java using UDP (Datagrams)

For a file sharing application I would like to use TCP/IP Sockets. But this doesn't work because both clients are behind NATs. Therefore I have to use UDP and the hole punching method. Since UDP is ...
1
vote
1answer
63 views

Strange net paths in WHOIS

As a self-learning project, I'm implementing a C++ whois client. I'm using a couple of ancient C implementations for reference, e.g. koders.com. One thing puzzles me. As well as the expected path ...
1
vote
1answer
167 views

What are possible ways to send Game/Simulation State with javaNIO?

i heard this phrase quite often to "send the game state or simulation state " in network game/simulation realm and my question is stem from that and i really need to know how? . I m working on real ...

1 2 3