<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: Raw socket programming on windows with winsock	</title>
	<atom:link href="https://www.binarytides.com/raw-sockets-using-winsock/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.binarytides.com/raw-sockets-using-winsock/</link>
	<description>News, Technology, Entertainment and more</description>
	<lastBuildDate>Thu, 16 Feb 2023 08:40:00 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>
	<item>
		<title>
		By: Silver Moon		</title>
		<link>https://www.binarytides.com/raw-sockets-using-winsock/comment-page-1/#comment-351485</link>

		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Thu, 16 Feb 2023 08:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/blog/?p=5#comment-351485</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.binarytides.com/raw-sockets-using-winsock/comment-page-1/#comment-351419&quot;&gt;Gyanendar&lt;/a&gt;.

you are correct, raw tcp sockets are not supported with the native winsock api.
you need to use winpcap instead to construct and send tcp data over raw sockets]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.binarytides.com/raw-sockets-using-winsock/comment-page-1/#comment-351419">Gyanendar</a>.</p>
<p>you are correct, raw tcp sockets are not supported with the native winsock api.<br />
you need to use winpcap instead to construct and send tcp data over raw sockets</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Gyanendar		</title>
		<link>https://www.binarytides.com/raw-sockets-using-winsock/comment-page-1/#comment-351419</link>

		<dc:creator><![CDATA[Gyanendar]]></dc:creator>
		<pubDate>Wed, 15 Feb 2023 11:50:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/blog/?p=5#comment-351419</guid>

					<description><![CDATA[This sample doesnt run on windows 10. Though its not giving any error as such but no packet seen in wireshark.
As per MSDN, RAW Socket with TCP is not supported .]]></description>
			<content:encoded><![CDATA[<p>This sample doesnt run on windows 10. Though its not giving any error as such but no packet seen in wireshark.<br />
As per MSDN, RAW Socket with TCP is not supported .</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Mothi		</title>
		<link>https://www.binarytides.com/raw-sockets-using-winsock/comment-page-1/#comment-327554</link>

		<dc:creator><![CDATA[Mothi]]></dc:creator>
		<pubDate>Fri, 12 Nov 2021 09:33:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/blog/?p=5#comment-327554</guid>

					<description><![CDATA[I have tried this , but I did&#039;nt get any ip data in that respective destination IP...can somenone helps regarding this issue]]></description>
			<content:encoded><![CDATA[<p>I have tried this , but I did&#8217;nt get any ip data in that respective destination IP&#8230;can somenone helps regarding this issue</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Mothi		</title>
		<link>https://www.binarytides.com/raw-sockets-using-winsock/comment-page-1/#comment-327553</link>

		<dc:creator><![CDATA[Mothi]]></dc:creator>
		<pubDate>Fri, 12 Nov 2021 09:30:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/blog/?p=5#comment-327553</guid>

					<description><![CDATA[i have tried this one but i couldnt get the ip packet in the respective Destination IP....can some one help me regarding this]]></description>
			<content:encoded><![CDATA[<p>i have tried this one but i couldnt get the ip packet in the respective Destination IP&#8230;.can some one help me regarding this</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Paddy		</title>
		<link>https://www.binarytides.com/raw-sockets-using-winsock/comment-page-1/#comment-167762</link>

		<dc:creator><![CDATA[Paddy]]></dc:creator>
		<pubDate>Tue, 02 Oct 2018 10:40:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/blog/?p=5#comment-167762</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.binarytides.com/raw-sockets-using-winsock/comment-page-1/#comment-86&quot;&gt;Anonymous&lt;/a&gt;.

Yes, the RAW socket is limited to the paket layer (OSI 3). Under this Header there is still the Ethernet Header (Link Layer, OSI 2)  to determine the Destination hardware address (MAC) and senders MAC. There is also a field to determine the type of the first paket. In the example above the first paket is the the IP-Header. This are the first data the raw socket do provide.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.binarytides.com/raw-sockets-using-winsock/comment-page-1/#comment-86">Anonymous</a>.</p>
<p>Yes, the RAW socket is limited to the paket layer (OSI 3). Under this Header there is still the Ethernet Header (Link Layer, OSI 2)  to determine the Destination hardware address (MAC) and senders MAC. There is also a field to determine the type of the first paket. In the example above the first paket is the the IP-Header. This are the first data the raw socket do provide.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Anonymous		</title>
		<link>https://www.binarytides.com/raw-sockets-using-winsock/comment-page-1/#comment-89450</link>

		<dc:creator><![CDATA[Anonymous]]></dc:creator>
		<pubDate>Sat, 23 Jul 2016 16:05:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/blog/?p=5#comment-89450</guid>

					<description><![CDATA[And what about the fact that in the ip packet is initially field version, and only then the header size? In addition, the first two fields char structure, but they are in the specification should be 4 bits (two fields are equal to one char)? These must be packed in fragments through bitwise shift. On each line of 32 bits. This example is not workable.]]></description>
			<content:encoded><![CDATA[<p>And what about the fact that in the ip packet is initially field version, and only then the header size? In addition, the first two fields char structure, but they are in the specification should be 4 bits (two fields are equal to one char)? These must be packed in fragments through bitwise shift. On each line of 32 bits. This example is not workable.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Muhammad Ali Shah		</title>
		<link>https://www.binarytides.com/raw-sockets-using-winsock/comment-page-1/#comment-66171</link>

		<dc:creator><![CDATA[Muhammad Ali Shah]]></dc:creator>
		<pubDate>Sat, 17 May 2014 22:17:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/blog/?p=5#comment-66171</guid>

					<description><![CDATA[Do you have an example of ICMpv6 packets sent via Winsock (other than ping)? Does Winsock raw sockets allow you to send ICMPv6 Destination Unreachable packet, for example?]]></description>
			<content:encoded><![CDATA[<p>Do you have an example of ICMpv6 packets sent via Winsock (other than ping)? Does Winsock raw sockets allow you to send ICMPv6 Destination Unreachable packet, for example?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: umut		</title>
		<link>https://www.binarytides.com/raw-sockets-using-winsock/comment-page-1/#comment-56759</link>

		<dc:creator><![CDATA[umut]]></dc:creator>
		<pubDate>Tue, 09 Oct 2012 15:03:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/blog/?p=5#comment-56759</guid>

					<description><![CDATA[good work,so clear
thank you]]></description>
			<content:encoded><![CDATA[<p>good work,so clear<br />
thank you</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: KriPpLer		</title>
		<link>https://www.binarytides.com/raw-sockets-using-winsock/comment-page-1/#comment-3181</link>

		<dc:creator><![CDATA[KriPpLer]]></dc:creator>
		<pubDate>Wed, 30 Jun 2010 02:46:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/blog/?p=5#comment-3181</guid>

					<description><![CDATA[Very nice and informative, thanks.]]></description>
			<content:encoded><![CDATA[<p>Very nice and informative, thanks.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: bari		</title>
		<link>https://www.binarytides.com/raw-sockets-using-winsock/comment-page-1/#comment-143</link>

		<dc:creator><![CDATA[bari]]></dc:creator>
		<pubDate>Thu, 28 May 2009 12:38:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/blog/?p=5#comment-143</guid>

					<description><![CDATA[amazing work and&lt;br /&gt;and the pure beauty of coding socket in c &lt;br /&gt;i&#039;m your fan teacher]]></description>
			<content:encoded><![CDATA[<p>amazing work and<br />and the pure beauty of coding socket in c <br />i&#8217;m your fan teacher</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Anonymous		</title>
		<link>https://www.binarytides.com/raw-sockets-using-winsock/comment-page-1/#comment-87</link>

		<dc:creator><![CDATA[Anonymous]]></dc:creator>
		<pubDate>Sun, 05 Oct 2008 02:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/blog/?p=5#comment-87</guid>

					<description><![CDATA[Sorry I should have read the whole thing before I commented. Disregard my stupid comment. This blog is excellent.]]></description>
			<content:encoded><![CDATA[<p>Sorry I should have read the whole thing before I commented. Disregard my stupid comment. This blog is excellent.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Anonymous		</title>
		<link>https://www.binarytides.com/raw-sockets-using-winsock/comment-page-1/#comment-86</link>

		<dc:creator><![CDATA[Anonymous]]></dc:creator>
		<pubDate>Sun, 05 Oct 2008 02:41:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/blog/?p=5#comment-86</guid>

					<description><![CDATA[I don&#039;t understand didn&#039;t Microsoft limit raw sockets on Windows SP2?]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t understand didn&#8217;t Microsoft limit raw sockets on Windows SP2?</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
