Top "Winsock" questions

In computing, the Windows Sockets API (WSA), which was later shortened to Winsock, is a technical specification that defines how Windows network software should access network services, especially TCP/IP.

How to test a network device for a valid RTSP stream?

I am working on a project which streams video/audio through RTSP using VLC Media Player plugin. I would like …

delphi winapi winsock rtsp tcp-ip
Send int over socket in C/C++

I have troubles with sending an array of ints over a socket. the code looks like this Program 1: (running on …

c++ c winsock qnx-neutrino
Undefined reference to getaddrinfo

I have been getting this error for quite some time now and Google has not been of much help either. …

c winsock
how to link winsock in cmake?

I found only this strings find_library(WSOCK32_LIBRARY wsock32) find_library(WS2_32_LIBRARY ws2_32) (i'm begginer in cmake) how …

c++ cmake winsock
Sending emails using C

I have just started learning about socket programming and learned about winsock and achieved some progress. my question is basically: …

c sockets smtp winsock send
Winsock error code 10014

string SendRequestToServer(std::string url) { struct sockaddr_in addr = { 0 }; struct hostent *host = NULL; // If the URL begins with http://, remove …

c++ windows winsock wsastartup
winsock compiling error, it cant find the addrinfo structures and some relating functions

I've just started learning winsock through the "Beej's guide to network programming" book. I'm programming under windows and running it …

c++ gcc winsock
Raw Ethernet Frames Using Winsock

I am porting a communications library from Linux to Windows. I know what my approach is for the most part. …

windows linux networking winsock porting
Why is my socket's open port not listed by netstat?

If you run this example, you'll see the port is never listed by netstat. Why? And how do I make …

c sockets winapi winsock netstat
Winsock2.h vs winsock2.h and wsock32.lib vs ws2_32.lib

I am confused about couple of things about winsock. First, what the difference between including Winsock2.h vs winsock2.h (…

c++ windows winsock