1998-01-29 00:49:32 +00:00
|
|
|
/*
|
|
|
|
* Written by Eivind Eklund <eivind@yes.no>
|
|
|
|
* for Yes Interactive
|
|
|
|
*
|
|
|
|
* Copyright (C) 1998, Yes Interactive. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in any form is permitted. Redistribution in
|
|
|
|
* source form should include the above copyright and this set of
|
|
|
|
* conditions, because large sections american law seems to have been
|
|
|
|
* created by a bunch of jerks on drugs that are now illegal, forcing
|
|
|
|
* me to include this copyright-stuff instead of placing this in the
|
|
|
|
* public domain. The name of of 'Yes Interactive' or 'Eivind Eklund'
|
|
|
|
* may not be used to endorse or promote products derived from this
|
|
|
|
* software without specific prior written permission.
|
|
|
|
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
*
|
1998-05-01 19:22:23 +00:00
|
|
|
* $Id: physical.h,v 1.1.2.22 1998/04/20 00:20:41 brian Exp $
|
1998-01-29 00:49:32 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1998-04-07 00:54:26 +00:00
|
|
|
struct bundle;
|
|
|
|
|
1998-01-29 00:49:32 +00:00
|
|
|
struct physical {
|
1998-01-30 19:46:07 +00:00
|
|
|
struct link link;
|
1998-02-09 19:21:11 +00:00
|
|
|
struct descriptor desc;
|
1998-04-10 13:19:23 +00:00
|
|
|
int type; /* What sort of link are we ? */
|
1998-02-02 19:33:40 +00:00
|
|
|
struct async async; /* Our async state */
|
1998-02-18 19:35:59 +00:00
|
|
|
struct hdlc hdlc; /* Our hdlc state */
|
1998-01-30 19:46:07 +00:00
|
|
|
int fd; /* File descriptor for this device */
|
|
|
|
int mbits; /* Current DCD status */
|
|
|
|
unsigned dev_is_modem : 1; /* Is the device an actual modem?
|
|
|
|
Faked for sync devices, though...
|
|
|
|
(Possibly this should be
|
|
|
|
dev_is_not_tcp?) XXX-ML */
|
1998-01-29 00:49:32 +00:00
|
|
|
|
1998-03-10 03:06:07 +00:00
|
|
|
struct mbuf *out; /* mbuf that suffered a short write */
|
1998-01-30 19:46:07 +00:00
|
|
|
int connect_count;
|
1998-03-13 00:44:51 +00:00
|
|
|
struct datalink *dl; /* my owner */
|
1998-01-29 00:49:32 +00:00
|
|
|
|
1998-03-06 00:34:47 +00:00
|
|
|
struct {
|
|
|
|
char full[40];
|
|
|
|
char *base;
|
|
|
|
} name;
|
|
|
|
|
1998-03-10 03:06:07 +00:00
|
|
|
unsigned Utmp : 1; /* Are we in utmp ? */
|
|
|
|
|
1998-01-30 19:46:07 +00:00
|
|
|
/* XXX-ML Most of the below is device specific, and probably do not
|
1998-01-29 00:49:32 +00:00
|
|
|
belong in the generic physical struct. It comes from modem.c. */
|
1998-02-17 19:29:03 +00:00
|
|
|
|
|
|
|
struct {
|
|
|
|
unsigned rts_cts : 1; /* Is rts/cts enabled? */
|
1998-04-07 00:54:26 +00:00
|
|
|
unsigned parity; /* What parity is enabled? (TTY flags) */
|
|
|
|
unsigned speed; /* Modem speed */
|
1998-03-06 00:34:47 +00:00
|
|
|
char devlist[LINE_LEN]; /* Comma-separated list of devices */
|
1998-02-17 19:29:03 +00:00
|
|
|
} cfg;
|
|
|
|
|
1998-01-30 19:46:07 +00:00
|
|
|
struct termios ios; /* To be able to reset from raw mode */
|
1998-04-20 00:20:41 +00:00
|
|
|
|
|
|
|
struct pppTimer Timer; /* CD checks */
|
1998-01-29 00:49:32 +00:00
|
|
|
};
|
|
|
|
|
1998-02-09 19:21:11 +00:00
|
|
|
#define field2phys(fp, name) \
|
|
|
|
((struct physical *)((char *)fp - (int)(&((struct physical *)0)->name)))
|
|
|
|
|
|
|
|
#define physical2link(p) (&(p)->link)
|
|
|
|
#define link2physical(l) \
|
|
|
|
((l)->type == PHYSICAL_LINK ? field2phys(l, link) : NULL)
|
|
|
|
|
|
|
|
#define physical2descriptor(p) (&(p)->desc)
|
|
|
|
#define descriptor2physical(d) \
|
|
|
|
((d)->type == PHYSICAL_DESCRIPTOR ? field2phys(d, desc) : NULL)
|
1998-01-30 19:46:07 +00:00
|
|
|
|
1998-01-29 00:49:32 +00:00
|
|
|
int Physical_GetFD(struct physical *);
|
|
|
|
int Physical_IsATTY(struct physical *);
|
|
|
|
int Physical_IsSync(struct physical *);
|
|
|
|
const char *Physical_GetDevice(struct physical *);
|
|
|
|
|
|
|
|
|
1998-04-10 23:51:33 +00:00
|
|
|
void Physical_SetDeviceList(struct physical *, int, const char *const *);
|
1998-01-29 00:49:32 +00:00
|
|
|
int /* Was this speed OK? */
|
1998-04-07 00:54:26 +00:00
|
|
|
Physical_SetSpeed(struct physical *, int);
|
1998-01-29 00:49:32 +00:00
|
|
|
|
|
|
|
/* XXX-ML I'm not certain this is the right way to handle this, but we
|
|
|
|
can solve that later. */
|
1998-04-07 00:54:26 +00:00
|
|
|
void Physical_SetSync(struct physical *);
|
1998-01-29 00:49:32 +00:00
|
|
|
|
1998-01-30 19:46:07 +00:00
|
|
|
int /* Can this be set? (Might not be a relevant attribute for this
|
|
|
|
device, for instance) */
|
1998-04-07 00:54:26 +00:00
|
|
|
Physical_SetRtsCts(struct physical *, int);
|
1998-01-29 00:49:32 +00:00
|
|
|
|
1998-04-07 00:54:26 +00:00
|
|
|
ssize_t Physical_Read(struct physical *, void *, size_t);
|
|
|
|
ssize_t Physical_Write(struct physical *, const void *, size_t);
|
1998-02-13 05:10:26 +00:00
|
|
|
int Physical_UpdateSet(struct descriptor *, fd_set *, fd_set *, fd_set *,
|
|
|
|
int *, int);
|
1998-03-20 19:48:28 +00:00
|
|
|
int Physical_IsSet(struct descriptor *, const fd_set *);
|
1998-02-23 00:38:44 +00:00
|
|
|
void Physical_DescriptorWrite(struct descriptor *, struct bundle *,
|
|
|
|
const fd_set *);
|
1998-03-10 03:06:07 +00:00
|
|
|
|
|
|
|
void Physical_Login(struct physical *, const char *);
|
|
|
|
void Physical_Logout(struct physical *);
|