⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 biz31.c

📁 <B>Digital的Unix操作系统VAX 4.2源码</B>
💻 C
字号:
#ifndef lintstatic	char	*sccsid = "@(#)biz31.c	4.1		7/17/90";#endif lint/************************************************************************ *									* *			Copyright (c) 1983 by				* *		Digital Equipment Corporation, Maynard, MA		* *			All rights reserved.				* *									* *   This software is furnished under a license and may be used and	* *   copied  only  in accordance with the terms of such license and	* *   with the  inclusion  of  the  above  copyright  notice.   This	* *   software  or  any  other copies thereof may not be provided or	* *   otherwise made available to any other person.  No title to and	* *   ownership of the software is hereby transferred.			* *									* *   This software is  derived  from  software  received  from  the	* *   University    of   California,   Berkeley,   and   from   Bell	* *   Laboratories.  Use, duplication, or disclosure is  subject  to	* *   restrictions  under  license  agreements  with  University  of	* *   California and with AT&T.						* *									* *   The information in this software is subject to change  without	* *   notice  and should not be construed as a commitment by Digital	* *   Equipment Corporation.						* *									* *   Digital assumes no responsibility for the use  or  reliability	* *   of its software on equipment which is not supplied by Digital.	* *									* ************************************************************************/#include "tip.h"#define MAXRETRY	3		/* sync up retry count */#define DISCONNECT_CMD	"\21\25\11\24"	/* disconnection string */static	int sigALRM();static	int timeout = 0;static	jmp_buf timeoutbuf;/* * Dial up on a BIZCOMP Model 1031 with either * 	tone dialing (mod = "f") *	pulse dialing (mod = "w") */static intbiz_dialer(num, mod)	char *num, *mod;{	register int connected = 0;	void (*f)();	if (!bizsync(FD)) {		logent(value(HOST), "", "biz", "out of sync");		printf("bizcomp out of sync\n");		delock(uucplock);		exit(0);	}	if (boolean(value(VERBOSE)))		printf("\nstarting call...");	echo("#\rk$\r$\n");			/* disable auto-answer */	echo("$>$.$ #\r");			/* tone/pulse dialing */	echo(mod);	echo("$\r$\n");	echo("$>$.$ #\re$ ");			/* disconnection sequence */	echo(DISCONNECT_CMD);	echo("\r$\n$\r$\n");	echo("$>$.$ #\rr$ ");			/* repeat dial */	echo(num);	echo("\r$\n");	if (boolean(value(VERBOSE)))		printf("ringing...");	/*	 * The reply from the BIZCOMP should be:	 *	`^G NO CONNECTION\r\n^G\r\n'	failure	 *	` CONNECTION\r\n^G'		success	 */	connected = detect(" ");#ifdef ACULOG	if (timeout) {		char line[80];		sprintf(line, "%d second dial timeout",			number(value(DIALTIMEOUT)));		logent(value(HOST), num, "biz", line);	}#endif	if (!connected)		flush(" NO CONNECTION\r\n\07\r\n");	else		flush("CONNECTION\r\n\07");	if (timeout)		biz31_disconnect();	/* insurance */#ifdef ONDELAY	/*	 * At this point, wait for carrier; the ACU told	 * us things were cool now let's see if this	 * really is the case.	 */	if (!connected)		return(0);	/* oops */	ioctl(FD, TIOCCAR);	f = signal(SIGALRM, sigALRM);	if (setjmp(timeoutbuf)) {		ioctl(FD,TIOCNCAR); /* so writes wont hang if carrier never came up*/		printf("\07failed to connect: no carrier\n");		biz31_disconnect();	/* insurance */		signal(SIGALRM, f);		return (0);	}	alarm(40);	/* Larry wants a better number */	ioctl(FD, TIOCWONLINE);	/* suspend, waiting for CD */	alarm(0);	signal(SIGALRM, f);	return(1);#else	return (connected);#endif}biz31w_dialer(num, acu)	char *num, *acu;{	return (biz_dialer(num, "w"));}biz31f_dialer(num, acu)	char *num, *acu;{	return (biz_dialer(num, "f"));}biz31_disconnect(){	write(FD, DISCONNECT_CMD, 4);	sleep(2);	ioctl(FD, TIOCFLUSH);}biz31_abort(){	write(FD, "\33", 1);}static intecho(s)	register char *s;{	char c;	while (c = *s++) switch (c) {	case '$':		read(FD, &c, 1);		s++;		break;	case '#':		c = *s++;		write(FD, &c, 1);		break;	default:		write(FD, &c, 1);		read(FD, &c, 1);	}}static intsigALRM(){	timeout = 1;	longjmp(timeoutbuf, 1);}static intdetect(s)	register char *s;{	char c;	void (*f)();	f = signal(SIGALRM, sigALRM);	timeout = 0;	while (*s) {		if (setjmp(timeoutbuf)) {			ioctl(FD,TIOCNCAR); /* so writes wont hang if carrier never came up*/			printf("\07timeout waiting for reply\n");			biz31_abort();			break;		}		alarm(number(value(DIALTIMEOUT)));		read(FD, &c, 1);		alarm(0);		if (c != *s++)			break;	}	signal(SIGALRM, f);	return (timeout == 0);}static intflush(s)	register char *s;{	char c;	void (*f)();	f = signal(SIGALRM, sigALRM);	while (*s++) {		if (setjmp(timeoutbuf))			break;		alarm(10);		read(FD, &c, 1);		alarm(0);	}	signal(SIGALRM, f);	timeout = 0;			/* guard against disconnection */}/* * This convoluted piece of code attempts to get *  the bizcomp in sync.  If you don't have the capacity or nread *  call there are gory ways to simulate this. */static intbizsync(fd){#ifdef FIOCAPACITY	struct capacity b;#	define chars(b)	((b).cp_nbytes)#	define IOCTL	FIOCAPACITY#endif#ifdef FIONREAD	long b;#	define chars(b)	(b)#	define IOCTL	FIONREAD#endif	register int already = 0;	char buf[10];retry:	if (ioctl(fd, IOCTL, (caddr_t)&b) >= 0 && chars(b) > 0)		ioctl(fd, TIOCFLUSH);	write(fd, "\rp>\r", 4);	sleep(1);	if (ioctl(fd, IOCTL, (caddr_t)&b) >= 0) {		if (chars(b) != 10) {	nono:			if (already > MAXRETRY)				return (0);			write(fd, DISCONNECT_CMD, 4);			sleep(2);			already++;			goto retry;		} else {			read(fd, buf, 10);			if (strncmp(buf, "p >\r\n\r\n>", 8))				goto nono;		}	}	return (1);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -