<?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: Bogus dwNeededSize returned by lineGetDevCaps in Call Control</title>
    <link>https://community.cisco.com/t5/call-control/bogus-dwneededsize-returned-by-linegetdevcaps/m-p/3523365#M1379</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mihai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for pointing that out. We will look into the TSP code of lineGetCallInfo for comparison. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Smita&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Feb 2015 18:44:25 GMT</pubDate>
    <dc:creator>smupadhy</dc:creator>
    <dc:date>2015-02-06T18:44:25Z</dc:date>
    <item>
      <title>Bogus dwNeededSize returned by lineGetDevCaps</title>
      <link>https://community.cisco.com/t5/call-control/bogus-dwneededsize-returned-by-linegetdevcaps/m-p/3523357#M1371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm having this problem that lineGetDevCaps returns random values in dwNeededSize (e.g. 0, ~2MB, ~4MB etc.). I'm using version "10.5".&lt;/P&gt;&lt;P&gt;Here's what I'm doing:&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P&gt;DWORD size = sizeof(LINEDEVCAPS);&lt;/P&gt;&lt;P&gt;while (true)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (_deviceCapabilities != 0)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; delete _deviceCapabilities;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _deviceCapabilities = (LPLINEDEVCAPS) new char[size];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; memset(_deviceCapabilities, 0, size);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _deviceCapabilities-&amp;gt;dwTotalSize = size;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LONG result;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; result = ::lineGetDevCaps(_tapi, _index, _tapiVersion, _providerSpecificExtensionVersion, _deviceCapabilities);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (result == LINEERR_STRUCTURETOOSMALL || &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; result == 0 &amp;amp;&amp;amp; _deviceCapabilities-&amp;gt;dwNeededSize &amp;gt; size)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; size = _deviceCapabilities-&amp;gt;dwNeededSize; // &amp;lt;--------- here, dwNeededSize has random values&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; continue;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (result == 0)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return false;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;return true;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas on what I might be doing wrong? Is this perhaps a bug in TSP?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;-Mihai&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 08:44:24 GMT</pubDate>
      <guid>https://community.cisco.com/t5/call-control/bogus-dwneededsize-returned-by-linegetdevcaps/m-p/3523357#M1371</guid>
      <dc:creator>mihaicodrean</dc:creator>
      <dc:date>2014-11-25T08:44:24Z</dc:date>
    </item>
    <item>
      <title>Re: Bogus dwNeededSize returned by lineGetDevCaps</title>
      <link>https://community.cisco.com/t5/call-control/bogus-dwneededsize-returned-by-linegetdevcaps/m-p/3523358#M1372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This appears to be a case where a proper error is not returned to application when buffer size is not big enough - most probably a bug. We are reviewing CiscoTSP behavior in that area (size calculations, error return, TAPI error mapping, etc). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you provide us the specific parameter values that were used in the lineGetDevCaps() calls and corresponding TSP logs from your test?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Jan 2015 20:01:20 GMT</pubDate>
      <guid>https://community.cisco.com/t5/call-control/bogus-dwneededsize-returned-by-linegetdevcaps/m-p/3523358#M1372</guid>
      <dc:creator>smupadhy</dc:creator>
      <dc:date>2015-01-22T20:01:20Z</dc:date>
    </item>
    <item>
      <title>Re: Bogus dwNeededSize returned by lineGetDevCaps</title>
      <link>https://community.cisco.com/t5/call-control/bogus-dwneededsize-returned-by-linegetdevcaps/m-p/3523359#M1373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We reviewed the TSP code that deals with this and it seems to function as per design - it does not report any fake dwNeededSize. If you are still seeing the odd behavior and require assistance, please attach the sanitized logs from your test. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2015 21:36:00 GMT</pubDate>
      <guid>https://community.cisco.com/t5/call-control/bogus-dwneededsize-returned-by-linegetdevcaps/m-p/3523359#M1373</guid>
      <dc:creator>smupadhy</dc:creator>
      <dc:date>2015-01-26T21:36:00Z</dc:date>
    </item>
    <item>
      <title>Re: Bogus dwNeededSize returned by lineGetDevCaps</title>
      <link>https://community.cisco.com/t5/call-control/bogus-dwneededsize-returned-by-linegetdevcaps/m-p/3523360#M1374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Smita,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, the issue is still there. Taking a closer look at it, the problem seems to be that the dwNeededSize is not being filled in by the TSP on the first call, and thus remains zero. Side effect: the code above then tries to allocate for "zero" space, resulting in dwNeededSize pointing to unallocated memory, thus the random values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the real question is why is the dwNeededSize not being filled in, remaining zero?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I code defensively, and handle the case where dwNeededSize is zero, and simply allocate more memory instead, then eventually the call to lineGetDevCaps will succeed:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;dwTotalSize = sizeof(LINEDEVCAPS) + sizeof(Cisco_LineDevCaps_Ext) = 464; lineGetDevCaps returns dwNeededSize = 0, with LINEERR_STRUCTURETOOSMALL&lt;/LI&gt;&lt;LI&gt;dwTotalSize = sizeof(LINEDEVCAPS) + sizeof(Cisco_LineDevCaps_Ext) + 100 = 564; lineGetDevCaps returns dwNeededSize = 0, with LINEERR_STRUCTURETOOSMALL&lt;/LI&gt;&lt;LI&gt;dwTotalSize = sizeof(LINEDEVCAPS) + sizeof(Cisco_LineDevCaps_Ext) + 200 = 664; lineGetDevCaps returns dwNeededSize = 0, with LINEERR_STRUCTURETOOSMALL&lt;/LI&gt;&lt;LI&gt;dwTotalSize = sizeof(LINEDEVCAPS) + sizeof(Cisco_LineDevCaps_Ext) + 300 = 764; lineGetDevCaps returns dwNeededSize = 763, and succeeds.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my tests, dwAPIVersion = 0x00020001, and dwExtVersion = 0x000d0000, as negotiated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can provide sanitized TSP logs, but it should be obvious where to look into now. Please let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just to make sure we are on the same page on what dwNeededSize is supposed to contain, here's a quote from the TAPI Memory Allocation guidelines: "TAPI fills in the &lt;STRONG&gt;dwNeededSize&lt;/STRONG&gt; member. [...] the application should allocate a structure at least the size of &lt;STRONG&gt;dwNeededSize&lt;/STRONG&gt; and invoke the function again. Usually, enough space is available this time to return all the information, although it is possible the size could have increased again."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2015 09:12:23 GMT</pubDate>
      <guid>https://community.cisco.com/t5/call-control/bogus-dwneededsize-returned-by-linegetdevcaps/m-p/3523360#M1374</guid>
      <dc:creator>mihaicodrean</dc:creator>
      <dc:date>2015-01-27T09:12:23Z</dc:date>
    </item>
    <item>
      <title>Re: Bogus dwNeededSize returned by lineGetDevCaps</title>
      <link>https://community.cisco.com/t5/call-control/bogus-dwneededsize-returned-by-linegetdevcaps/m-p/3523361#M1375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mihai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are looking into this. It will be helpful if you can provide us the detailed Cisco TSP logs, for the failure scenario.You can forward it by email. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please enable detailed level of TSP tracing before the test. Instructions can be found here: &lt;A href="https://developer.cisco.com/site/tapi/wiki/case-opening-steps/#tapi" title="https://developer.cisco.com/site/tapi/wiki/case-opening-steps/#tapi"&gt;TAPI Case Opening Steps&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Information on Variably Sized Data Structures in TAPI is given here: &lt;A href="https://msdn.microsoft.com/en-us/library/windows/desktop/ms734821%28v=vs.85%29.aspx" title="https://msdn.microsoft.com/en-us/library/windows/desktop/ms734821%28v=vs.85%29.aspx"&gt;Variably Sized Data Structures (Windows)&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2015 21:06:30 GMT</pubDate>
      <guid>https://community.cisco.com/t5/call-control/bogus-dwneededsize-returned-by-linegetdevcaps/m-p/3523361#M1375</guid>
      <dc:creator>smupadhy</dc:creator>
      <dc:date>2015-01-27T21:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: Bogus dwNeededSize returned by lineGetDevCaps</title>
      <link>https://community.cisco.com/t5/call-control/bogus-dwneededsize-returned-by-linegetdevcaps/m-p/3523362#M1376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Smita,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm attaching part of the TSP logs, showing the calls to lineGetDevCaps for one device, until they succeed. Although they show the needed size as being calculated, it's not filled in the dwNeededSize member when the returned value is &lt;SPAN class="st"&gt;&lt;SPAN class="f"&gt;&lt;/SPAN&gt;LINEERR_STRUCTURETOOSMALL. It's actually only filled in when the provided buffer is large enough, but then I don't need it anymore.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="st"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="st"&gt;Best Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="st"&gt;-Mihai&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jan 2015 09:35:05 GMT</pubDate>
      <guid>https://community.cisco.com/t5/call-control/bogus-dwneededsize-returned-by-linegetdevcaps/m-p/3523362#M1376</guid>
      <dc:creator>mihaicodrean</dc:creator>
      <dc:date>2015-01-30T09:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: Bogus dwNeededSize returned by lineGetDevCaps</title>
      <link>https://community.cisco.com/t5/call-control/bogus-dwneededsize-returned-by-linegetdevcaps/m-p/3523363#M1377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mihai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The trace statements printed in your logs, shows that lineGetDevCaps is being populated (and is not zero), when GetDevCaps fails with error LINEERR_STRUCTURETOOSMALL.&lt;/P&gt;&lt;P&gt;For e.g:&lt;/P&gt;&lt;P&gt;Instance 1: GetDevCaps fails with error LINEERR_STRUCTURETOOSMALL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;01:18:35.428 | CSelsiusTSPLine::GetDevCaps() line id=0x00000000 MX: final sizes: used=0x000000FC needed=0x000002DA devSpecific=0x00000000&lt;/P&gt;&lt;P&gt;01:18:35.428 |&amp;lt;--CSelsiusTSPLine::GetDevCaps() line id=0x00000000&lt;/P&gt;&lt;P&gt;01:18:35.428 |&amp;lt;--SelsiusTSP::TSPI_lineGetDevCaps(5)&lt;/P&gt;&lt;P&gt;01:18:35.428 | TSPI_lineGetDevCaps() TSPI_lineGetDevCaps returns = 0x8000004D&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instance 2: dwTotalSize incrementally increased , GetDevCaps fails with error LINEERR_STRUCTURETOOSMALL and needed size is 0x000002DA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;01:18:35.430 | CSelsiusTSPLine::GetDevCaps() line id=0x00000000 MX: final sizes: used=0x00000150 needed=0x000002DA devSpecific=0x00000000&lt;/P&gt;&lt;P&gt;01:18:35.430 |&amp;lt;--CSelsiusTSPLine::GetDevCaps() line id=0x00000000&lt;/P&gt;&lt;P&gt;01:18:35.430 |&amp;lt;--SelsiusTSP::TSPI_lineGetDevCaps(5)&lt;/P&gt;&lt;P&gt;01:18:35.430 | TSPI_lineGetDevCaps() TSPI_lineGetDevCaps returns = 0x8000004D&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are suspecting TAPI internally might be setting the needed size to zero, when buffer size is small, and that is why application is seeing it as zero. Cisco TSP is sending the right calculated value of needed size. We will continue to investigate the issue further, and try to come up with a better solution to the problem. For now, based on the error : LINEERR_STRUCTURETOOSMALL, the application can increase the dwTotalSize to a bigger value and resend the request.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Feb 2015 15:44:07 GMT</pubDate>
      <guid>https://community.cisco.com/t5/call-control/bogus-dwneededsize-returned-by-linegetdevcaps/m-p/3523363#M1377</guid>
      <dc:creator>smupadhy</dc:creator>
      <dc:date>2015-02-06T15:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: Bogus dwNeededSize returned by lineGetDevCaps</title>
      <link>https://community.cisco.com/t5/call-control/bogus-dwneededsize-returned-by-linegetdevcaps/m-p/3523364#M1378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Smita,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;For now, based on the error : LINEERR_STRUCTURETOOSMALL, the application can increase the dwTotalSize to a bigger value and resend the request.&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Yes, that's exactly the workaround I have turned to eventually, as mentioned somewhere above in this thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way, I apply the exact same initial algorithm for lineGetCallInfo, and there I get non-zero dwNeededSize values, gradually incrementing. So maybe you can compare the TSP code for differences, if any, in that respect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;-Mihai&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Feb 2015 16:29:07 GMT</pubDate>
      <guid>https://community.cisco.com/t5/call-control/bogus-dwneededsize-returned-by-linegetdevcaps/m-p/3523364#M1378</guid>
      <dc:creator>mihaicodrean</dc:creator>
      <dc:date>2015-02-06T16:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: Bogus dwNeededSize returned by lineGetDevCaps</title>
      <link>https://community.cisco.com/t5/call-control/bogus-dwneededsize-returned-by-linegetdevcaps/m-p/3523365#M1379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mihai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for pointing that out. We will look into the TSP code of lineGetCallInfo for comparison. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Smita&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Feb 2015 18:44:25 GMT</pubDate>
      <guid>https://community.cisco.com/t5/call-control/bogus-dwneededsize-returned-by-linegetdevcaps/m-p/3523365#M1379</guid>
      <dc:creator>smupadhy</dc:creator>
      <dc:date>2015-02-06T18:44:25Z</dc:date>
    </item>
    <item>
      <title>Re: Bogus dwNeededSize returned by lineGetDevCaps</title>
      <link>https://community.cisco.com/t5/call-control/bogus-dwneededsize-returned-by-linegetdevcaps/m-p/3523366#M1380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Smita,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way, how we could get more timely support going forward, including paid support? Especially for the initial contact / very first reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;-Mihai&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2015 16:32:00 GMT</pubDate>
      <guid>https://community.cisco.com/t5/call-control/bogus-dwneededsize-returned-by-linegetdevcaps/m-p/3523366#M1380</guid>
      <dc:creator>mihaicodrean</dc:creator>
      <dc:date>2015-02-13T16:32:00Z</dc:date>
    </item>
    <item>
      <title>Re: Bogus dwNeededSize returned by lineGetDevCaps</title>
      <link>https://community.cisco.com/t5/call-control/bogus-dwneededsize-returned-by-linegetdevcaps/m-p/3523367#M1381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mihai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We try to monitor the forums actively and respond in a timely manner. For urgent issues, you can opt for Case based support. More information on how to go about that, can be found here - &lt;A href="https://developer.cisco.com/site/devnet/support/" title="https://developer.cisco.com/site/devnet/support/"&gt;Cisco DevNet Support&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Smita&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2015 17:28:03 GMT</pubDate>
      <guid>https://community.cisco.com/t5/call-control/bogus-dwneededsize-returned-by-linegetdevcaps/m-p/3523367#M1381</guid>
      <dc:creator>smupadhy</dc:creator>
      <dc:date>2015-02-13T17:28:03Z</dc:date>
    </item>
  </channel>
</rss>

