home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume25 / finger / part01 / remote.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-03  |  876 b   |  34 lines

  1. /*
  2.  * remote.h -- structs for remote user input
  3.  *
  4.  * Copyright (C) 1986, 1990  Philip L. Budne
  5.  *
  6.  * This file is part of "Phil's Finger Program".
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 1, or (at your option)
  11.  * any later version.
  12.  *
  13.  */
  14.  
  15. # define REMOTE_RCSID "$Id: remote.h,v 3.0 90/07/06 13:11:40 budd Rel $"
  16.  
  17. typedef struct rhost {
  18.     char *rh_name;            /* host name */
  19.     struct rhost *rh_next;        /* next host in chain */
  20.     struct ruser *rh_user;        /* pointer to user chain */
  21.     struct ruser *rh_endu;        /* end of user chain */
  22. } RHOST;
  23.  
  24. typedef struct ruser {
  25.     char *ru_name;            /* user name */
  26.     struct ruser *ru_next;        /* next in chain */
  27. } RUSER;
  28.  
  29. /*
  30.  * Local variables:
  31.  * comment-column: 40
  32.  * End:
  33.  */
  34.