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