<?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: Writing zero bytes to a socket in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237430#M41533</link>
    <description>Hi Boris,&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt; But I appreciate your reply, I'm sure you want to help. I assume, you are&lt;BR /&gt;&amp;gt;&amp;gt; not far from the current CRTL developers, or at least work for the same&lt;BR /&gt;&amp;gt;&amp;gt; company. Can you alert them to this thread, please? If my assumption is&lt;BR /&gt;&amp;gt;&amp;gt; wrong, I apologize.&lt;BR /&gt;Good guess. Smart indeed.&lt;BR /&gt;Yes, I will talk to the CRTL team and forward this query to them.&lt;BR /&gt;I am not sure how loaded they are currently with other work items and cannot&lt;BR /&gt;guarantee a response but will try my best to get their opinion on this.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt; I still remember the days when treating formal and informal problem reports&lt;BR /&gt;&amp;gt;&amp;gt; equally was one of my objectives. The ultimate goal was quality of the&lt;BR /&gt;&amp;gt;&amp;gt; product.&lt;BR /&gt;Thats right. Same with me.&lt;BR /&gt;I am interested mainly on XFC (VMS data cache) and to some extent on XQP&lt;BR /&gt;(VMS metadata cache) as well. I do monitor discussions on XFC and XQP very&lt;BR /&gt;closely. Any suggestions or problems in these areas i do make a note of it&lt;BR /&gt;for performance improvement and/or fixing.&lt;BR /&gt;&lt;BR /&gt;Every bug has its day. So better fix it when you know about it cause if you&lt;BR /&gt;dont fix it then someday the bug will eventually make its way through the&lt;BR /&gt;official path!.&lt;BR /&gt;&lt;BR /&gt;Hein,&lt;BR /&gt;&amp;gt;&amp;gt; Yes, the team is trying. Murali is there often. Other contribute.&lt;BR /&gt;Right. I do read various questions posted here and try to help as much as&lt;BR /&gt;possible. Not only that, reading various solutions/suggestions in this forum&lt;BR /&gt;is very interesting/informative indeed. Thanks to all the experts around.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Murali</description>
    <pubDate>Fri, 30 Apr 2010 03:18:48 GMT</pubDate>
    <dc:creator>P Muralidhar Kini</dc:creator>
    <dc:date>2010-04-30T03:18:48Z</dc:date>
    <item>
      <title>Writing zero bytes to a socket</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237422#M41525</link>
      <description>&lt;!--!*#--&gt;x.c below gives 1 on VMS and 0 on Linux.&lt;BR /&gt;&lt;BR /&gt;I realize that this is unspecified behavior: "If nbyte is zero and the file is not a regular file, the results are unspecified" and socket is not a regular file -- see Base Definitions.&lt;BR /&gt;&lt;BR /&gt;Still, this particular behavior -- returning 1 as a number of written bytes when asked to write zero bytes -- makes no sense to me. Especially given the fact that read() function returns zero when asked to read zero bytes from a socket (the results are unspecified for both read() and write()).&lt;BR /&gt;&lt;BR /&gt;Any comment from C RTL team?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;-Boris&lt;BR /&gt;&lt;BR /&gt;x.c&lt;BR /&gt;---&lt;BR /&gt;#include &lt;STDIO.H&gt;&lt;BR /&gt;#include &lt;SYS&gt;&lt;BR /&gt;#include &lt;NETINET&gt;&lt;BR /&gt;#include &lt;UNISTD.H&gt;&lt;BR /&gt;#include &lt;ERRNO.H&gt;&lt;BR /&gt;&lt;BR /&gt;int main()&lt;BR /&gt;{&lt;BR /&gt;  int sock, rtn;&lt;BR /&gt;  char bytes[1];&lt;BR /&gt;  static struct sockaddr_in serv_addr;&lt;BR /&gt;&lt;BR /&gt;  errno = 0;&lt;BR /&gt;  if ((sock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)) &amp;lt; 0) {&lt;BR /&gt;    printf("socket() e:%d\n", errno);&lt;BR /&gt;    return 0;&lt;BR /&gt;  }&lt;BR /&gt;&lt;BR /&gt;  serv_addr.sin_family      = AF_INET;&lt;BR /&gt;  serv_addr.sin_addr.s_addr = htonl((127&amp;lt;&amp;lt;24|1));&lt;BR /&gt;  serv_addr.sin_port        = htons(23);&lt;BR /&gt;&lt;BR /&gt;  errno = 0;&lt;BR /&gt;  if (connect(sock, (struct sockaddr*) &amp;amp;serv_addr, sizeof(serv_addr)) &amp;lt; 0) {&lt;BR /&gt;    printf("connect() e:%d\n", errno);&lt;BR /&gt;    return errno;&lt;BR /&gt;  }&lt;BR /&gt;&lt;BR /&gt;  errno = 0;&lt;BR /&gt;  rtn = write(sock, bytes, 0);&lt;BR /&gt;  printf("write() rtn=%d errno=%d\n", rtn, errno);&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;$ cc/ver&lt;BR /&gt;HP C V7.3-018 on OpenVMS IA64 V8.3&lt;BR /&gt;$ run x.exe&lt;BR /&gt;write() rtn=1 errno=0&lt;BR /&gt;$&lt;BR /&gt;&lt;BR /&gt;$ uname -rvm&lt;BR /&gt;2.6.18-128.el5 #1 SMP Wed Dec 17 11:41:38 EST 2008 x86_64&lt;BR /&gt;$ a.out&lt;BR /&gt;write() rtn=0 errno=0&lt;BR /&gt;$&lt;BR /&gt;&lt;/ERRNO.H&gt;&lt;/UNISTD.H&gt;&lt;/NETINET&gt;&lt;/SYS&gt;&lt;/STDIO.H&gt;</description>
      <pubDate>Wed, 28 Apr 2010 15:15:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237422#M41525</guid>
      <dc:creator>WW304289</dc:creator>
      <dc:date>2010-04-28T15:15:47Z</dc:date>
    </item>
    <item>
      <title>Re: Writing zero bytes to a socket</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237423#M41526</link>
      <description>As you undoubtedly well know, "Unspecified" means that the C RTL and TCP could choose to ship over a base64-encoded Hubble telescope image of the former-planet known as Pluto if they so choose, and there's no need to justify whatever happens.&lt;BR /&gt;&lt;BR /&gt;But that the call returns 1 and 0 does look particularly bogus; I'd have expected -1 and EBORIS, :-), err, EINVAL here.&lt;BR /&gt;&lt;BR /&gt;Probably worth lobbing a formal report, regardless.</description>
      <pubDate>Wed, 28 Apr 2010 16:23:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237423#M41526</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2010-04-28T16:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: Writing zero bytes to a socket</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237424#M41527</link>
      <description>&amp;gt; Probably worth lobbing a formal report, regardless.&lt;BR /&gt;&lt;BR /&gt;We'll see what C RTL folks have to say.&lt;BR /&gt;&lt;BR /&gt;It looks like a regression, an unintended consequence of some change which slipped through CRTL regression test system. The TCP/IP stack should have nothing to do with the issue: for zero nbyte, the call should not have been forwarded to TCP/IP services at all. If this has changed, it may explain the problem.&lt;BR /&gt;&lt;BR /&gt;For the reference: the underlying socket function for read() is recv() and for write() is send(). It is unspecified how recv() and send() process a zero-length message.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;-Boris</description>
      <pubDate>Wed, 28 Apr 2010 16:47:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237424#M41527</guid>
      <dc:creator>WW304289</dc:creator>
      <dc:date>2010-04-28T16:47:44Z</dc:date>
    </item>
    <item>
      <title>Re: Writing zero bytes to a socket</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237425#M41528</link>
      <description>Boris, (THE Boris? ;-)&lt;BR /&gt;&lt;BR /&gt;&amp;gt;We'll see what C RTL folks have to say.&lt;BR /&gt;&lt;BR /&gt;  Are you expecting a response from them here? You might get lucky, but I wouldn't hold my breath. There are a few HP engineers who read and respond here, but it's definitely not an HP support channel. I'd recommend logging a formal report with your local customer support centre.</description>
      <pubDate>Wed, 28 Apr 2010 23:00:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237425#M41528</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2010-04-28T23:00:47Z</dc:date>
    </item>
    <item>
      <title>Re: Writing zero bytes to a socket</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237426#M41529</link>
      <description>Hi Boris,&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt; Still, this particular behavior -- returning 1 as a number of written bytes when&lt;BR /&gt;&amp;gt;&amp;gt; asked  to write zero bytes -- makes no sense to me. &lt;BR /&gt;Looks like problem handling boundary conditions (i.e. when requesting for zero&lt;BR /&gt;bytes).&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt; We'll see what C RTL folks have to say.&lt;BR /&gt;Yes, this is not a official HP support channel. To get a response from the official&lt;BR /&gt;support channel, you need to forward this question to the local HP customer&lt;BR /&gt;support. This way the query would eventually find its way to the CRTL team.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Murali</description>
      <pubDate>Thu, 29 Apr 2010 06:18:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237426#M41529</guid>
      <dc:creator>P Muralidhar Kini</dc:creator>
      <dc:date>2010-04-29T06:18:32Z</dc:date>
    </item>
    <item>
      <title>Re: Writing zero bytes to a socket</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237427#M41530</link>
      <description>Hi Boris,&lt;BR /&gt;&lt;BR /&gt;FWIW, (a bit of what Hein refers to regularly as "hand-waving") I would also say it's a bug.&lt;BR /&gt;&lt;BR /&gt;The stuff I do explicitly ignores (doesn't forward on) zero-byte messages, which makes me believe they are perfectly valid with the $qio interface.&lt;BR /&gt;&lt;BR /&gt;Cheers Richard Maher</description>
      <pubDate>Thu, 29 Apr 2010 09:29:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237427#M41530</guid>
      <dc:creator>Richard J Maher</dc:creator>
      <dc:date>2010-04-29T09:29:12Z</dc:date>
    </item>
    <item>
      <title>Re: Writing zero bytes to a socket</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237428#M41531</link>
      <description>&lt;!--!*#--&gt;John Gillings wrote:&lt;BR /&gt;&amp;gt; Boris, (THE Boris? ;-)&lt;BR /&gt;&lt;BR /&gt;Yes :-)&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Are you expecting a response from them here?&lt;BR /&gt;&lt;BR /&gt;Yes, I still am :-)&lt;BR /&gt;&lt;BR /&gt;&amp;gt; I'd recommend logging a formal report with your local customer support centre.&lt;BR /&gt;&lt;BR /&gt;We may do it, as a courtesy to HP. We know how to work around the problem.&lt;BR /&gt;&lt;BR /&gt;I still remember the days when treating formal and informal problem reports equally&lt;BR /&gt;was one of my objectives. The ultimate goal was quality of the product.&lt;BR /&gt;&lt;BR /&gt;P Muralidhar Kini wrote:&lt;BR /&gt;&amp;gt; This way the query would eventually find its way to the CRTL team.&lt;BR /&gt;&lt;BR /&gt;This is very encouraging :-)&lt;BR /&gt;&lt;BR /&gt;But I appreciate your reply, I'm sure you want to help. I assume, you are not far from the current CRTL developers, or at least work for the same company. Can you alert them to this thread, please? If my assumption is wrong, I apologize.&lt;BR /&gt;&lt;BR /&gt;Richard J Maher wrote:&lt;BR /&gt;&amp;gt; [...] I would also say it's a bug.&lt;BR /&gt;&lt;BR /&gt;I'm sure it is a bug. I cannot believe they shipped Hubble to Pluto on purpose :-)&lt;BR /&gt;&lt;BR /&gt;The send() function, which is the underlying virtual I/O function for write() when file descriptor is associated with a socket, returns zero for a zero-length message, so,&lt;BR /&gt;it must be something in write() itself. Besides, the execution should not even reach&lt;BR /&gt;send() when nbyte is zero. ("virtual I/O function" is not "virtual" in the C++ sense,&lt;BR /&gt;of course, this is what they used to be called in the CRTL land).&lt;BR /&gt;&lt;BR /&gt;I also believe it is a regression because the observed behavior does not match listings, but our VMS Listings CD is a kind of old.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;-Boris</description>
      <pubDate>Thu, 29 Apr 2010 18:57:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237428#M41531</guid>
      <dc:creator>WW304289</dc:creator>
      <dc:date>2010-04-29T18:57:06Z</dc:date>
    </item>
    <item>
      <title>Re: Writing zero bytes to a socket</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237429#M41532</link>
      <description>John Gillings wrote:&lt;BR /&gt;&amp;gt; Boris, (THE Boris? ;-)&lt;BR /&gt;&lt;BR /&gt;Boris G. crtl-savvy Boris. Ah! Where did you end up?&lt;BR /&gt;&lt;BR /&gt;John&amp;gt; Are you expecting a response from them  here?&lt;BR /&gt;Boris&amp;gt;Yes, I still am :-)&lt;BR /&gt;Yes, the team is trying. Murali is there often. Other contribute.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Boris&amp;gt; I still remember the days when treating formal and informal problem reports equally&lt;BR /&gt;was one of my objectives. The ultimate goal was quality of the product.&lt;BR /&gt;&lt;BR /&gt;And that was a very laudable goal. &lt;BR /&gt;From my limited   perspective the COBOL folks did GREAT in this space. Each report was appreciated and just labeled according to origin. Internal-notes, comp.os.vms, Wallstreet-journal, whatever.&lt;BR /&gt;The C-rtl probably did great as well, I just paid less attention there.&lt;BR /&gt;&lt;BR /&gt;Murali&amp;gt; This way the query would eventually find its way to the CRTL team.&lt;BR /&gt;Boris&amp;gt; This is very encouraging :-)&lt;BR /&gt;&lt;BR /&gt;Well, you know, it is at least on par or possible better than the classic OpenVMS tean. Some there were rather anal about process. A bug was not a bug until properly reported. :-(.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt; I also believe it is a regression because the observed behavior does not match listings, but our VMS Listings CD is a kind of old.&lt;BR /&gt;&lt;BR /&gt;Running just 8.3, not 8.3H1 ?&lt;BR /&gt;Can you try under H1?&lt;BR /&gt;Supposedly the OpenVMS team is working on an easy access test system similar to the old testdrive some time sone.&lt;BR /&gt;&lt;BR /&gt;( I might know how to get you 8.3H1 Crtl listings. Send Email. )&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Hein van den Heuvel ( at gmail dot com )&lt;BR /&gt;</description>
      <pubDate>Thu, 29 Apr 2010 23:09:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237429#M41532</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2010-04-29T23:09:48Z</dc:date>
    </item>
    <item>
      <title>Re: Writing zero bytes to a socket</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237430#M41533</link>
      <description>Hi Boris,&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt; But I appreciate your reply, I'm sure you want to help. I assume, you are&lt;BR /&gt;&amp;gt;&amp;gt; not far from the current CRTL developers, or at least work for the same&lt;BR /&gt;&amp;gt;&amp;gt; company. Can you alert them to this thread, please? If my assumption is&lt;BR /&gt;&amp;gt;&amp;gt; wrong, I apologize.&lt;BR /&gt;Good guess. Smart indeed.&lt;BR /&gt;Yes, I will talk to the CRTL team and forward this query to them.&lt;BR /&gt;I am not sure how loaded they are currently with other work items and cannot&lt;BR /&gt;guarantee a response but will try my best to get their opinion on this.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt; I still remember the days when treating formal and informal problem reports&lt;BR /&gt;&amp;gt;&amp;gt; equally was one of my objectives. The ultimate goal was quality of the&lt;BR /&gt;&amp;gt;&amp;gt; product.&lt;BR /&gt;Thats right. Same with me.&lt;BR /&gt;I am interested mainly on XFC (VMS data cache) and to some extent on XQP&lt;BR /&gt;(VMS metadata cache) as well. I do monitor discussions on XFC and XQP very&lt;BR /&gt;closely. Any suggestions or problems in these areas i do make a note of it&lt;BR /&gt;for performance improvement and/or fixing.&lt;BR /&gt;&lt;BR /&gt;Every bug has its day. So better fix it when you know about it cause if you&lt;BR /&gt;dont fix it then someday the bug will eventually make its way through the&lt;BR /&gt;official path!.&lt;BR /&gt;&lt;BR /&gt;Hein,&lt;BR /&gt;&amp;gt;&amp;gt; Yes, the team is trying. Murali is there often. Other contribute.&lt;BR /&gt;Right. I do read various questions posted here and try to help as much as&lt;BR /&gt;possible. Not only that, reading various solutions/suggestions in this forum&lt;BR /&gt;is very interesting/informative indeed. Thanks to all the experts around.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Murali</description>
      <pubDate>Fri, 30 Apr 2010 03:18:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237430#M41533</guid>
      <dc:creator>P Muralidhar Kini</dc:creator>
      <dc:date>2010-04-30T03:18:48Z</dc:date>
    </item>
    <item>
      <title>Re: Writing zero bytes to a socket</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237431#M41534</link>
      <description>Hi Boris,&lt;BR /&gt; &lt;BR /&gt;Thnaks for finding this. Write returning one byte as written; when asked to write zero bytes is a bug in CRTL. We will add this to our internal list of items to be worked on. If you need an immediate fix, please log a formal report through HP customer support.&lt;BR /&gt; &lt;BR /&gt;Thanks,&lt;BR /&gt;OpenVMS CRTL Engineering</description>
      <pubDate>Fri, 30 Apr 2010 11:04:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237431#M41534</guid>
      <dc:creator>Murali C</dc:creator>
      <dc:date>2010-04-30T11:04:25Z</dc:date>
    </item>
    <item>
      <title>Re: Writing zero bytes to a socket</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237432#M41535</link>
      <description>Gotta love a happy ending!&lt;BR /&gt;&lt;BR /&gt;Hein.</description>
      <pubDate>Fri, 30 Apr 2010 11:09:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237432#M41535</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2010-04-30T11:09:54Z</dc:date>
    </item>
    <item>
      <title>Re: Writing zero bytes to a socket</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237433#M41536</link>
      <description>Apologies for the delayed reply.&lt;BR /&gt;&lt;BR /&gt;Murali C wrote:&lt;BR /&gt;---------------&lt;BR /&gt;&amp;gt; If you need an immediate fix, please log a formal report through HP customer support.&lt;BR /&gt;&lt;BR /&gt;Thanks for the offer! We do not need a special image with the fix, we worked around the problem.&lt;BR /&gt;&lt;BR /&gt;Still, if you can post here the CRTL ECO with the fix or VMS release incorporating the fix, whichever comes first, it will be appreciated.&lt;BR /&gt;&lt;BR /&gt;Hein wrote:&lt;BR /&gt;-----------&lt;BR /&gt;&amp;gt; Gotta love a happy ending!&lt;BR /&gt;&lt;BR /&gt;Well said! :-) And thanks for the offer also. I'll drop you email.&lt;BR /&gt;&lt;BR /&gt;Thanks for all the replies. I'm closing this thread.&lt;BR /&gt;&lt;BR /&gt;-Boris&lt;BR /&gt;</description>
      <pubDate>Fri, 30 Apr 2010 19:13:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237433#M41536</guid>
      <dc:creator>WW304289</dc:creator>
      <dc:date>2010-04-30T19:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: Writing zero bytes to a socket</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237434#M41537</link>
      <description>&lt;!--!*#--&gt;The CRTL will fix the problem. We implemented a workaround and don't need an immediate fix.</description>
      <pubDate>Fri, 30 Apr 2010 19:16:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237434#M41537</guid>
      <dc:creator>WW304289</dc:creator>
      <dc:date>2010-04-30T19:16:19Z</dc:date>
    </item>
    <item>
      <title>Re: Writing zero bytes to a socket</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237435#M41538</link>
      <description>Following ACRTL ECO kits released on Jan-2011 contains fix for the reported problem.&lt;BR /&gt;VMS83I_ACRTL-V0900&lt;BR /&gt;VMS83A_ACRTL-V0700&lt;BR /&gt;VMS831H1I_ACRTL-V0500&lt;BR /&gt;</description>
      <pubDate>Wed, 20 Apr 2011 11:04:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/writing-zero-bytes-to-a-socket/m-p/5237435#M41538</guid>
      <dc:creator>Murali C</dc:creator>
      <dc:date>2011-04-20T11:04:20Z</dc:date>
    </item>
  </channel>
</rss>

