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

Annotation of src/usr.bin/rdist/config-data.h, Revision 1.5

1.5     ! millert     1: /*     $OpenBSD: config-data.h,v 1.4 1998/06/26 21:21:02 millert Exp $ */
1.4       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.
                     16:  * 3. All advertising materials mentioning features or use of this software
                     17:  *    must display the following acknowledgement:
                     18:  *     This product includes software developed by the University of
                     19:  *     California, Berkeley and its contributors.
                     20:  * 4. Neither the name of the University nor the names of its contributors
                     21:  *    may be used to endorse or promote products derived from this software
                     22:  *    without specific prior written permission.
                     23:  *
                     24:  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
                     25:  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     26:  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     27:  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     28:  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     29:  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     30:  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     31:  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     32:  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     33:  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     34:  * SUCH DAMAGE.
                     35:  */
                     36:
                     37: /*
1.5     ! millert    38:  * $From: config-data.h,v 1.1.1.2 1996/02/15 21:52:02 christos Exp $
1.1       dm         39:  * @(#)configdata.h
                     40:  */
                     41:
                     42: #ifndef __configdata_h__
                     43: #define __configdata_h__
                     44:
                     45: /*
                     46:  * Configuration data
                     47:  */
                     48:
                     49: /*
                     50:  * Define the read and write values for the file descriptor array
                     51:  * used by pipe().
                     52:  */
                     53: #define PIPE_READ              0
                     54: #define PIPE_WRITE             1
                     55:
                     56: /*
                     57:  * Directory information
                     58:  */
                     59: #if    DIR_TYPE == DIR_DIRECT
                     60: #include       <sys/dir.h>
                     61: typedef        struct direct           DIRENTRY;
                     62: #define        D_NAMLEN(p)             ((p)->d_namlen)
                     63: #endif /* DIR_DIRECT */
                     64:
                     65: #if    DIR_TYPE == DIR_DIRENT
                     66: #include       <dirent.h>
                     67: typedef        struct dirent           DIRENTRY;
                     68: #define        D_NAMLEN(p)             (strlen((p)->d_name))
                     69: #endif /* DIR_DIRENT */
                     70:
                     71: /*
                     72:  * Set a default buffering type.
                     73:  */
                     74: #if    !defined(SETBUF_TYPE)
                     75: #define        SETBUF_TYPE             SETBUF_SETLINEBUF
                     76: #endif /* SETBUF_TYPE */
                     77:
                     78: /*
                     79:  * Set a default get socket pair type.
                     80:  */
                     81: #if    !defined(SOCKPAIR_TYPE)
                     82: #define        SOCKPAIR_TYPE           SOCKPAIR_SOCKETPAIR
                     83: #endif /* SOCKPAIR_TYPE */
                     84:
                     85: /*
                     86:  * Set default write(2) return and amount types.
                     87:  */
                     88: #if    !defined(WRITE_RETURN_T)
                     89: #define                WRITE_RETURN_T          int     /* What write() returns */
                     90: #endif /* WRITE_RETURN_T */
                     91: #if    !defined(WRITE_AMT_T)
                     92: #define                WRITE_AMT_T             int     /* Amount to write */
                     93: #endif /* WRITE_AMT_T */
                     94:
                     95: #endif /* __configdata_h__ */