home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / vmsnet / networks / tcpip / ucx / 79 < prev    next >
Encoding:
Text File  |  1992-08-21  |  2.4 KB  |  60 lines

  1. Newsgroups: vmsnet.networks.tcp-ip.ucx
  2. Path: sparky!uunet!zaphod.mps.ohio-state.edu!sdd.hp.com!usc!snorkelwacker.mit.edu!ira.uka.de!rz.uni-karlsruhe.de!usenet
  3. From: ONASCH@IRAV17.ira.uka.de (Bernd Onasch)
  4. Subject: Re: Announcing ruptime/rwho/rwhod for VMS with UCX TCP/IP
  5. In-Reply-To: terry@spcvxb.spc.edu's message of 21 Aug 92 05: 48:35 GMT
  6. Message-ID: <1992Aug21.133201.14921@rz.uni-karlsruhe.de>
  7. Sender: usenet@rz.uni-karlsruhe.de (USENET News System)
  8. Organization: University of Karlsruhe (FRG)
  9. References:  <1992Aug21.014836.3663@spcvxb.spc.edu>
  10. Date: Fri, 21 Aug 1992 13:32:01 GMT
  11. X-News-Reader: VMS NEWS 1.24
  12. Lines: 46
  13.  
  14. In <1992Aug21.014836.3663@spcvxb.spc.edu> terry@spcvxb.spc.edu writes:
  15.  
  16. #   The package is available from ftp.spc.edu (192.107.46.27) in the [.ucx]
  17. # directory as rwho.bck. It joins the existing ports of "new" talk, ping, and
  18. # whois already there.
  19. #   A readme file is included which contains installation instructions.
  20.  
  21. First - thanks a lot for another nice tool.
  22.  
  23. Second - bug fix :-)
  24.  
  25. In ruptime.c and in rwho.c are checks for file existencies that seem to
  26. be handled different by some VMS versions.
  27.  
  28. OLD:
  29.  
  30.     if (status == RMS$_FNF) return((count <= len) ? 0 : -1);
  31.     if (status == RMS$_NMF) return(count);
  32.     /* Some other status.  Return 0. */
  33.     return(0);
  34.  
  35. NEW:
  36.  
  37.     if (status == RMS$_FNF) return((count <= len) ? 0 : -1);
  38.     if (status == RMS$_NMF) return(count);
  39.     if (status == RMS$_NORMAL) return(count);
  40.     /* Some other status.  Return 0. */
  41.     return(0);
  42.  
  43. otherwise the daemon works fine - and everyone except yourself is able to use
  44. the protocol...
  45.  
  46. Greetings, Bernd Onasch
  47.  
  48. PS: Anyone with a tool to return local/remote port on device name BGxxx: ?
  49.  
  50. ,-----------------------------------------------------------------------------.
  51. |Bernd Onasch                       _,---._  One half of mine is human [Spock]|
  52. |Informatik Rechnerabteilung [IRA] /       \__,--.I'll never understand humans|
  53. |University of Karlsruhe     __,--/         \     \ No, I'm from Iowa - I only|
  54. |Germany (FRG)              /    |  Uranus   |    / work in outer space [Kirk]|
  55. |   ONASCH@ira.uka.de       \     \     ____/----'  Hello computer ?!? [Scott]|
  56. |   PSI%45050365300::ONASCH  `_____\---'   / There shall be no peace...as long|
  57. |   CCC_ONAS@DULRUU51.BITNET        `-___-' as Kirk lives [Klingon Ambassador]|
  58. `-----------------------------------------------------------------------------'
  59.