Tagged Questions

11
votes
3answers
877 views

Testing network interrupts in software

I have a network C++ program in Windows that I'd like to test for network disconnects at various times. What are my options? Currently I am: Actually disconnecting the network wire from the back ...
9
votes
4answers
408 views

What happens when we say “listen to a port”?

When we start a server application, we always need to speicify the port number it listens to. But how is this "listening mechanism" implemented under the hood? My current imagination is like this: ...
9
votes
9answers
1k views

Java RMI Resources

Hi everyone I am currently undertaking a project that involves extensive use of Java RMI and I was wondering if anyone is aware of any good resources about it. The problem I am having with the ...
9
votes
13answers
3k views

Artificially create a connection timeout error

I've had a bug in our software that occurs when I receive a connection timeout. These errors are very rare (usually when my connection gets dropped by our internal network). How can I generate this ...
8
votes
2answers
824 views

Web server on port 80 on iPhone

I've been working on a project for awhile and it's got a built-in HTTP server which runs on port 8080. The users are told to access the device via e.g. http://192.168.1.4:8080/ -- works great. ...
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 ...
7
votes
6answers
222 views

Shall we use poll() or select()?

I'm fully aware of the major differences between poll() and select(): select() only supports a fixed amount of file descriptors select() is supposedly supported on more systems poll() allows ...
7
votes
1answer
150 views

How to reduce remote SQL Server loads?

I want to create an application in C# with client and server sides. It will work over local network. Client sides must check for updates on a remote SQL Server. Lets say we've set update time interval ...
7
votes
1answer
1k views

How to create a Boost.Asio socket from a native socket?

I am merely trying to create a boost ip::tcp::socket from an existing native socket. In the assign function, the first parameter must be a "protocol_type" and the second must be a "native_type", but ...
6
votes
3answers
401 views

Wormhole Attack Implementation -Sensors

I am trying to implement a wormhole attack detection program for network sensors. I have looked around the internet for source code on this, but have found none. Does anyone know where to find source ...
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++) ...
5
votes
7answers
5k views

Getting the 'external' IP address in Java

I'm not too sure how to go about getting the external IP address of the machine as a computer outside of a network would see it. My following IPAddress class only gets the local IP address of the ...
5
votes
3answers
267 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 ...
5
votes
3answers
276 views

What have you used to test (functional/load/stress) your network service with its custom protocol?

I recently created a turn-based game server that can accept 10s of thousands of simultaneous client connections (long story short - epoll on Linux). Communication is based on a simple, custom, ...
5
votes
6answers
1k views

How Many Network Connections Can a Computer Support?

When writing a custom server, what are the best practices or techniques to determine maximum number of users that can connect to the server at any given time? I would assume that the capabilities of ...
4
votes
2answers
248 views

How can I monitor the NIC status(up/down) in a C program without polling the kernel?

Now I need to get the status of the NIC(up or down) in the real time. That means I have to catch the kernel interrupt when the NIC up or down in a blocked loop. The first stupid method from mine is ...
4
votes
2answers
253 views

How can i get the available bandwidth rate?

We have a DSL , how can we calculate the available bandwidth so that we can shape the packet, We can assume the bandwidth to be 100mbps on the ethernet interface However, in DSL devices, the train ...
4
votes
1answer
615 views

Powershell: How do I connect to a network folder on a different domain with stored non-plaintext username/password

I'm trying to connect to a network share via powershell. The network share is on a different domain, so I need to supply credentials. Since New-PSDrive doesn't support credentials, I was going to use ...
4
votes
3answers
178 views

java network programming coordination of messaging

I have 2 processes running in different machines which are communicating via TCP sockets. Both processes have code that acts both as a server and as a client. I.e. ProcessA has opened a server socket ...
4
votes
2answers
728 views

Bandwidth throttling in Python

What libraries out there let you control the download speed of network requests (http in particular). I don't see anything built-in in urllib2 (nor in (Py)Qt which I intend on using). Can Twisted ...
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
8answers
647 views

What is a good way to connect multiple clients to the server?

As there are serveral ways of connecting multiclients to the server such as: fork, select, threads, etc. I would be glad if you could describe which is better to connect multiple clients to the ...
4
votes
1answer
916 views

Boost.Asio documentation is non-existent. What do these errors mean?

I'm struggling with two errors with Boost.Asio. The first occurs when I try to receive data on a socket: char reply[1024]; boost::system::error_code error; size_t reply_length = ...
4
votes
4answers
1k views

how to differentiate if client is using TCP or UDP from server side

I am writing simple client-server program. Client send some messages to server using UDP or TCP. Server must be able to support both UDP and TCP. If client, sends message using UDP, sequence of ...
4
votes
3answers
2k views

Is it possible to connect iPhones through NAT traversal techniques over 3G for peer 2 peer gaming

Is it possible to connect an iPhone to another iPhone or any other network client talking that game's protocol. I was thinking that I could use the same NAT Traversal technique used in the XBox 360 ...
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
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
485 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
3answers
113 views

android multi player game over network

I'm programming an Android multi-player game, which basically consist of a server where the clients connect and exchange messages. When the player connects to a server, a player list is return to ...
3
votes
3answers
317 views

Check if IP is in LAN (behind firewalls and routers)

I've been crawling in the web for about 5 hours now and couldn't find a solution for my problem: My company is developing an educational game and I'm writing an autoupdater for it using Monotorrent. ...
3
votes
1answer
107 views

Is there any technical reason why throughput would significantly differ between an Java application and a C++ application?

Given two applications, one written in Java and the second written in C++, is there any reason why they would have different network throughput? Both applications are fairly simple and identical in ...
3
votes
1answer
477 views

how to detect a TCP socket disconnection (with c berkeley socket)

I am using a loop to read message out from a c Berkeley socket but I am not able to detect when the socket is disconnected so I would accept a new connection. please help while(true) { ...
3
votes
1answer
237 views

Determine location of laptop based on WiFi

Say, I want to determine the location of the local machine 192.168.1.2 connected on my network. I want to find the "relative"/"absolute" ( any would do, relative is better though) of the laptop. Is ...
3
votes
6answers
169 views

Connecting two clients in a network

If I have two clients which are aware of each other (ie, they know which ports to use and their respective hostnames), can they connect to each other using sockets? I know that one could run as a ...
3
votes
1answer
168 views

Bridge multiple BlackBerry connections to increase bandwidth

I am interested in doing something like "link aggregation" over the data connection on multiple BlackBerry devices. What tools are available to do this? If I write this myself, how do I balance out ...
3
votes
2answers
299 views

twisted not detecting client disconnects

Does anybody have experience with this? I have a twisted app. The clients connect to the server. I added a feature so that if a client connects to a server, but there's already a client from that IP ...
3
votes
1answer
2k views

how to bind raw socket to specific interface

My application is running on CentOS 5.5. I'm using raw socket to send data: sd = socket(AF_INET, SOCK_RAW, IPPROTO_RAW); if (sd < 0) { // Error } const int opt_on = 1; rc = ...
3
votes
3answers
393 views

Socket Programming in C++

Can anybody provide me some sample example on Client and server connection using sockets in C++. I have gone through some tutorials now i want to implement it. How to start ?
3
votes
1answer
650 views

How to specify source port of a UdpPacket?

I wanted to send UdpPacket to a specific remote host (I already know the public IP and Port). I wanted to use C#'s UdpClient class. static int Main() { UdpClient client = new UdpClient(); ...
3
votes
3answers
175 views

What host do I have to bind a listening socket to?

I used python's socket module and tried to open a listening socket using import socket import sys def getServerSocket(host, port): for r in socket.getaddrinfo(host, port, socket.AF_UNSPEC, ...
3
votes
5answers
349 views

MD5 purpose or uses

If we can't decode the MD5 hash string, then what is the purpose of MD5 where can we use MD5.
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
2answers
110 views

Connecting from host to virtual server fails with network unreachable from Java

I have a server that has several virtual machines running on it. I'm trying to connect to one of these servers using Java, but it fails with "Network unreachable". The usecase is Hudson connecting to ...
3
votes
5answers
722 views

Generating all IP addresses in the IPv4 Range

What would be a efficient way to generate all possible IP v4 addresses? other than iterating all bytes in a one giant nested for loop.
3
votes
2answers
2k views

Set timeout for winsock recvfrom

I'm trying to set up a blocking socket to timeout after 16 ms of trying to recvfrom() on a port. Platform is Windows. I've looked at tons of examples online and it seems really simple I just can't ...
3
votes
3answers
330 views

What are the effects of incorrectly setting the netmask?

What are the effects of incorrectly setting the netmask? I have a C++ application that sets the network mask of a device. If the netmask is set incorrectly, tftp doesn't seem to work properly. Why ...
3
votes
2answers
76 views

Lots of ports with little data, or one ports with lots of data?

I've been checking out using a system called ROS (http://www.ros.org) for some work. There are lots of different types of data that get sent between network nodes in ROS. You define a struct of data ...
3
votes
4answers
1k views

Sending large chunks of data over Boost TCP?

I have to send mesh data via TCP from one computer to another... These meshes can be rather large. I'm having a tough time thinking about what the best way to send them over TCP will be as I don't ...
3
votes
2answers
420 views

What is the purpose of the AI_V4MAPPED flag in getaddrinfo?

The getaddrinfo call has many interesting flags. I'm wondering what the purpose of the AI_V4MAPPED flag is. On no system do I seem to be able to get getaddrinfo to produce ::ffff:n.n.n.n form ...
3
votes
7answers
921 views

“Sliding Window” - Is it possible to add reliability to a protocol and avoid flow control Implementation?

As a part of a personal project, I am making an application level protocol (encapsulated in UDP) which is reliable. For the implementation of reliability, I have to keep track of which packets i ...

1 2 3 4 5 8