Tagged Questions

A computer network allows sharing of resources and information among interconnected devices.

learn more… | top users | synonyms (1)

66
votes
13answers
9k views

A clean, lightweight alternative to Python's twisted?

A (long) while ago I wrote a web-spider that I multithreaded to enable concurrent requests to occur at the same time. That was in my Python youth, in the days before I knew about the GIL and the ...
53
votes
16answers
9k views

How to write a scalable Tcp/Ip based server

I am in the design phase of writing a new Windows Service application that accepts TCP/IP connections for long running connections (i.e. this is not like HTTP where there are many short connections, ...
44
votes
8answers
54k views

How to check internet access on Android? InetAddress never timeouts

I got a AsyncTask that is supposed to check the network access to a host name. But the doInBackground is never timed out. Anyone have a clue? public class HostAvailabilityTask extends ...
40
votes
8answers
1k views

When does Endianness become a factor?

Endianness from what I understand, is when the bytes that compose a multibyte word differ in their order, at least in the most typical case. So that an 16-bit integer may be stored as either 0xHHLL ...
40
votes
21answers
33k views

Best C/C++ Network Library [closed]

I haven't done work in C/C++ for a little bit and was just wondering what people's favorite cross platform libraries are to use. I'm looking for something that is a good quick and dirty library as ...
39
votes
19answers
20k views

What is the difference between a port and a socket?

This was a question raised by one of the software engineers in my organisation. I'm interested in the broadest definition.
39
votes
5answers
35k views

How can I upload a photo to a server with the iPhone?

I'm writing an iPhone app that takes a photo and then uploads it to a server. How do I upload a photo to a server with Cocoa in Xcode? I suppose I use NSUrl somewhere. Thanks!
38
votes
7answers
14k views

Network tools that simulate slow network connection

I would like to visually evaluate web pages response time for several Internet connections types (DSL, Cable, T1, dial-up etc.) while my browser and web server are on the same LAN or even on the same ...
37
votes
7answers
61k views

Can Android do peer-to-peer ad-hoc networking?

Is it possible to set up Android in ad-hoc peer-to-peer wifi mode? For example, I would like to have one phone broadcast a message, and have all peers in the network receive the broadcast, without ...
35
votes
12answers
55k views

How can I connect to Android with ADB over TCP?

I am attempting to debug an application on a Motorola Droid but I am having some difficulty connecting to the device via USB. My development server is a Windows 7 64bit VM running in HyperV and so I ...
34
votes
19answers
10k views

When is it appropriate to use UDP instead of TCP?

Since TCP guarantees packet delivery and thus can be considered "reliable", whereas UDP doesn't guarantee anything and packets can be lost, what would the advantage be of transmitting data using UDP ...
34
votes
5answers
16k views

How can you find out which process is listening on a port on Windows?

How can you find out which process is listening on a port on Windows?
31
votes
7answers
659 views

Stepping through a TCP/IP stack

I was working as a QA engineer for a proprietary embedded operating system. They built their own ATN stack and stepping though it with a debugger was the most eye opening experience I have had with ...
31
votes
3answers
10k views

C# - How do I check for a network connection

What is the best way to determine if there is a network connection available?
31
votes
11answers
28k views

Finding local IP addresses using Python's stdlib

How can I find the local IP address (i.e. 192.168.x.x or 10.0.x.x) in Python platform independently and using only the standard library?
30
votes
1answer
6k views

Caveats of select/poll vs. epoll reactors in Twisted

Everything I've read and experienced ( Tornado based apps ) leads me to believe that ePoll is a natural replacement for Select and Poll based networking, especially with Twisted. Which makes me ...
24
votes
6answers
13k views

How to validate IP address in Python?

What's the best way to validate that an IP entered by the user is valid? It comes in as a string.
24
votes
11answers
2k views

How should one go about choosing a default TCP/IP port for a new service?

When developing an app that will listen on a TCP/IP port, how should one go about selecting a default port? Assume that this app will be installed on many computers, and that avoiding port conflicts ...
24
votes
11answers
20k views

Getting the Hostname or IP in Ruby on Rails

I'm in the process of maintaining a Ruby on Rails app and am looking for an easy way to find the hostname or IP address of the box I'm on (since it's a VM and new instances may have different ...
23
votes
5answers
10k views

How Do I Access The Host From VMware Fusion?

I've just created a new Windows XP VM on my Mac using VMware Fusion. The VM is using NAT to share the host's Internet connection. How do I access a Rails application, which is accessible on the Mac ...
23
votes
9answers
21k views

UDP vs TCP, how much faster is it?

For general protocol message exchange, with loss tolerant. How much more efficient is UDP over TCP?
22
votes
6answers
2k views

Why is SCTP not much used/known

I recently checked out the book "UNIX Network Programming, Vol. 1" by Richards Stevens and I found that there is a third transport layer standard besides TCP and UDP: SCTP. Summary: SCTP is a ...
22
votes
10answers
51k views

Linux / C++: Get the IP Address of local computer

This Question is almost the same as the previously asked Get the IP Address of local computer-Question. However I need to find the IP address(es) of a Linux Machine. So: How do I - programmatically ...
22
votes
5answers
5k views

Why does my .NET application crash when run from a network drive?

My .NET application fails when run from a network drive even when the very same executable runs perfectly fine from a local hard drive? I tried checking for "Full trust" like so: try { // Demand ...
22
votes
15answers
10k views

What's the best CDN for image hosting on a high-volume web site?

Akamai is way too expensive. Photobucket is not reliable. Is there a great content delivery network that I can use just to host my images? We deploy images programmatically via FTP, so there is ...
20
votes
11answers
11k views

What port is a given program using?

I want to be able to figure out what port a particular program is using. Are there any programs available online or that come with windows that will tell me which processes are using which ports on ...
20
votes
9answers
14k views

Regular expression that matches valid IPv6 addresses

I'm having trouble writing a regular expression that matches valid IPv6 addresses, including those in their compressed form (with "::" or leading zeros omitted from each byte pair). Can someone ...
19
votes
4answers
10k views

Java: How to detect a remote side socket close?

How do you detect if Socket#close() has been called on a socket on the remote side?
19
votes
3answers
2k views

How do you get the ethernet address using Java?

I would like to retrieve the ethernet address of the network interface that is used to access a particular website. How can this be done in Java? Solution Note that the accepted solution of ...
18
votes
3answers
10k views

Detecting network connection speed and bandwidth usage in C#

Is there a way to detect the network speed and bandwidth usage in C#? Even pointers to open-source components are welcome. Thanks in advance.
18
votes
6answers
10k views

Windows packet sniffer that can capture loopback traffic?

(This is a followup to my previous question about measuring .NET remoting traffic.) When I am testing our Windows service / service controller GUI combination, it is often most convenient to run both ...
17
votes
5answers
3k views

Multiplayer Game Synchronization

I've a server/client arcitecture implemented, where all state changes are sent to the function, validated and broadcasted to all clients connected. This works rather well, but the system does not ...
17
votes
4answers
2k views

Dealing with Latency in Networked Games

I'm thinking about making a networked game. I'm a little new to this, and have already run into a lot of issues trying to put together a good plan for dead reckoning and network latency, so I'd love ...
16
votes
7answers
12k views

Is there a UPnP Library for .NET (C# or VB.NET)?

I'm working on a P2P application, and I need to get it to communicate through NAT Routers / Firewalls using UPnP. However, it doesn't seem that the .NET Framework includes support for UPnP. Is there ...
16
votes
8answers
64k views

What causes a TCP/IP reset (RST) flag to be sent?

I'm trying to figure out why my app's TCP/IP connection keeps hiccuping every 10 minutes (exactly, within 1-2 seconds). I ran Wireshark and discovered that after 10 minutes of inactivity the other ...
15
votes
4answers
8k views

Android emulator: How to monitor network traffic?

How do I monitor network traffic sent and received from my android emulator?
15
votes
6answers
18k views

What is the largest Safe UDP Packet Size on the Internet

I've read a number of articles about UDP packet sizes but have been unable to come to a conclusion on whats correct. A number of services restrict the largest UDP packet to 512 bytes (like dns) ...
15
votes
16answers
3k views

Why is it not advisable to have the database and web server on the same machine?

Listening to Scott Hanselman's interview with the Stack Overflow team (part 1 and 2), he was adamant that the SQL server and application server should be on separate machines. Is this just to make ...
15
votes
8answers
25k views

How do you monitor network traffic on the iPhone?

We are looking for a Wireshark-like tool to use on the iPhone to test a 3rd party application before partnering with the 3rd party. Any suggestions?
15
votes
7answers
12k views

TraceRoute and Ping in C#

Does anyone have C# code handy for doing a ping and traceroute to a target computer? I am looking for a pure code solution, not what I'm doing now, which is invoking the ping.exe and tracert.exe ...
15
votes
4answers
5k views

Finding per-process bandwidth usage on the mac? [closed]

On the PC there are several programs that will show you your bandwidth usage on a per process or per program basis. Is there anyway of doing something similar on the Mac?
14
votes
4answers
808 views

Layered Service Provider in C#

I'm looking to write a LSP in C# to capture and re-direct UDP packets.. I have little experience with LSP's but I've heard they can do this sort of thing, please correct me if I'm wrong, but is this ...
14
votes
2answers
480 views

Java in 2011: threaded sockets VS NIO: what to choose on 64bit OS and latest Java version?

I've read several posts about java.net vs java.nio here on StackOverflow and on some blogs. But I still cannot catch an idea of when should one prefer NIO over threaded sockets. Can you please examine ...
14
votes
9answers
760 views

One thread per client. Doable?

I'm writing a Java server which uses plain sockets to accept connections from clients. I'm using the fairly simple model where each connection has its own thread reading from it in blocking mode. ...
14
votes
8answers
2k views

Is 0.0.0.0 a valid IP address?

Is 0.0.0.0 a valid IP address? I want my program to be able to store it as an indication that no address is in use, but this won't work if it's actually valid.
14
votes
5answers
6k views

UDP real-time games in Flash/Flex available Open source RTMFP implementation

Are there any examples of using the Flash 10 beta RTMFP UDP based protocol to build real-time Flash games. The RTMFP examples so far seem to focus on P2P networking between flash clients does anyone ...
14
votes
3answers
8k views

How to find the largest UDP packet I can send without fragmenting?

I need to know what the largest UDP packet I can send to another computer is without fragmentation. This size is commonly known as the MTU (Maximum Transmission Unit). Supposedly, between 2 ...
14
votes
7answers
14k views

Can I use the /etc/hosts file to configure an alias

The /etc/hosts file can be used to override dns definitions, i.e. to point an hostname to a different ip. I want to use /etc/hosts to make an alias record, i.e.e to make my computer think that ...
14
votes
18answers
11k views

Does anyone know a good network/graph visualization software - just add data?

I want to plot social network visualization, but don't want to do much of programming. Does anyone know a piece of software that can do plotting, zooming in out but does not require much of ...
13
votes
3answers
351 views

What does this actually do? - Crazy C++ function

I'm working with some legacy code and I came across a function which is apparently used to perform network byte order conversions on an arbitrarily long field (bigger than ntohl can handle). I can't ...

1 2 3 4 5 131