<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: accept call returns error with the code 1122. Not able to connect more than 1 clients . in MQX Software Solutions</title>
    <link>https://community.nxp.com/t5/MQX-Software-Solutions/accept-call-returns-error-with-the-code-1122-Not-able-to-connect/m-p/289358#M9253</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is there a screenshot for this issue?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Jan 2014 08:06:13 GMT</pubDate>
    <dc:creator>ZhangJennie</dc:creator>
    <dc:date>2014-01-07T08:06:13Z</dc:date>
    <item>
      <title>accept call returns error with the code 1122. Not able to connect more than 1 clients .</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/accept-call-returns-error-with-the-code-1122-Not-able-to-connect/m-p/289357#M9252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;accept call returns error with the code 1122. Not able to connect more than 1 clients .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 07:48:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/accept-call-returns-error-with-the-code-1122-Not-able-to-connect/m-p/289357#M9252</guid>
      <dc:creator>userforfirsttim</dc:creator>
      <dc:date>2014-01-07T07:48:04Z</dc:date>
    </item>
    <item>
      <title>Re: accept call returns error with the code 1122. Not able to connect more than 1 clients .</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/accept-call-returns-error-with-the-code-1122-Not-able-to-connect/m-p/289358#M9253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is there a screenshot for this issue?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 08:06:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/accept-call-returns-error-with-the-code-1122-Not-able-to-connect/m-p/289358#M9253</guid>
      <dc:creator>ZhangJennie</dc:creator>
      <dc:date>2014-01-07T08:06:13Z</dc:date>
    </item>
    <item>
      <title>Re: accept call returns error with the code 1122. Not able to connect more than 1 clients .</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/accept-call-returns-error-with-the-code-1122-Not-able-to-connect/m-p/289359#M9254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It accepts the first client. When trying to connect second client, accept returns with the error 0x1122 which is out of sockets. Do we have to change anything in the RTCS lib&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 08:11:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/accept-call-returns-error-with-the-code-1122-Not-able-to-connect/m-p/289359#M9254</guid>
      <dc:creator>userforfirsttim</dc:creator>
      <dc:date>2014-01-07T08:11:41Z</dc:date>
    </item>
    <item>
      <title>Re: accept call returns error with the code 1122. Not able to connect more than 1 clients .</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/accept-call-returns-error-with-the-code-1122-Not-able-to-connect/m-p/289360#M9255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Preethi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The errors means that you have no longer sockets available for accepting the incoming connection. Form rtcs.h file:&lt;/P&gt;&lt;P&gt;#define RTCS_ERROR_BASE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (0x1000)&lt;/P&gt;&lt;P&gt;#define RTCSERR_OUT_OF_SOCKETS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (RTCS_ERROR_BASE|0x122)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to increase the number of sockets the system is allowed to have; for instance, in the web_hvac example we have this:&lt;/P&gt;&lt;P&gt;_RTCSPCB_init = 4;&lt;/P&gt;&lt;P&gt;_RTCSPCB_grow = 2;&lt;/P&gt;&lt;P&gt;_RTCSPCB_max = 20;&lt;/P&gt;&lt;P&gt;_RTCS_msgpool_init = 4;&lt;/P&gt;&lt;P&gt;_RTCS_msgpool_grow = 2;&lt;/P&gt;&lt;P&gt;_RTCS_msgpool_max&amp;nbsp; = 20;&lt;/P&gt;&lt;P&gt;_RTCS_socket_part_init = 4;&lt;/P&gt;&lt;P&gt;_RTCS_socket_part_grow = 2;&lt;/P&gt;&lt;P&gt;_RTCS_socket_part_max&amp;nbsp; = 20;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps you.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Garabo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 21:06:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/accept-call-returns-error-with-the-code-1122-Not-able-to-connect/m-p/289360#M9255</guid>
      <dc:creator>Luis_Garabo</dc:creator>
      <dc:date>2014-01-07T21:06:00Z</dc:date>
    </item>
    <item>
      <title>Re: accept call returns error with the code 1122. Not able to connect more than 1 clients .</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/accept-call-returns-error-with-the-code-1122-Not-able-to-connect/m-p/289361#M9256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much Garabo, setting of the RTCS variables helped to accept multiple connections. I set the "grow" variables to 4 so that it accepts 4 simultaneous connections.&lt;/P&gt;&lt;P&gt;Thanks once again&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and regards&lt;/P&gt;&lt;P&gt;Preethi Sreenath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jan 2014 06:47:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/accept-call-returns-error-with-the-code-1122-Not-able-to-connect/m-p/289361#M9256</guid>
      <dc:creator>userforfirsttim</dc:creator>
      <dc:date>2014-01-08T06:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: accept call returns error with the code 1122. Not able to connect more than 1 clients .</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/accept-call-returns-error-with-the-code-1122-Not-able-to-connect/m-p/289362#M9257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great! good luck!&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Garabo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jan 2014 17:24:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/accept-call-returns-error-with-the-code-1122-Not-able-to-connect/m-p/289362#M9257</guid>
      <dc:creator>Luis_Garabo</dc:creator>
      <dc:date>2014-01-08T17:24:40Z</dc:date>
    </item>
  </channel>
</rss>

