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
110
111
printf("listen() ok!\n");
112
113
cl = accept(sd, (struct sockaddr *) &sin, &len);
114 #ifdef WIN32
115 if(cl == SOCKET_ERROR)
116 #else
117 if(cl < 0)
118 #endif
119 {
120 printf("accept() failed.\n");
121 return(1);
122 }
123
124
printf("connection received.\n");
125
126
return(0);
127 }
Analysis
At line 113, the accept() function is called.
At lines 114 through 117, the return value from the accept() function is handled
in the same manner as that of the connect() function in Example 7.7.
select()
The UNIX select function signature and required header files are:
#include <sys/types.h>
#include <sys/socket.h>
int select(int nfds ,
fd_set *readfds ,
fd_set *writefds ,
fd_set *exceptfds,
const
struct timeval *timeout );
The Win32 select function signature and required ...
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