Top "Network-programming" questions

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

Understanding struct sockaddr

struct sockaddr { unsigned short sa_family; // address family, AF_xxx char sa_data[14]; // 14 bytes of protocol address }; In this structure …

sockets networking network-programming network-protocols
What's the simplest way to call Http GET url using Delphi?

There's a web services I want to call in my application, I can use it with importing the WSDL or …

delphi http network-programming
Swift - Get device's WIFI IP Address

I need to get IP Address of iOS device in Swift. This is not a duplicate of other questions about …

ios swift network-programming
How to capture all the HTTP packets using tcpdump

I want to run tcpdump with some parameters (still don't know what to use), then load the stackoverflow.com page. …

bash http network-programming tcpdump
TCP Socket no connection timeout

I open a TCP socket and connect it to another socket somewhere else on the network. I can then successfully …

networking tcp network-programming timeout
difference between socket programming and Http programming

What is the difference between socket programming and Http programming? can anyone help please?

sockets network-programming
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_…

c linux sockets network-programming raw-sockets
Pinging from a C/C++ program

I want to write a C or C++ program, that given an IP address, Pings it and then performs further …

c++ c network-programming ping
How to completely destroy a socket connection in C

I have made a chat client in linux using socket, and i wish to destroy the connection completely. Following is …

c linux sockets network-programming
A call to SSPI failed, see inner exception - The Local Security Authority cannot be contacted

I have an WPF app, which uses SSLStream to connect to server and send/receive some messages. My code is …

c# .net networking network-programming sspi