Top "Network-programming" questions

Programming associated with creating and managing networks as well as adding network connectivity to a (set of) programs.

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 …

linux tcp network-programming network-protocols qemu
Batch Scripting - Wait until network Established

I have logon.bat script that runs each time a user logs into their workstation of an Active Directory domain. …

windows batch-file active-directory network-programming mapped-drive
IPv6 address to domain name

I'm searching for a function that take an IPv6 address as argument and returns the domain name. To make it …

c networking network-programming ipv6 getaddrinfo
Getting list of network devices inside the Linux kernel

I've been looking through net/core/dev.c and other files to try to find out how to get the …

linux network-programming linux-kernel kernel-module
List the IP Address of all computers connected to a single LAN

I am writing a program where you connect, for various reasons, to other computers in a LAN. However, rather than …

c# .net network-programming lan
Unity UNET - calling [Command] outside of player object

So I understand that [command] does not work on non-player objects, however ...why? how am I supposed to sync data …

unity3d network-programming unity-networking
What does InetAddress.isSiteLocalAddress() actually mean?

Here is some code to determine the local host name that is supposed to work on a multi-homed box: /** * Work …

java network-programming inet
Handling a Biometric Fingerprint Attendance Device by using socket

I am trying to connect with a Biometric Fingerprint Attendance Device using a Java program. The device I am using …

java sockets network-programming fingerprint biometrics
UDP Broadcast or IP Multicast?

If you had to implement a network broadcast, would you use UDP broadcast or IP multicast in a new application? …

network-programming broadcast
Using OKHttp, what is the difference between synchronous request in AsyncTask and OKhttp Asynchronous request?

OKHttp supports both synchronous and asynchronous api. If I want to issue an async request, I can: Use a AsyncTask, …

android android-asynctask network-programming okhttp