/*
 ===========================================================================
 =                                                                         =
 =  (C) Copyright 1991 The Trustees of Indiana University                  =
 =                                                                         =
 =  Permission to use, copy, modify, and distribute this program for       =
 =  any purpose and without fee is hereby granted, provided that this      =
 =  copyright and permission notice appear on all copies and supporting    =
 =  documentation, the name of Indiana University not be used in           =
 =  advertising or publicity pertaining to distribution of the program     =
 =  without specific prior permission, and notice be given in supporting   =
 =  documentation that copying and distribution is by permission of        =
 =  Indiana University.                                                    =
 =                                                                         =
 =  Indiana University makes no representations about the suitability of   =
 =  this software for any purpose. It is provided "as is" without express  =
 =  or implied warranty.                                                   =
 =                                                                         =
 ===========================================================================
 =                                                                         =
 = File:                                                                   =
 =   IUPOP3_GLOBAL.H                                                      =
 =                                                                         =
 = Authors:                                                                =
 =   Jacob Levanon & Larry Hughes                                          =
 =   Indiana University                                                    =
 =   University Computing Services, Network Applications                   =
 =                                                                         =
 = Credits:                                                                =
 =   This software is based on the Post Office Protocol version 3,         =
 =   as implemented by the University of California at Berkeley.           =
 =                                                                         =
 ===========================================================================
*/

#ifdef Main
  int  total_threads        = 0;
  int  current_threads      = 0;
  int  maximum_threads      = 0;
  int  too_many_threads     = 0;
  int  retrieved_messages   = 0;
  int  from_parse_errors    = 0;
  int  normal_disconnects   = 0;
  int  abnormal_disconnects = 0;
  int  timeouts             = 0;
  int  shutdown             = FALSE;
  char start_time[22];
#else
  extern int  total_threads;
  extern int  current_threads;
  extern int  maximum_threads;
  extern int  too_many_threads;
  extern int  retrieved_messages;
  extern int  from_parse_errors;
  extern int  normal_disconnects;
  extern int  abnormal_disconnects;
  extern int  timeouts;
  extern int  shutdown;
  extern char start_time[22];
#endif
