Skip to Main Content
Sockets, Shellcode, Porting, and Coding: Reverse Engineering Exploits and Tool Coding for Security Professionals
book

Sockets, Shellcode, Porting, and Coding: Reverse Engineering Exploits and Tool Coding for Security Professionals

by James C Foster
April 2005
Intermediate to advanced content levelIntermediate to advanced
700 pages
20h 39m
English
Syngress
Content preview from Sockets, Shellcode, Porting, and Coding: Reverse Engineering Exploits and Tool Coding for Security Professionals
int connect(int s ,
const
struct sockaddr *name ,
int namelen);
The Win32 connect function signature and required header files are:
#include <winsock2.h>
int connect(SOCKET s ,
const
struct sockaddr FAR *name ,
int namelen);
The connect function is used to connect or define the endpoint for a previously cre-
ated socket descriptor. It takes three arguments: the socket descriptor to be operated on,
a sockaddr structure defining the endpoint for the connect operation, and the length of
the sockaddr structure.
The BSD sockets and Winsock versions of the connect function are compatible aside
from return values, as discussed in the “Return Values” section.
Example ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

32/64-Bit 80x86 Assembly Language Architecture

32/64-Bit 80x86 Assembly Language Architecture

James Leiterman

Publisher Resources

ISBN: 9781597490054