<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Socket strukture]]></title><description><![CDATA[<p>wie versende/empfange ich 2 char gleichzeitig<br />
gibts da irgendwelche tutorials? hab bis jetzt nichts gefunden<br />
vielen dank schonmal für die zahlreichen antworten <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f60b.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_savoring_food"
      title=":yum:"
      alt="😋"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/topic/234694/socket-strukture</link><generator>RSS for Node</generator><lastBuildDate>Wed, 08 Apr 2026 14:42:45 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/234694.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 21 Feb 2009 05:09:33 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Socket strukture on Sat, 21 Feb 2009 05:09:33 GMT]]></title><description><![CDATA[<p>wie versende/empfange ich 2 char gleichzeitig<br />
gibts da irgendwelche tutorials? hab bis jetzt nichts gefunden<br />
vielen dank schonmal für die zahlreichen antworten <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f60b.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_savoring_food"
      title=":yum:"
      alt="😋"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1667426</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1667426</guid><dc:creator><![CDATA[sinalco]]></dc:creator><pubDate>Sat, 21 Feb 2009 05:09:33 GMT</pubDate></item><item><title><![CDATA[Reply to Socket strukture on Sat, 21 Feb 2009 10:59:54 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">// sock ist vom Typ SOCKET.
char buf[2] = {};
int len = sizeof(buf) / sizeof(buf[0]);
int ret = recv(sock, buf, len);
// ret überprüfen...
</code></pre>
<p>Das versenden ist analog zum empfangen.<br />
(Buffer anlegen, füllen, versenden.)</p>
<p>Simon</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1667488</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1667488</guid><dc:creator><![CDATA[theta]]></dc:creator><pubDate>Sat, 21 Feb 2009 10:59:54 GMT</pubDate></item></channel></rss>