2008-05-19 09:37:09 +04:00
|
|
|
/* $OpenBSD: channels.h,v 1.91 2008/05/09 04:55:56 djm Exp $ */
|
2002-03-05 04:53:02 +03:00
|
|
|
|
2000-09-16 06:29:08 +04:00
|
|
|
/*
|
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
|
|
|
*
|
|
|
|
* As far as I am concerned, the code I have written for this software
|
|
|
|
* can be used freely for any purpose. Any derived versions of this
|
|
|
|
* software must be clearly marked as such, and if the derived work is
|
|
|
|
* incompatible with the protocol description in the RFC file, it must be
|
|
|
|
* called by a name other than "ssh" or "Secure Shell".
|
|
|
|
*/
|
|
|
|
/*
|
2002-01-22 15:29:03 +03:00
|
|
|
* Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
|
2000-09-16 06:29:08 +04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE 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.
|
|
|
|
*/
|
1999-10-27 07:42:43 +04:00
|
|
|
|
2001-06-09 04:41:05 +04:00
|
|
|
#ifndef CHANNEL_H
|
|
|
|
#define CHANNEL_H
|
1999-10-27 07:42:43 +04:00
|
|
|
|
|
|
|
/* Definitions for channel types. */
|
1999-11-25 03:54:57 +03:00
|
|
|
#define SSH_CHANNEL_X11_LISTENER 1 /* Listening for inet X11 conn. */
|
1999-11-24 16:26:21 +03:00
|
|
|
#define SSH_CHANNEL_PORT_LISTENER 2 /* Listening on a port. */
|
|
|
|
#define SSH_CHANNEL_OPENING 3 /* waiting for confirmation */
|
|
|
|
#define SSH_CHANNEL_OPEN 4 /* normal open two-way channel */
|
1999-11-25 03:54:57 +03:00
|
|
|
#define SSH_CHANNEL_CLOSED 5 /* waiting for close confirmation */
|
2000-04-01 05:09:21 +04:00
|
|
|
#define SSH_CHANNEL_AUTH_SOCKET 6 /* authentication socket */
|
|
|
|
#define SSH_CHANNEL_X11_OPEN 7 /* reading first X11 packet */
|
|
|
|
#define SSH_CHANNEL_INPUT_DRAINING 8 /* sending remaining data to conn */
|
|
|
|
#define SSH_CHANNEL_OUTPUT_DRAINING 9 /* sending remaining data to app */
|
|
|
|
#define SSH_CHANNEL_LARVAL 10 /* larval session */
|
2000-11-13 14:57:25 +03:00
|
|
|
#define SSH_CHANNEL_RPORT_LISTENER 11 /* Listening to a R-style port */
|
2000-12-06 04:42:49 +03:00
|
|
|
#define SSH_CHANNEL_CONNECTING 12
|
2001-04-08 22:30:26 +04:00
|
|
|
#define SSH_CHANNEL_DYNAMIC 13
|
2001-06-06 00:52:50 +04:00
|
|
|
#define SSH_CHANNEL_ZOMBIE 14 /* Almost dead. */
|
|
|
|
#define SSH_CHANNEL_MAX_TYPE 15
|
1999-10-27 07:42:43 +04:00
|
|
|
|
2001-11-12 03:04:54 +03:00
|
|
|
#define SSH_CHANNEL_PATH_LEN 256
|
2001-05-05 08:09:47 +04:00
|
|
|
|
2000-08-23 04:46:23 +04:00
|
|
|
struct Channel;
|
|
|
|
typedef struct Channel Channel;
|
|
|
|
|
2001-07-04 08:02:36 +04:00
|
|
|
typedef void channel_callback_fn(int, void *);
|
2005-12-31 08:22:32 +03:00
|
|
|
typedef int channel_infilter_fn(struct Channel *, char *, int);
|
|
|
|
typedef u_char *channel_outfilter_fn(struct Channel *, u_char **, u_int *);
|
1999-10-27 07:42:43 +04:00
|
|
|
|
2008-05-19 09:05:07 +04:00
|
|
|
/* Channel success/failure callbacks */
|
|
|
|
typedef void channel_confirm_cb(int, struct Channel *, void *);
|
|
|
|
typedef void channel_confirm_abandon_cb(struct Channel *, void *);
|
|
|
|
struct channel_confirm {
|
|
|
|
TAILQ_ENTRY(channel_confirm) entry;
|
|
|
|
channel_confirm_cb *cb;
|
|
|
|
channel_confirm_abandon_cb *abandon_cb;
|
|
|
|
void *ctx;
|
|
|
|
};
|
|
|
|
TAILQ_HEAD(channel_confirms, channel_confirm);
|
|
|
|
|
2008-05-19 09:37:09 +04:00
|
|
|
/* Context for non-blocking connects */
|
|
|
|
struct channel_connect {
|
|
|
|
char *host;
|
|
|
|
int port;
|
|
|
|
struct addrinfo *ai, *aitop;
|
|
|
|
};
|
|
|
|
|
2000-08-23 04:46:23 +04:00
|
|
|
struct Channel {
|
1999-11-24 16:26:21 +03:00
|
|
|
int type; /* channel type/state */
|
|
|
|
int self; /* my own channel identifier */
|
|
|
|
int remote_id; /* channel identifier for remote peer */
|
2002-01-22 15:27:11 +03:00
|
|
|
u_int istate; /* input from channel (state of receive half) */
|
|
|
|
u_int ostate; /* output to channel (state of transmit half) */
|
2000-04-04 08:38:59 +04:00
|
|
|
int flags; /* close sent/rcvd */
|
2000-04-01 05:09:21 +04:00
|
|
|
int rfd; /* read fd */
|
|
|
|
int wfd; /* write fd */
|
|
|
|
int efd; /* extended fd */
|
|
|
|
int sock; /* sock fd */
|
2004-06-15 04:34:08 +04:00
|
|
|
int ctl_fd; /* control fd (client sharing) */
|
2001-02-16 04:34:57 +03:00
|
|
|
int isatty; /* rfd is a tty */
|
2002-07-22 19:28:53 +04:00
|
|
|
int wfd_isatty; /* wfd is a tty */
|
2004-11-05 12:35:44 +03:00
|
|
|
int client_tty; /* (client) TTY has been requested */
|
2001-10-10 09:03:58 +04:00
|
|
|
int force_drain; /* force close on iEOF */
|
|
|
|
int delayed; /* fdset hack */
|
1999-11-24 16:26:21 +03:00
|
|
|
Buffer input; /* data read from socket, to be sent over
|
|
|
|
* encrypted connection */
|
|
|
|
Buffer output; /* data received over encrypted connection for
|
|
|
|
* send on socket */
|
2000-04-01 05:09:21 +04:00
|
|
|
Buffer extended;
|
2001-05-05 08:09:47 +04:00
|
|
|
char path[SSH_CHANNEL_PATH_LEN];
|
|
|
|
/* path for unix domain sockets, or host name for forwards */
|
1999-11-24 16:26:21 +03:00
|
|
|
int listening_port; /* port being listened for forwards */
|
|
|
|
int host_port; /* remote port to connect for forwards */
|
|
|
|
char *remote_name; /* remote hostname */
|
2000-04-01 05:09:21 +04:00
|
|
|
|
2002-06-26 03:17:36 +04:00
|
|
|
u_int remote_window;
|
|
|
|
u_int remote_maxpacket;
|
|
|
|
u_int local_window;
|
|
|
|
u_int local_window_max;
|
|
|
|
u_int local_consumed;
|
|
|
|
u_int local_maxpacket;
|
2000-04-01 05:09:21 +04:00
|
|
|
int extended_usage;
|
2001-12-21 06:58:35 +03:00
|
|
|
int single_connection;
|
2000-04-01 05:09:21 +04:00
|
|
|
|
|
|
|
char *ctype; /* type */
|
|
|
|
|
- Remove references to SSLeay.
- Big OpenBSD CVS update
- markus@cvs.openbsd.org
[clientloop.c]
- typo
[session.c]
- update proctitle on pty alloc/dealloc, e.g. w/ windows client
[session.c]
- update proctitle for proto 1, too
[channels.h nchan.c serverloop.c session.c sshd.c]
- use c-style comments
- deraadt@cvs.openbsd.org
[scp.c]
- more atomicio
- markus@cvs.openbsd.org
[channels.c]
- set O_NONBLOCK
[ssh.1]
- update AUTHOR
[readconf.c ssh-keygen.c ssh.h]
- default DSA key file ~/.ssh/id_dsa
[clientloop.c]
- typo, rm verbose debug
- deraadt@cvs.openbsd.org
[ssh-keygen.1]
- document DSA use of ssh-keygen
[sshd.8]
- a start at describing what i understand of the DSA side
[ssh-keygen.1]
- document -X and -x
[ssh-keygen.c]
- simplify usage
- markus@cvs.openbsd.org
[sshd.8]
- there is no rhosts_dsa
[ssh-keygen.1]
- document -y, update -X,-x
[nchan.c]
- fix close for non-open ssh1 channels
[servconf.c servconf.h ssh.h sshd.8 sshd.c ]
- s/DsaKey/HostDSAKey/, document option
[sshconnect2.c]
- respect number_of_password_prompts
[channels.c channels.h servconf.c servconf.h session.c sshd.8]
- GatewayPorts for sshd, ok deraadt@
[ssh-add.1 ssh-agent.1 ssh.1]
- more doc on: DSA, id_dsa, known_hosts2, authorized_keys2
[ssh.1]
- more info on proto 2
[sshd.8]
- sync AUTHOR w/ ssh.1
[key.c key.h sshconnect.c]
- print key type when talking about host keys
[packet.c]
- clear padding in ssh2
[dsa.c key.c radix.c ssh.h sshconnect1.c uuencode.c uuencode.h]
- replace broken uuencode w/ libc b64_ntop
[auth2.c]
- log failure before sending the reply
[key.c radix.c uuencode.c]
- remote trailing comments before calling __b64_pton
[auth2.c readconf.c readconf.h servconf.c servconf.h ssh.1]
[sshconnect2.c sshd.8]
- add DSAAuthetication option to ssh/sshd, document SSH2 in sshd.8
- Bring in b64_ntop and b64_pton from OpenBSD libc (bsd-base64.[ch])
2000-05-07 06:03:14 +04:00
|
|
|
/* callback */
|
2008-05-19 09:05:07 +04:00
|
|
|
channel_callback_fn *open_confirm;
|
|
|
|
void *open_confirm_ctx;
|
2005-11-05 06:52:50 +03:00
|
|
|
channel_callback_fn *detach_user;
|
|
|
|
int detach_close;
|
2008-05-19 09:05:07 +04:00
|
|
|
struct channel_confirms status_confirms;
|
2000-08-23 04:46:23 +04:00
|
|
|
|
|
|
|
/* filter */
|
2005-12-31 08:22:32 +03:00
|
|
|
channel_infilter_fn *input_filter;
|
|
|
|
channel_outfilter_fn *output_filter;
|
2005-12-13 11:29:02 +03:00
|
|
|
|
2008-05-19 09:37:09 +04:00
|
|
|
/* keep boundaries */
|
|
|
|
int datagram;
|
|
|
|
|
|
|
|
/* non-blocking connect */
|
|
|
|
struct channel_connect connect_ctx;
|
2000-08-23 04:46:23 +04:00
|
|
|
};
|
2000-04-01 05:09:21 +04:00
|
|
|
|
|
|
|
#define CHAN_EXTENDED_IGNORE 0
|
|
|
|
#define CHAN_EXTENDED_READ 1
|
|
|
|
#define CHAN_EXTENDED_WRITE 2
|
|
|
|
|
2000-09-16 06:29:08 +04:00
|
|
|
/* default window/packet sizes for tcp/x11-fwd-channel */
|
2002-02-19 07:20:57 +03:00
|
|
|
#define CHAN_SES_PACKET_DEFAULT (32*1024)
|
2007-06-12 17:38:53 +04:00
|
|
|
#define CHAN_SES_WINDOW_DEFAULT (64*CHAN_SES_PACKET_DEFAULT)
|
2002-02-19 07:20:57 +03:00
|
|
|
#define CHAN_TCP_PACKET_DEFAULT (32*1024)
|
2007-06-12 17:38:53 +04:00
|
|
|
#define CHAN_TCP_WINDOW_DEFAULT (64*CHAN_TCP_PACKET_DEFAULT)
|
2002-02-19 07:20:57 +03:00
|
|
|
#define CHAN_X11_PACKET_DEFAULT (16*1024)
|
|
|
|
#define CHAN_X11_WINDOW_DEFAULT (4*CHAN_X11_PACKET_DEFAULT)
|
2000-09-16 06:29:08 +04:00
|
|
|
|
2001-06-09 04:41:05 +04:00
|
|
|
/* possible input states */
|
2002-01-22 15:27:11 +03:00
|
|
|
#define CHAN_INPUT_OPEN 0
|
|
|
|
#define CHAN_INPUT_WAIT_DRAIN 1
|
|
|
|
#define CHAN_INPUT_WAIT_OCLOSE 2
|
|
|
|
#define CHAN_INPUT_CLOSED 3
|
2000-09-16 06:29:08 +04:00
|
|
|
|
2001-06-09 04:41:05 +04:00
|
|
|
/* possible output states */
|
2002-01-22 15:27:11 +03:00
|
|
|
#define CHAN_OUTPUT_OPEN 0
|
|
|
|
#define CHAN_OUTPUT_WAIT_DRAIN 1
|
|
|
|
#define CHAN_OUTPUT_WAIT_IEOF 2
|
|
|
|
#define CHAN_OUTPUT_CLOSED 3
|
2001-06-09 04:41:05 +04:00
|
|
|
|
|
|
|
#define CHAN_CLOSE_SENT 0x01
|
|
|
|
#define CHAN_CLOSE_RCVD 0x02
|
2002-03-26 06:26:24 +03:00
|
|
|
#define CHAN_EOF_SENT 0x04
|
|
|
|
#define CHAN_EOF_RCVD 0x08
|
|
|
|
|
2005-12-31 08:22:32 +03:00
|
|
|
#define CHAN_RBUF 16*1024
|
|
|
|
|
2002-03-26 06:26:24 +03:00
|
|
|
/* check whether 'efd' is still in use */
|
|
|
|
#define CHANNEL_EFD_INPUT_ACTIVE(c) \
|
|
|
|
(compat20 && c->extended_usage == CHAN_EXTENDED_READ && \
|
|
|
|
(c->efd != -1 || \
|
|
|
|
buffer_len(&c->extended) > 0))
|
|
|
|
#define CHANNEL_EFD_OUTPUT_ACTIVE(c) \
|
|
|
|
(compat20 && c->extended_usage == CHAN_EXTENDED_WRITE && \
|
2005-07-14 11:05:51 +04:00
|
|
|
c->efd != -1 && (!(c->flags & (CHAN_EOF_RCVD|CHAN_CLOSE_RCVD)) || \
|
2002-03-26 06:26:24 +03:00
|
|
|
buffer_len(&c->extended) > 0))
|
2001-06-09 04:41:05 +04:00
|
|
|
|
|
|
|
/* channel management */
|
|
|
|
|
2005-12-13 11:33:57 +03:00
|
|
|
Channel *channel_by_id(int);
|
2001-07-04 08:02:36 +04:00
|
|
|
Channel *channel_lookup(int);
|
2002-06-26 03:17:36 +04:00
|
|
|
Channel *channel_new(char *, int, int, int, int, u_int, u_int, int, char *, int);
|
2002-02-19 07:20:57 +03:00
|
|
|
void channel_set_fds(int, int, int, int, int, int, u_int);
|
2001-07-04 09:26:06 +04:00
|
|
|
void channel_free(Channel *);
|
|
|
|
void channel_free_all(void);
|
|
|
|
void channel_stop_listening(void);
|
2001-07-04 08:46:56 +04:00
|
|
|
|
|
|
|
void channel_send_open(int);
|
|
|
|
void channel_request_start(int, char *, int);
|
2005-11-05 06:52:50 +03:00
|
|
|
void channel_register_cleanup(int, channel_callback_fn *, int);
|
2008-05-19 09:05:07 +04:00
|
|
|
void channel_register_open_confirm(int, channel_callback_fn *, void *);
|
|
|
|
void channel_register_filter(int, channel_infilter_fn *,
|
|
|
|
channel_outfilter_fn *);
|
|
|
|
void channel_register_status_confirm(int, channel_confirm_cb *,
|
|
|
|
channel_confirm_abandon_cb *, void *);
|
2001-07-04 08:46:56 +04:00
|
|
|
void channel_cancel_cleanup(int);
|
2001-07-18 20:01:46 +04:00
|
|
|
int channel_close_fd(int *);
|
2004-06-15 04:34:08 +04:00
|
|
|
void channel_send_window_changes(void);
|
2000-04-01 05:09:21 +04:00
|
|
|
|
2001-06-09 04:41:05 +04:00
|
|
|
/* protocol handler */
|
2000-04-01 05:09:21 +04:00
|
|
|
|
2002-01-22 15:17:30 +03:00
|
|
|
void channel_input_close(int, u_int32_t, void *);
|
|
|
|
void channel_input_close_confirmation(int, u_int32_t, void *);
|
|
|
|
void channel_input_data(int, u_int32_t, void *);
|
|
|
|
void channel_input_extended_data(int, u_int32_t, void *);
|
|
|
|
void channel_input_ieof(int, u_int32_t, void *);
|
|
|
|
void channel_input_oclose(int, u_int32_t, void *);
|
|
|
|
void channel_input_open_confirmation(int, u_int32_t, void *);
|
|
|
|
void channel_input_open_failure(int, u_int32_t, void *);
|
|
|
|
void channel_input_port_open(int, u_int32_t, void *);
|
|
|
|
void channel_input_window_adjust(int, u_int32_t, void *);
|
2008-05-19 09:05:07 +04:00
|
|
|
void channel_input_status_confirm(int, u_int32_t, void *);
|
2000-04-01 05:09:21 +04:00
|
|
|
|
2001-06-09 04:41:05 +04:00
|
|
|
/* file descriptor handling (read/write) */
|
2000-04-01 05:09:21 +04:00
|
|
|
|
2004-08-13 15:18:00 +04:00
|
|
|
void channel_prepare_select(fd_set **, fd_set **, int *, u_int*, int);
|
2001-07-04 08:46:56 +04:00
|
|
|
void channel_after_select(fd_set *, fd_set *);
|
|
|
|
void channel_output_poll(void);
|
2000-04-01 05:09:21 +04:00
|
|
|
|
2001-07-04 08:46:56 +04:00
|
|
|
int channel_not_very_much_buffered_data(void);
|
|
|
|
void channel_close_all(void);
|
|
|
|
int channel_still_open(void);
|
|
|
|
char *channel_open_message(void);
|
|
|
|
int channel_find_open(void);
|
2000-04-01 05:09:21 +04:00
|
|
|
|
2001-10-03 21:34:59 +04:00
|
|
|
/* tcp forwarding */
|
|
|
|
void channel_set_af(int af);
|
2001-07-04 08:46:56 +04:00
|
|
|
void channel_permit_all_opens(void);
|
|
|
|
void channel_add_permitted_opens(char *, int);
|
2006-07-24 08:08:13 +04:00
|
|
|
int channel_add_adm_permitted_opens(char *, int);
|
2001-07-04 08:46:56 +04:00
|
|
|
void channel_clear_permitted_opens(void);
|
2006-07-24 08:04:00 +04:00
|
|
|
void channel_clear_adm_permitted_opens(void);
|
2006-07-12 16:17:10 +04:00
|
|
|
int channel_input_port_forward_request(int, int);
|
2008-05-19 09:37:09 +04:00
|
|
|
Channel *channel_connect_to(const char *, u_short, char *, char *);
|
|
|
|
Channel *channel_connect_by_listen_address(u_short, char *, char *);
|
2006-07-12 16:17:10 +04:00
|
|
|
int channel_request_remote_forwarding(const char *, u_short,
|
2005-03-01 13:24:33 +03:00
|
|
|
const char *, u_short);
|
|
|
|
int channel_setup_local_fwd_listener(const char *, u_short,
|
|
|
|
const char *, u_short, int);
|
|
|
|
void channel_request_rforward_cancel(const char *host, u_short port);
|
2002-01-22 15:29:22 +03:00
|
|
|
int channel_setup_remote_fwd_listener(const char *, u_short, int);
|
2004-05-24 04:18:05 +04:00
|
|
|
int channel_cancel_rport_listener(const char *, u_short);
|
2000-04-01 05:09:21 +04:00
|
|
|
|
2001-06-09 04:41:05 +04:00
|
|
|
/* x11 forwarding */
|
2000-04-01 05:09:21 +04:00
|
|
|
|
2001-07-04 08:46:56 +04:00
|
|
|
int x11_connect_display(void);
|
2005-07-17 11:19:24 +04:00
|
|
|
int x11_create_display_inet(int, int, int, u_int *, int **);
|
2002-01-22 15:17:30 +03:00
|
|
|
void x11_input_open(int, u_int32_t, void *);
|
2005-06-17 06:54:33 +04:00
|
|
|
void x11_request_forwarding_with_spoofing(int, const char *, const char *,
|
2008-05-19 09:37:09 +04:00
|
|
|
const char *);
|
2002-01-22 15:17:30 +03:00
|
|
|
void deny_input_open(int, u_int32_t, void *);
|
2000-04-01 05:09:21 +04:00
|
|
|
|
2001-06-09 04:41:05 +04:00
|
|
|
/* agent forwarding */
|
2000-04-01 05:09:21 +04:00
|
|
|
|
2001-07-04 08:46:56 +04:00
|
|
|
void auth_request_forwarding(void);
|
2000-04-01 05:09:21 +04:00
|
|
|
|
2001-06-09 04:41:05 +04:00
|
|
|
/* channel close */
|
2000-04-04 08:38:59 +04:00
|
|
|
|
2001-10-12 05:35:04 +04:00
|
|
|
int chan_is_dead(Channel *, int);
|
2001-07-04 08:46:56 +04:00
|
|
|
void chan_mark_dead(Channel *);
|
|
|
|
|
2002-01-22 15:28:45 +03:00
|
|
|
/* channel events */
|
2001-06-09 04:41:05 +04:00
|
|
|
|
2002-01-22 15:28:45 +03:00
|
|
|
void chan_rcvd_oclose(Channel *);
|
|
|
|
void chan_read_failed(Channel *);
|
|
|
|
void chan_ibuf_empty(Channel *);
|
2001-06-09 04:41:05 +04:00
|
|
|
|
2002-01-22 15:28:45 +03:00
|
|
|
void chan_rcvd_ieof(Channel *);
|
|
|
|
void chan_write_failed(Channel *);
|
|
|
|
void chan_obuf_empty(Channel *);
|
2001-06-09 04:41:05 +04:00
|
|
|
|
1999-10-27 07:42:43 +04:00
|
|
|
#endif
|