<?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[Datentyp fd_set für select...]]></title><description><![CDATA[<p>hi!</p>
<p>Es geht um den Datentyo fd_set, welchen man bei select verwendet, wenn man mit mehreren Clients arbeitet...<br />
Wie is der Datentyp fd_set aufgebaut? Ich weiß das es ein Array ist...Könnte man ihn in der Form eines Vectors nachbauen? Wo sind die Unterschiede zu Linux in punkto fd_set?</p>
<p>cu</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/85233/datentyp-fd_set-für-select</link><generator>RSS for Node</generator><lastBuildDate>Fri, 17 Apr 2026 23:23:09 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/85233.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 07 Sep 2004 06:19:06 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Datentyp fd_set für select... on Tue, 07 Sep 2004 06:19:06 GMT]]></title><description><![CDATA[<p>hi!</p>
<p>Es geht um den Datentyo fd_set, welchen man bei select verwendet, wenn man mit mehreren Clients arbeitet...<br />
Wie is der Datentyp fd_set aufgebaut? Ich weiß das es ein Array ist...Könnte man ihn in der Form eines Vectors nachbauen? Wo sind die Unterschiede zu Linux in punkto fd_set?</p>
<p>cu</p>
]]></description><link>https://www.c-plusplus.net/forum/post/601238</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/601238</guid><dc:creator><![CDATA[coder1]]></dc:creator><pubDate>Tue, 07 Sep 2004 06:19:06 GMT</pubDate></item><item><title><![CDATA[Reply to Datentyp fd_set für select... on Tue, 07 Sep 2004 07:31:24 GMT]]></title><description><![CDATA[<p><a href="http://msdn.microsoft.com/library/en-us/winsock/winsock/fd_set_2.asp" rel="nofollow">http://msdn.microsoft.com/library/en-us/winsock/winsock/fd_set_2.asp</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/601295</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/601295</guid><dc:creator><![CDATA[flenders]]></dc:creator><pubDate>Tue, 07 Sep 2004 07:31:24 GMT</pubDate></item><item><title><![CDATA[Reply to Datentyp fd_set für select... on Tue, 07 Sep 2004 08:57:42 GMT]]></title><description><![CDATA[<p>thx!</p>
<p>macht sowas sinn?</p>
<pre><code class="language-cpp">const unsigned int MAX_Connections = 100;

class fd_set_ 
{ 
private:
  unsigned int fd_count;  
  typedef std::vector&lt;SOCKET&gt; fd_array(MAX_Connections);
public:
};
</code></pre>
<p>select hat ja nix dagegen, wenn ich da einen vector nehme?</p>
<p>cu <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/601363</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/601363</guid><dc:creator><![CDATA[coder1]]></dc:creator><pubDate>Tue, 07 Sep 2004 08:57:42 GMT</pubDate></item></channel></rss>