home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 2 / 2375 / netwk.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-28  |  547 b   |  23 lines

  1. /* 
  2.  *   Copyright (c) 1989 Oki Electric Industry Co., Ltd.
  3.  *
  4.  *   This file is part of vtalk.
  5.  *
  6.  *   Permission to use, copy, modify and distribute this program without
  7.  *   fee is grtanted,  provided that  the above  copyright notice appear
  8.  *   in all copies.
  9.  *
  10.  */
  11.  
  12. #include "vtalk.h"
  13.  
  14. struct daemon_msg {
  15.     int flag;            /* caller ? receiver flag */
  16.     int status;          /* is caller exist */
  17.     struct sockaddr_in sin;
  18.     char      caller_host_name[NAME_LEN];
  19.     char      caller_name[NAME_LEN]; 
  20.     char      receiver_name[NAME_LEN];
  21.  
  22. };
  23.