1998-02-09 19:21:11 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1998 Brian Somers <brian@Awfulhak.org>
|
1995-01-31 06:29:58 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
1998-02-09 19:21:11 +00:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
1995-01-31 06:29:58 +00:00
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
1998-02-09 19:21:11 +00:00
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
1995-01-31 06:29:58 +00:00
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1998-06-24 19:33:36 +00:00
|
|
|
* $Id: descriptor.h,v 1.3 1998/05/23 22:24:34 brian Exp $
|
1995-01-31 06:29:58 +00:00
|
|
|
*/
|
|
|
|
|
1998-02-09 19:21:11 +00:00
|
|
|
#define PHYSICAL_DESCRIPTOR (1)
|
1998-02-10 03:23:50 +00:00
|
|
|
#define SERVER_DESCRIPTOR (2)
|
|
|
|
#define PROMPT_DESCRIPTOR (3)
|
1998-02-13 05:10:26 +00:00
|
|
|
#define CHAT_DESCRIPTOR (4)
|
1998-02-16 00:01:12 +00:00
|
|
|
#define DATALINK_DESCRIPTOR (5)
|
1998-03-20 19:48:28 +00:00
|
|
|
#define BUNDLE_DESCRIPTOR (6)
|
1998-04-28 01:25:46 +00:00
|
|
|
#define MPSERVER_DESCRIPTOR (7)
|
1998-02-09 19:21:11 +00:00
|
|
|
|
1998-04-07 00:54:26 +00:00
|
|
|
struct bundle;
|
|
|
|
|
1998-02-09 19:21:11 +00:00
|
|
|
struct descriptor {
|
|
|
|
int type;
|
|
|
|
|
|
|
|
int (*UpdateSet)(struct descriptor *, fd_set *, fd_set *, fd_set *, int *);
|
1998-03-20 19:48:28 +00:00
|
|
|
int (*IsSet)(struct descriptor *, const fd_set *);
|
1998-02-10 03:22:05 +00:00
|
|
|
void (*Read)(struct descriptor *, struct bundle *, const fd_set *);
|
1998-06-24 19:33:36 +00:00
|
|
|
int (*Write)(struct descriptor *, struct bundle *, const fd_set *);
|
1998-02-09 19:21:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define descriptor_UpdateSet(d, r, w, e, n) ((*(d)->UpdateSet)(d, r, w, e, n))
|
|
|
|
#define descriptor_IsSet(d, s) ((*(d)->IsSet)(d, s))
|
1998-02-10 03:22:05 +00:00
|
|
|
#define descriptor_Read(d, b, f) ((*(d)->Read)(d, b, f))
|
1998-02-23 00:38:44 +00:00
|
|
|
#define descriptor_Write(d, b, f) ((*(d)->Write)(d, b, f))
|