[BACK]Return to config.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / rdist

Annotation of src/usr.bin/rdist/config.h, Revision 1.9

1.9     ! tedu        1: /*     $OpenBSD: config.h,v 1.8 2003/06/03 02:56:14 millert Exp $      */
1.6       millert     2:
1.1       dm          3: /*
                      4:  * Copyright (c) 1993 Michael A. Cooper
                      5:  * Copyright (c) 1993 Regents of the University of California.
                      6:  * All rights reserved.
                      7:  *
                      8:  * Redistribution and use in source and binary forms, with or without
                      9:  * modification, are permitted provided that the following conditions
                     10:  * are met:
                     11:  * 1. Redistributions of source code must retain the above copyright
                     12:  *    notice, this list of conditions and the following disclaimer.
                     13:  * 2. Redistributions in binary form must reproduce the above copyright
                     14:  *    notice, this list of conditions and the following disclaimer in the
                     15:  *    documentation and/or other materials provided with the distribution.
1.8       millert    16:  * 3. Neither the name of the University nor the names of its contributors
1.1       dm         17:  *    may be used to endorse or promote products derived from this software
                     18:  *    without specific prior written permission.
                     19:  *
                     20:  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
                     21:  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     22:  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     23:  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     24:  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     25:  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     26:  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     27:  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     28:  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     29:  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     30:  * SUCH DAMAGE.
                     31:  */
                     32:
                     33: /*
1.7       millert    34:  * $From: config.h,v 1.2 1997/01/05 04:23:35 kim Exp $
1.1       dm         35:  * @(#)config.h
                     36:  */
                     37:
                     38: #ifndef __config_h__
                     39: #define __config_h__
                     40:
                     41: /*
                     42:  * Configuration parameters
                     43:  */
                     44:
                     45: #include OS_H
                     46:
                     47: /*
                     48:  * Include system pathname header file.  Usually this is <paths.h>.
1.7       millert    49:  * If your system doesn't have such a file, use "mypaths.h"
1.1       dm         50:  */
                     51: #if    defined(PATHS_H)
                     52: #      include PATHS_H
                     53: #else
1.7       millert    54: #      include "mypaths.h"
1.1       dm         55: #endif
                     56:
                     57: /*
                     58:  * Check to see if file is on a NFS.  If it is, the file is
                     59:  * skipped unless the hostname specified in the Distfile has
                     60:  * a trailing "+".  e.g. "foobar+".  This feature is enabled by
                     61:  * the -N option.  If your system does not support NFS or you don't
                     62:  * want the -N option, undefine this.
                     63:  */
                     64: #define NFS_CHECK
                     65:
                     66: /*
                     67:  * Check to see if file on a Read-Only filesystem.  If it is, no
                     68:  * attempt is made to update the file.  This feature is enabled by
                     69:  * the -O option.
                     70:  */
                     71: #define RO_CHECK
                     72:
                     73: /*
                     74:  * Default value for the maximum number of clients to update at once.
                     75:  * Can be changed with the -M option.
                     76:  */
                     77: #define MAXCHILDREN    4
                     78:
                     79: /*
                     80:  * Response Time Out interval (in seconds).
                     81:  * Should be long enough to allow transfer of large files.
                     82:  * The -t option can be used to override this value.
                     83:  */
                     84: #define RTIMEOUT       900
                     85:
                     86: /*
                     87:  * Define LOG_OPTS to be the syslog/openlog() logging options you
                     88:  * wish to use.  Define to be 0 if you don't want any options.
                     89:  * Define LOG_FACILITY to be the syslog/openlog() facility to log
                     90:  * to.  Both LOG_OPTS and LOG_FACILITY values are defined in <syslog.h>
                     91:  * If you don't have syslog, then undefine both values.
                     92:  */
                     93: #define LOG_OPTS               LOG_PID
                     94: #if    defined(LOG_DAEMON)
                     95: #      define LOG_FACILITY     LOG_DAEMON
                     96: #endif
                     97:
                     98: /*
                     99:  * Syslog levels.  Define these to match the levels you want to log
                    100:  * via syslog().  These are defined in <syslog.h>.  If you don't want
                    101:  * a particuliar level logged _ever_, undefine it.  What is logged is
                    102:  * usually controlled via command line options, so you normally should
                    103:  * not need to undefine these.
                    104:  */
                    105: #define SL_FERROR      LOG_INFO                /* Fatal errors */
                    106: #define SL_NERROR      LOG_INFO                /* Normal errors */
                    107: #define SL_WARNING     LOG_INFO                /* Warnings */
                    108: #define SL_CHANGE      LOG_INFO                /* Things that change */
                    109: #define SL_INFO                LOG_INFO                /* General info */
                    110: #define SL_NOTICE      LOG_NOTICE              /* General notices */
                    111: #define SL_DEBUG       LOG_DEBUG               /* Debugging */
1.5       millert   112:
                    113: /*
                    114:  * Arg types to select(2)
                    115:  */
                    116: #ifndef SELECT_FD_TYPE
                    117: #define SELECT_FD_TYPE fd_set
                    118: #endif
1.1       dm        119:
                    120: #endif /* __config_h__ */