vote up 1 vote down star
2

I need to create TCP/IP headers manually for my application. For that i used Raw socket. My system os is win xp (SP3).

My code compiles fine :) but it throws a run time error:

Initialising Winsock...Initialised successfully. Creating Raw TCP Socket...Raw TCP Socket Created successfully. Setting the socket in RAW mode...Successful. Enter hostname : 192.168.1.152

Resolving Hostname...Resolved. Enter Source IP : 192.168.1.151

Sending packet... Error sending Packet : 10022

I have set IP_HDRINCL to 1. What am i doing wrong? I switched off the firewall too but still get the same result.

flag

12% accept rate

3 Answers

vote up 1 vote down check

I suggest using WinPcap for this purpose. Even when you figure out how to do this properly with the win32 API it is going to be horribly slow.

I've used WinPcap successfully to inject packets to a Gigabit ethernet port as fast as the hardware can handle.

link|flag
vote up 1 vote down

Hi - not an answer, but hopefully a start...

From MSDN:

WSAEINVAL 10022 Invalid argument. Some invalid argument was supplied (for example, specifying an invalid level to the setsockopt function). In some instances, it also refers to the current state of the socket—for instance, calling accept on a socket that is not listening.

What are the arguments to your send call?


I found this update on raw sockets:

On Windows XP with Service Pack 2 (SP2) and Windows Vista, the ability to send traffic over raw sockets has been restricted in several ways:

  • TCP data cannot be sent over raw sockets.

Not sure if that applies to XP SP3 though...

link|flag
sendto(s , buf , sizeof(IPV4_HDR)+sizeof(TCP_HDR) + payload, 0,(SOCKADDR *)&dest, sizeof(dest))) – krishnakumar Feb 17 at 12:41
1  
Are you trying to send TCP data? – ng5000 Feb 17 at 12:53
(I guess so given that you have a TCP header) - see my update to answer. – ng5000 Feb 17 at 12:55
ya i have TCP header also – krishnakumar Mar 3 at 11:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.