mirror of
https://github.com/bstansell/conserver.git
synced 2025-02-22 17:32:35 +00:00
Imported from conserver-8.1.10.tar.gz
This commit is contained in:
parent
faad858599
commit
4ce124e121
6
CHANGES
6
CHANGES
@ -1,6 +1,10 @@
|
|||||||
CHANGES
|
CHANGES
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
version 8.1.10 (Sep 21, 2004):
|
||||||
|
- fix "forwarding level too deep" issue with '^Ec;' - reported by Han
|
||||||
|
Pilmeyer <han.pilmeyer@hp.com>
|
||||||
|
|
||||||
version 8.1.9 (Jul 14, 2004):
|
version 8.1.9 (Jul 14, 2004):
|
||||||
- fixed bug processing access lists when duplicates exist in the
|
- fixed bug processing access lists when duplicates exist in the
|
||||||
list - reported by Phil Dibowitz <phil@usc.edu>
|
list - reported by Phil Dibowitz <phil@usc.edu>
|
||||||
@ -769,5 +773,5 @@ before version 6.05:
|
|||||||
and enhancements of various types were applied.
|
and enhancements of various types were applied.
|
||||||
|
|
||||||
#
|
#
|
||||||
# $Id: CHANGES,v 1.192 2004/07/14 18:08:28 bryan Exp $
|
# $Id: CHANGES,v 1.193 2004/09/21 23:45:20 bryan Exp $
|
||||||
#
|
#
|
||||||
|
5
TODO
5
TODO
@ -97,6 +97,9 @@ Bryan Stansell
|
|||||||
- netgroup support? : Nikolaos Papavassiliou
|
- netgroup support? : Nikolaos Papavassiliou
|
||||||
<Nikolaos.Papavassiliou@reuters.com>
|
<Nikolaos.Papavassiliou@reuters.com>
|
||||||
|
|
||||||
|
- send sequences to console on client connect? (to repaint screen,
|
||||||
|
for example) : John Cagle <jcagle@gmail.com>
|
||||||
|
|
||||||
#
|
#
|
||||||
# $Id: TODO,v 1.50 2004/05/28 01:58:43 bryan Exp $
|
# $Id: TODO,v 1.51 2004/09/21 23:45:30 bryan Exp $
|
||||||
#
|
#
|
||||||
|
26
config.guess
vendored
26
config.guess
vendored
@ -3,7 +3,7 @@
|
|||||||
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
|
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
|
||||||
# 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
|
# 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
|
||||||
|
|
||||||
timestamp='2004-06-24'
|
timestamp='2004-09-07'
|
||||||
|
|
||||||
# This file is free software; you can redistribute it and/or modify it
|
# This file is free software; you can redistribute it and/or modify it
|
||||||
# under the terms of the GNU General Public License as published by
|
# under the terms of the GNU General Public License as published by
|
||||||
@ -203,9 +203,6 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
|
|||||||
amiga:OpenBSD:*:*)
|
amiga:OpenBSD:*:*)
|
||||||
echo m68k-unknown-openbsd${UNAME_RELEASE}
|
echo m68k-unknown-openbsd${UNAME_RELEASE}
|
||||||
exit 0 ;;
|
exit 0 ;;
|
||||||
arc:OpenBSD:*:*)
|
|
||||||
echo mipsel-unknown-openbsd${UNAME_RELEASE}
|
|
||||||
exit 0 ;;
|
|
||||||
cats:OpenBSD:*:*)
|
cats:OpenBSD:*:*)
|
||||||
echo arm-unknown-openbsd${UNAME_RELEASE}
|
echo arm-unknown-openbsd${UNAME_RELEASE}
|
||||||
exit 0 ;;
|
exit 0 ;;
|
||||||
@ -230,18 +227,12 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
|
|||||||
mvmeppc:OpenBSD:*:*)
|
mvmeppc:OpenBSD:*:*)
|
||||||
echo powerpc-unknown-openbsd${UNAME_RELEASE}
|
echo powerpc-unknown-openbsd${UNAME_RELEASE}
|
||||||
exit 0 ;;
|
exit 0 ;;
|
||||||
pmax:OpenBSD:*:*)
|
|
||||||
echo mipsel-unknown-openbsd${UNAME_RELEASE}
|
|
||||||
exit 0 ;;
|
|
||||||
sgi:OpenBSD:*:*)
|
sgi:OpenBSD:*:*)
|
||||||
echo mipseb-unknown-openbsd${UNAME_RELEASE}
|
echo mips64-unknown-openbsd${UNAME_RELEASE}
|
||||||
exit 0 ;;
|
exit 0 ;;
|
||||||
sun3:OpenBSD:*:*)
|
sun3:OpenBSD:*:*)
|
||||||
echo m68k-unknown-openbsd${UNAME_RELEASE}
|
echo m68k-unknown-openbsd${UNAME_RELEASE}
|
||||||
exit 0 ;;
|
exit 0 ;;
|
||||||
wgrisc:OpenBSD:*:*)
|
|
||||||
echo mipsel-unknown-openbsd${UNAME_RELEASE}
|
|
||||||
exit 0 ;;
|
|
||||||
*:OpenBSD:*:*)
|
*:OpenBSD:*:*)
|
||||||
echo ${UNAME_MACHINE}-unknown-openbsd${UNAME_RELEASE}
|
echo ${UNAME_MACHINE}-unknown-openbsd${UNAME_RELEASE}
|
||||||
exit 0 ;;
|
exit 0 ;;
|
||||||
@ -833,6 +824,12 @@ EOF
|
|||||||
cris:Linux:*:*)
|
cris:Linux:*:*)
|
||||||
echo cris-axis-linux-gnu
|
echo cris-axis-linux-gnu
|
||||||
exit 0 ;;
|
exit 0 ;;
|
||||||
|
crisv32:Linux:*:*)
|
||||||
|
echo crisv32-axis-linux-gnu
|
||||||
|
exit 0 ;;
|
||||||
|
frv:Linux:*:*)
|
||||||
|
echo frv-unknown-linux-gnu
|
||||||
|
exit 0 ;;
|
||||||
ia64:Linux:*:*)
|
ia64:Linux:*:*)
|
||||||
echo ${UNAME_MACHINE}-unknown-linux-gnu
|
echo ${UNAME_MACHINE}-unknown-linux-gnu
|
||||||
exit 0 ;;
|
exit 0 ;;
|
||||||
@ -1081,7 +1078,7 @@ EOF
|
|||||||
exit 0 ;;
|
exit 0 ;;
|
||||||
M68*:*:R3V[5678]*:*)
|
M68*:*:R3V[5678]*:*)
|
||||||
test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;;
|
test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;;
|
||||||
3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0)
|
3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0)
|
||||||
OS_REL=''
|
OS_REL=''
|
||||||
test -r /etc/.relid \
|
test -r /etc/.relid \
|
||||||
&& OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
|
&& OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
|
||||||
@ -1179,9 +1176,10 @@ EOF
|
|||||||
echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}
|
echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}
|
||||||
exit 0 ;;
|
exit 0 ;;
|
||||||
*:Darwin:*:*)
|
*:Darwin:*:*)
|
||||||
case `uname -p` in
|
UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
|
||||||
|
case $UNAME_PROCESSOR in
|
||||||
*86) UNAME_PROCESSOR=i686 ;;
|
*86) UNAME_PROCESSOR=i686 ;;
|
||||||
powerpc) UNAME_PROCESSOR=powerpc ;;
|
unknown) UNAME_PROCESSOR=powerpc ;;
|
||||||
esac
|
esac
|
||||||
echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
|
echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
|
||||||
exit 0 ;;
|
exit 0 ;;
|
||||||
|
5
config.sub
vendored
5
config.sub
vendored
@ -3,7 +3,7 @@
|
|||||||
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
|
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
|
||||||
# 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
|
# 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
|
||||||
|
|
||||||
timestamp='2004-06-24'
|
timestamp='2004-08-29'
|
||||||
|
|
||||||
# This file is (in principle) common to ALL GNU software.
|
# This file is (in principle) common to ALL GNU software.
|
||||||
# The presence of a machine in this file suggests that SOME GNU software
|
# The presence of a machine in this file suggests that SOME GNU software
|
||||||
@ -457,6 +457,9 @@ case $basic_machine in
|
|||||||
crds | unos)
|
crds | unos)
|
||||||
basic_machine=m68k-crds
|
basic_machine=m68k-crds
|
||||||
;;
|
;;
|
||||||
|
crisv32 | crisv32-* | etraxfs*)
|
||||||
|
basic_machine=crisv32-axis
|
||||||
|
;;
|
||||||
cris | cris-* | etrax*)
|
cris | cris-* | etrax*)
|
||||||
basic_machine=cris-axis
|
basic_machine=cris-axis
|
||||||
;;
|
;;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
.\" $Id: conserver.cf.man,v 1.68 2004/07/14 05:28:42 bryan Exp $
|
.\" $Id: conserver.cf.man,v 1.68 2004/07/14 05:28:42 bryan Exp $
|
||||||
.TH CONSERVER.CF 5 "2004/07/14" "conserver-8.1.9" "conserver"
|
.TH CONSERVER.CF 5 "2004/07/14" "conserver-8.1.10" "conserver"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
conserver.cf \- console configuration file for
|
conserver.cf \- console configuration file for
|
||||||
.BR conserver (8)
|
.BR conserver (8)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
.\" $Id: conserver.passwd.man,v 1.10 2004/01/08 16:12:33 bryan Exp $
|
.\" $Id: conserver.passwd.man,v 1.10 2004/01/08 16:12:33 bryan Exp $
|
||||||
.TH CONSERVER.PASSWD 5 "2004/01/08" "conserver-8.1.9" "conserver"
|
.TH CONSERVER.PASSWD 5 "2004/01/08" "conserver-8.1.10" "conserver"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
conserver.passwd \- user access information for
|
conserver.passwd \- user access information for
|
||||||
.BR conserver (8)
|
.BR conserver (8)
|
||||||
|
@ -36,6 +36,7 @@
|
|||||||
<TD colspan="2" align="center">Please pick your closest
|
<TD colspan="2" align="center">Please pick your closest
|
||||||
mirror: <A href=
|
mirror: <A href=
|
||||||
"http://planetmirror.com/pub/conserver/">Australia</A>
|
"http://planetmirror.com/pub/conserver/">Australia</A>
|
||||||
|
<A href="http://conserver.rinet.ru/">Russia</A>
|
||||||
<A href="http://conserver.syr.edu/">US-East</A>
|
<A href="http://conserver.syr.edu/">US-East</A>
|
||||||
<A href="http://www.conserver.com/">US-West
|
<A href="http://www.conserver.com/">US-West
|
||||||
(Primary)</A><BR>
|
(Primary)</A><BR>
|
||||||
@ -182,11 +183,11 @@
|
|||||||
|
|
||||||
<H3>Downloading</H3>
|
<H3>Downloading</H3>
|
||||||
|
|
||||||
<P>The current version, released on Jul 14, 2004, is <A
|
<P>The current version, released on Sep 21, 2004, is <A
|
||||||
href="8.1.9.tar.gz">8.1.9.tar.gz</A>. You can get it via
|
href="8.1.10.tar.gz">8.1.10.tar.gz</A>. You can get it
|
||||||
<A href=
|
via <A href=
|
||||||
"ftp://ftp.conserver.com/conserver/8.1.9.tar.gz">FTP</A>
|
"ftp://ftp.conserver.com/conserver/8.1.10.tar.gz">FTP</A>
|
||||||
or <A href="8.1.9.tar.gz">HTTP</A>. See the <A href=
|
or <A href="8.1.10.tar.gz">HTTP</A>. See the <A href=
|
||||||
"CHANGES">CHANGES</A> file for information on the latest
|
"CHANGES">CHANGES</A> file for information on the latest
|
||||||
updates.</P>
|
updates.</P>
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" @(#)conserver.8 01/06/91 OSU CIS; Thomas A. Fine
|
.\" @(#)conserver.8 01/06/91 OSU CIS; Thomas A. Fine
|
||||||
.\" $Id: conserver.man,v 1.50 2004/06/08 16:19:46 bryan Exp $
|
.\" $Id: conserver.man,v 1.50 2004/06/08 16:19:46 bryan Exp $
|
||||||
.TH CONSERVER 8 "2004/06/08" "conserver-8.1.9" "conserver"
|
.TH CONSERVER 8 "2004/06/08" "conserver-8.1.10" "conserver"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
conserver \- console server daemon
|
conserver \- console server daemon
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* $Id: version.h,v 1.65 2004/07/14 05:28:42 bryan Exp $
|
* $Id: version.h,v 1.66 2004/09/21 23:47:14 bryan Exp $
|
||||||
*
|
*
|
||||||
* Copyright conserver.com, 2000
|
* Copyright conserver.com, 2000
|
||||||
*
|
*
|
||||||
@ -14,4 +14,4 @@
|
|||||||
@(#) Copyright 2000 conserver.com.\n\
|
@(#) Copyright 2000 conserver.com.\n\
|
||||||
All rights reserved.\n"
|
All rights reserved.\n"
|
||||||
|
|
||||||
#define THIS_VERSION "conserver.com version 8.1.9"
|
#define THIS_VERSION "conserver.com version 8.1.10"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* $Id: console.c,v 5.167 2004/05/25 23:03:25 bryan Exp $
|
* $Id: console.c,v 5.168 2004/09/21 23:45:53 bryan Exp $
|
||||||
*
|
*
|
||||||
* Copyright conserver.com, 2000
|
* Copyright conserver.com, 2000
|
||||||
*
|
*
|
||||||
@ -1622,19 +1622,21 @@ DoCmds(master, pports, cmdi)
|
|||||||
|
|
||||||
/* if we're working on finding a console */
|
/* if we're working on finding a console */
|
||||||
if (cmds[cmdi][0] == 'c') {
|
if (cmds[cmdi][0] == 'c') {
|
||||||
|
static int limit = 0;
|
||||||
/* did we get a redirect? */
|
/* did we get a redirect? */
|
||||||
if (result[0] == '@' || (result[0] >= '0' && result[0] <= '9')) {
|
if (result[0] == '@' || (result[0] >= '0' && result[0] <= '9')) {
|
||||||
static int limit = 0;
|
|
||||||
if (limit++ > 10) {
|
if (limit++ > 10) {
|
||||||
Error("forwarding level too deep!");
|
Error("forwarding level too deep!");
|
||||||
Bye(EX_SOFTWARE);
|
Bye(EX_SOFTWARE);
|
||||||
}
|
}
|
||||||
} else if (result[0] != '[') { /* did we not get a connection? */
|
} else if (result[0] != '[') { /* did we not get a connection? */
|
||||||
|
limit = 0;
|
||||||
FilePrint(cfstdout, FLAGFALSE, "%s: %s", serverName,
|
FilePrint(cfstdout, FLAGFALSE, "%s: %s", serverName,
|
||||||
result);
|
result);
|
||||||
FileClose(&pcf);
|
FileClose(&pcf);
|
||||||
continue;
|
continue;
|
||||||
} else {
|
} else {
|
||||||
|
limit = 0;
|
||||||
CallUp(pcf, server, cmdarg, cmds[0], result);
|
CallUp(pcf, server, cmdarg, cmds[0], result);
|
||||||
if (pcf != gotoConsole)
|
if (pcf != gotoConsole)
|
||||||
FileClose(&pcf);
|
FileClose(&pcf);
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
.\" $Id: console.man,v 1.55 2004/07/14 05:28:42 bryan Exp $
|
.\" $Id: console.man,v 1.55 2004/07/14 05:28:42 bryan Exp $
|
||||||
.TH CONSOLE 1 "2004/07/14" "conserver-8.1.9" "conserver"
|
.TH CONSOLE 1 "2004/07/14" "conserver-8.1.10" "conserver"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
console \- console server client program
|
console \- console server client program
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
%define pkg conserver
|
%define pkg conserver
|
||||||
%define ver 8.1.9
|
%define ver 8.1.10
|
||||||
|
|
||||||
# define the name of the machine on which the main conserver
|
# define the name of the machine on which the main conserver
|
||||||
# daemon will be running if you don't want to use the default
|
# daemon will be running if you don't want to use the default
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
PKG="conserver"
|
PKG="conserver"
|
||||||
NAME="Console server and client"
|
NAME="Console server and client"
|
||||||
CATEGORY="system"
|
CATEGORY="system"
|
||||||
VERSION="8.1.9"
|
VERSION="8.1.10"
|
||||||
DESC="Console server and client"
|
DESC="Console server and client"
|
||||||
CLASSES=none
|
CLASSES=none
|
||||||
ARCH=sparc
|
ARCH=sparc
|
||||||
|
Loading…
x
Reference in New Issue
Block a user