<?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: TCPIP buffer problem? in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304029#M2671</link>
    <description>jan,&lt;BR /&gt;&lt;BR /&gt;&lt;QUOTE&gt;&lt;BR /&gt;That number gives me the creepes.&lt;BR /&gt;&lt;/QUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;Me too.&lt;BR /&gt;In my program, there ARE counters but these are all 32 bit.&lt;BR /&gt;I have thought of a limitation in the program itself: the buffer in the program itself is 20000 bytes, but since I DO read 32767 bytes, I don't think that is the problem either. There could be a problem with the BG-device - 32767 is a known limit in RMS. Does that give some hint? (I'm  interested in "how" and "why" of this, but formeost - at the moment, is how to overcome this)&lt;BR /&gt;&lt;BR /&gt;Willem&lt;BR /&gt;</description>
    <pubDate>Mon, 14 Jun 2004 09:24:52 GMT</pubDate>
    <dc:creator>Willem Grooters</dc:creator>
    <dc:date>2004-06-14T09:24:52Z</dc:date>
    <item>
      <title>TCPIP buffer problem?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304023#M2665</link>
      <description>I have a small 'problem' in TCPIP-programming:&lt;BR /&gt;&lt;BR /&gt;A program on one machine sends out a request to another program using TCPIP and waits for a reply. That second program is started , proecesses the request and replies, using the same port, in one message of (estimated) 40K. After 32K has been read, the first program finds no more bytes available (number of bytes read seems to be 0).&lt;BR /&gt;Both programs use socket programming.&lt;BR /&gt;&lt;BR /&gt;I checked the code of the requesting program, and apart from the first recv, the socket is set to 'blocking' to the program will wait for an answer. When a first recv is done, the socket is set to non-blocking, so no data would indeed mean 'Done'. &lt;BR /&gt;But it's not - there should be about 8K still to be retrieved...&lt;BR /&gt;The replying program sets the socket to 'non-blocking', before reading is (which is no problem since a message will exist). When data is sent, the program closes the connection and exits.&lt;BR /&gt;&lt;BR /&gt;What could be done - preferably in the second program or in TCPIP parameters - to get the data over 32K insize the program?&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Jun 2004 05:19:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304023#M2665</guid>
      <dc:creator>Willem Grooters</dc:creator>
      <dc:date>2004-06-14T05:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: TCPIP buffer problem?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304024#M2666</link>
      <description>Willem,&lt;BR /&gt;yes receive buffer is 32K.&lt;BR /&gt;You can change TCP system parameters with sysconfig.&lt;BR /&gt;Read this page for datils&lt;BR /&gt;&lt;A href="http://h71000.www7.hp.com/doc/732final/6631/6631pro_004.html#subsys_sec" target="_blank"&gt;http://h71000.www7.hp.com/doc/732final/6631/6631pro_004.html#subsys_sec&lt;/A&gt;&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Jun 2004 05:44:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304024#M2666</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2004-06-14T05:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: TCPIP buffer problem?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304025#M2667</link>
      <description>Antonio,&lt;BR /&gt;&lt;QUOTE&gt;&lt;BR /&gt;yes receive buffer is 32K.&lt;BR /&gt;&lt;/QUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;I thought so. But this is a TCP connection, so I would expect (as is the specification) that if a message is bigger, the system will ASSURE complete and error free transmission.&lt;BR /&gt;But for some reaon, everyting in excess of 32K is lost&lt;BR /&gt;&lt;BR /&gt;&lt;QUOTE&gt;&lt;BR /&gt;You can change TCP system parameters with sysconfig.&lt;BR /&gt;&lt;/QUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;I know (thouigh thanks for the link, makes it easy to look up) but that would apply to ALL connections, wouldn't it? Since there are quite a lot of them, and for most (even ths one) even 32K is far to much, I would prefer to use another way (programmed, eventually) for those cases where a larger buffer is explicitly or eventually required.&lt;BR /&gt;&lt;BR /&gt;Willem</description>
      <pubDate>Mon, 14 Jun 2004 05:56:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304025#M2667</guid>
      <dc:creator>Willem Grooters</dc:creator>
      <dc:date>2004-06-14T05:56:38Z</dc:date>
    </item>
    <item>
      <title>Re: TCPIP buffer problem?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304026#M2668</link>
      <description>Willem,&lt;BR /&gt;&lt;BR /&gt;Is it possible that the latter part of the data is being lost as a side-effect of the socket being closed? You could check any status from the recv, or use tcptrace to monitor the netowork traffic and ensure data is being sent (or not). A simplistic solution might be to modifiy the second program to add a small delay before closing the connection (assuming of course closing the socket is causing a problem).&lt;BR /&gt;&lt;BR /&gt;cheers &lt;BR /&gt;&lt;BR /&gt;Brian</description>
      <pubDate>Mon, 14 Jun 2004 06:31:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304026#M2668</guid>
      <dc:creator>Brian Reiter</dc:creator>
      <dc:date>2004-06-14T06:31:43Z</dc:date>
    </item>
    <item>
      <title>Re: TCPIP buffer problem?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304027#M2669</link>
      <description>Antonio,&lt;BR /&gt;&lt;BR /&gt;I checked the link you specified - I only can change the max size of any socketbuffer. I did  check this on my (7.3-1) system and it's 100K (although the documentation specified a 128K default, it's that 100K).&lt;BR /&gt;&lt;BR /&gt;Brian,&lt;BR /&gt;&lt;QUOTE&gt;&lt;BR /&gt;Is it possible that the latter part of the data is being lost as a side-effect of the socket being closed? &lt;BR /&gt;&lt;/QUOTE&gt;&lt;BR /&gt;I guess it is, but AFAIK that would be a violation of 'the standard' where TCP will ensure proper, complete and 'in order' receeipt of a message. It fails on the second issue....&lt;BR /&gt;&lt;BR /&gt;&lt;QUOTE&gt;&lt;BR /&gt;You could check any status from the recv,&lt;BR /&gt;&lt;/QUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;It does. The program reads data in chunks of of 5000 bytes (or a few less) (why, I didn't figure out yet, I think the sending program is still busiy sending) until 32767 bytes are read - the last accepted chunk is &amp;lt; 3000 bytes. The next read gives me 0 bytes...&lt;BR /&gt;&lt;BR /&gt;&lt;QUOTE&gt;&lt;BR /&gt;A simplistic solution might be to modifiy the second program to add a small delay before closing the connection (assuming of course closing the socket is causing a problem).&lt;BR /&gt;&lt;/QUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;Simplistic indeed, since any delay is arbitary and bound to fail some time. I would rather be able to send a message and expect to get a return status from 'send' that tells me everthing has arrived and the socket can safely be closed, or that sending has timed-out. &lt;BR /&gt;&lt;BR /&gt;Willem&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Jun 2004 07:06:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304027#M2669</guid>
      <dc:creator>Willem Grooters</dc:creator>
      <dc:date>2004-06-14T07:06:58Z</dc:date>
    </item>
    <item>
      <title>Re: TCPIP buffer problem?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304028#M2670</link>
      <description>Willem,&lt;BR /&gt;&lt;BR /&gt;&lt;QUOTE&gt;&lt;BR /&gt;until 32767 bytes are read - the last accepted chunk is &amp;lt; 3000 bytes. The next read gives me 0 bytes...&lt;BR /&gt;&lt;/QUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;That number gives me the creepes.&lt;BR /&gt;It is exactly 2^15 -1; sounds VERY much like the max value for a signed word!&lt;BR /&gt;&lt;BR /&gt;Is there somewhere a counter of word size in your program? And if NOT, then, TCPIP engeneering: is there somewhere something like that in YOUR code?&lt;BR /&gt;&lt;BR /&gt;jpe&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Jun 2004 08:45:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304028#M2670</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2004-06-14T08:45:46Z</dc:date>
    </item>
    <item>
      <title>Re: TCPIP buffer problem?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304029#M2671</link>
      <description>jan,&lt;BR /&gt;&lt;BR /&gt;&lt;QUOTE&gt;&lt;BR /&gt;That number gives me the creepes.&lt;BR /&gt;&lt;/QUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;Me too.&lt;BR /&gt;In my program, there ARE counters but these are all 32 bit.&lt;BR /&gt;I have thought of a limitation in the program itself: the buffer in the program itself is 20000 bytes, but since I DO read 32767 bytes, I don't think that is the problem either. There could be a problem with the BG-device - 32767 is a known limit in RMS. Does that give some hint? (I'm  interested in "how" and "why" of this, but formeost - at the moment, is how to overcome this)&lt;BR /&gt;&lt;BR /&gt;Willem&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Jun 2004 09:24:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304029#M2671</guid>
      <dc:creator>Willem Grooters</dc:creator>
      <dc:date>2004-06-14T09:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: TCPIP buffer problem?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304030#M2672</link>
      <description>Willem&lt;BR /&gt;&lt;BR /&gt;We routinely send/receive data exceeding 32K bytes via the BG devices. Only difference is that we use the QIO interface - giving us a 64K limit. Could this be an issue with socket interface?&lt;BR /&gt;&lt;BR /&gt;cheers&lt;BR /&gt;&lt;BR /&gt;Brian</description>
      <pubDate>Tue, 15 Jun 2004 01:55:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304030#M2672</guid>
      <dc:creator>Brian Reiter</dc:creator>
      <dc:date>2004-06-15T01:55:36Z</dc:date>
    </item>
    <item>
      <title>Re: TCPIP buffer problem?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304031#M2673</link>
      <description>Brian,&lt;BR /&gt;&lt;BR /&gt;Rewrite is no option (timescale forbids).&lt;BR /&gt;&lt;BR /&gt;Anyway, I may have found the reason.&lt;BR /&gt;The middleware - started as a service - takes over the socket from INETACP,  sets buffersize (32768) and places it in a non-blocking mode. I also found send is NOT checked for status (I just learned the program has been ported from Unix - and this seems NOT to have changed...) so I have no idea of any errro found (buffer full or so)&lt;BR /&gt;&lt;BR /&gt;I don't have much experience in TCPIP-programming yet, so if anyone could advise me on the next solution:&lt;BR /&gt;&lt;BR /&gt;I could of course increase the buffer size but any size is arbitrary. I will run into the same issue some day....&lt;BR /&gt;So my consideration is as follows:&lt;BR /&gt;Since the program is started by INETACP as a service, there WILL be a message to receive, and I'm certain it's just a few 100 bytes, not 32K, nor will processing occur before the whole message is read. So I don'tsee why I would need to set it NONBLOCKING.&lt;BR /&gt;send will in that case wait if the buffer is full, until there is room for the rest of the message - no matter how long the reply will be.&lt;BR /&gt;&lt;BR /&gt;Is this a right way of thinking, or do I overlook something?&lt;BR /&gt;&lt;BR /&gt;Willem</description>
      <pubDate>Tue, 15 Jun 2004 04:00:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304031#M2673</guid>
      <dc:creator>Willem Grooters</dc:creator>
      <dc:date>2004-06-15T04:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: TCPIP buffer problem?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304032#M2674</link>
      <description>&lt;QUOTE&gt;&lt;BR /&gt; I also found send is NOT checked for status (I just learned the program has been ported from Unix - and this seems NOT to have changed...) so I have no idea of any errro found (buffer full or so)&lt;BR /&gt;&lt;/QUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;That's the reason! The value returned by send() is the number of bytes written, so if you want to write more than 32k bytes, you need to loop through send calls until all of the buffer has been sent!&lt;BR /&gt;&lt;BR /&gt;cu,&lt;BR /&gt;  Martin</description>
      <pubDate>Tue, 15 Jun 2004 04:20:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304032#M2674</guid>
      <dc:creator>Martin Vorlaender</dc:creator>
      <dc:date>2004-06-15T04:20:19Z</dc:date>
    </item>
    <item>
      <title>Re: TCPIP buffer problem?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304033#M2675</link>
      <description>In that case I would _always_ check how many bytes have been sent. And I think you need to have the same logic on the receiving side.&lt;BR /&gt;&lt;BR /&gt;TCP/IP works stream oriented, not 'record oriented'.</description>
      <pubDate>Tue, 15 Jun 2004 04:46:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304033#M2675</guid>
      <dc:creator>Uwe Zessin</dc:creator>
      <dc:date>2004-06-15T04:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: TCPIP buffer problem?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304034#M2676</link>
      <description>To clarify my previous post: *ix socket programming should *always* run along the following lines:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;int rc, sent = 0;&lt;BR /&gt;char *bufptr = buffer;&lt;BR /&gt;&lt;BR /&gt;do {&lt;BR /&gt;  rc = send(socket, bufptr, buffer_len-sent, flags);&lt;BR /&gt;  if (rc &amp;lt; 0) {&lt;BR /&gt;    /* error handling */&lt;BR /&gt;    break;&lt;BR /&gt;  }&lt;BR /&gt;  sent += rc;&lt;BR /&gt;  bufptr += rc;&lt;BR /&gt;while (sent &amp;lt; buffer_len);&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;cu,&lt;BR /&gt;  Martin</description>
      <pubDate>Tue, 15 Jun 2004 05:40:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304034#M2676</guid>
      <dc:creator>Martin Vorlaender</dc:creator>
      <dc:date>2004-06-15T05:40:39Z</dc:date>
    </item>
    <item>
      <title>Re: TCPIP buffer problem?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304035#M2677</link>
      <description>Willem,&lt;BR /&gt;may be a type but you wrote "set buffer 32768"; if you are using a shot int, you have set a negative value!&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Jun 2004 07:12:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304035#M2677</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2004-06-15T07:12:36Z</dc:date>
    </item>
    <item>
      <title>Re: TCPIP buffer problem?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304036#M2678</link>
      <description>Willem,&lt;BR /&gt;typing &lt;BR /&gt;sysconfig -q inet tcp_recvspace&lt;BR /&gt;do see the magic number 32768?&lt;BR /&gt;If I understand this is the receive buffer for TCP/IP.&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Jun 2004 07:50:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304036#M2678</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2004-06-15T07:50:28Z</dc:date>
    </item>
    <item>
      <title>Re: TCPIP buffer problem?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304037#M2679</link>
      <description>Willem,&lt;BR /&gt;&lt;BR /&gt;Following on from Antonios suggestion. IF you're using TCPIP then try upping the send and receive queues.&lt;BR /&gt;&lt;BR /&gt;SET CONFIGURATION PROTOCOL TCP/QUOTA=(send=xxxx,receive=xxxx)&lt;BR /&gt;SET PROTOCOL TCP/QUOTA=(send=xxxx,receive=xxxx&lt;BR /&gt;&lt;BR /&gt;I'm not convinced that this will help with your problem - but its better than the default of 4096 (which still let us deal with large packets). Setting these values to 64100 seemed to give our system better performance.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;cheers&lt;BR /&gt;&lt;BR /&gt;Brian</description>
      <pubDate>Tue, 15 Jun 2004 09:03:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304037#M2679</guid>
      <dc:creator>Brian Reiter</dc:creator>
      <dc:date>2004-06-15T09:03:26Z</dc:date>
    </item>
    <item>
      <title>Re: TCPIP buffer problem?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304038#M2680</link>
      <description>Antonio,&lt;BR /&gt;&lt;BR /&gt;BPS2004A&amp;gt; tcpip sysconfig -q inet tcp_recvspace&lt;BR /&gt;inet:&lt;BR /&gt;tcp_recvspace = 61440&lt;BR /&gt;BPS2004A&amp;gt;&lt;BR /&gt;&lt;BR /&gt;so that's Ok...(weird number, though)&lt;BR /&gt;That's on the system that holds both requestor and replier.&lt;BR /&gt;&lt;BR /&gt;Brian, that answers your suggestion ;-)&lt;BR /&gt;&lt;BR /&gt;I found 32768 as buffersize in the middleware code. As stated, I could increase the value but no doubt I would run into the same problem somewhere in the future. I'm currently waiting for some testdata, and after that I can start adapting the program.&lt;BR /&gt;(Required but mising knowledge: When is data transpoted? 'My' programs reads about 5000 bytes at a time, and the middleware writes straems of about 1700 in size. I don't get it that I seem to run om a limit of 32K - unless the read is actually done at socket close or buffer full...)&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Jun 2004 09:27:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304038#M2680</guid>
      <dc:creator>Willem Grooters</dc:creator>
      <dc:date>2004-06-15T09:27:01Z</dc:date>
    </item>
    <item>
      <title>Re: TCPIP buffer problem?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304039#M2681</link>
      <description>Willem - remember TCP is a stream of bytes not record so writer and reader can write and read in different sizes</description>
      <pubDate>Tue, 15 Jun 2004 09:51:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304039#M2681</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2004-06-15T09:51:02Z</dc:date>
    </item>
    <item>
      <title>Re: TCPIP buffer problem?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304040#M2682</link>
      <description>Well, I got my data (sending &amp;gt;&amp;gt;32K).&lt;BR /&gt;Guess what: I CANNOT REPRODUCE THE PROBLEM on my development machine (that's where the buffersize within TCPIP seems to be big enough). AFAIK my system (7.3-1, TCPIP 5.3) hasn't been tuned.&lt;BR /&gt;I'll ask where it goes wrong on the other site. It might be another setting for TCPIP, quite likely an older VMS environment (7.1, TCPIP 5.0?) with different defaults.&lt;BR /&gt;&lt;BR /&gt;Willem</description>
      <pubDate>Tue, 15 Jun 2004 10:13:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304040#M2682</guid>
      <dc:creator>Willem Grooters</dc:creator>
      <dc:date>2004-06-15T10:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: TCPIP buffer problem?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304041#M2683</link>
      <description>No luck.&lt;BR /&gt;The system that encounters the problem is like my developmentmachine....The only problem is that machine ahs much more users...&lt;BR /&gt;</description>
      <pubDate>Wed, 16 Jun 2004 01:39:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304041#M2683</guid>
      <dc:creator>Willem Grooters</dc:creator>
      <dc:date>2004-06-16T01:39:25Z</dc:date>
    </item>
    <item>
      <title>Re: TCPIP buffer problem?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304042#M2684</link>
      <description>Willem,&lt;BR /&gt;&lt;BR /&gt;"NO luck".&lt;BR /&gt;&lt;BR /&gt;Meaning you cannot reproduce it, or you keep having it?   :-(&lt;BR /&gt;&lt;BR /&gt;Did you do anything that might have somehow changed your devellop system to not reproduce it?&lt;BR /&gt;And yes, your machine name prompt betrays that it will not be looked upon frindly if you shut THAT (or even only its IP) down!.&lt;BR /&gt;&lt;BR /&gt;In _what_ way exactly is it like your development system? VMS &amp;amp; TCPIP versions, ECO's?&lt;BR /&gt;&lt;BR /&gt;There HAVE been various issues with IP, each version a new surprise, but THIS one does not ring a bell (yet).&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;jpe</description>
      <pubDate>Wed, 16 Jun 2004 04:08:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/tcpip-buffer-problem/m-p/3304042#M2684</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2004-06-16T04:08:09Z</dc:date>
    </item>
  </channel>
</rss>

