亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? faspatch

?? 接收Fax的程序
??
字號:
This is the patch for fas.1) change /usr/include/sys/termio.h 	add following lines (or similar)	in section CONTROL MODES		#define REENABLE 0020000	Use a free number, or an normally unused cmode. I use the coding	for XMT1EN.	add to 		#define TIOC    ('T'<<8)		#define TCGETA  (TIOC|1)		   -""-		#define TCFLSH  (TIOC|7)	the define 		#define TCRTS   (TIOC|9)	2) add a -DSPECIALRTS to the CFLAGS3) use the following diff to change fas.c---------------------- snip --------------------1218,1233d1217< #ifdef SPECIALRTS< 		case TCRTS: /* RTS drop rise call */< 			if(arg3.iarg == 0)< 			  {< 			    fip->mcr &= ~fip->flow.m.hc;< 			    fas_first_outb (fip, MDM_CTL_PORT, fip->mcr);< 			    fip->flow_flags.s &= ~FF_HDX_STARTED;< 			  } < 			else< 			  {< 			    fip->mcr |= fip->flow.m.hc;< 			    fas_first_outb (fip, MDM_CTL_PORT, fip->mcr);< 			    fip->flow_flags.s |= FF_HDX_STARTED;< 			  }< 			break;< #endif		      1769,1776d1752< #if defined (REENABLE)< 				if (!(fip->cflag & REENABLE))< 				  (void) ttyflush (ttyp, FREAD | FWRITE);< 				else {< 				  /* if reenable, set fake carrier */< 				  fip->tty->t_state |= CARR_ON;< 				}< #else1778d1753< #endif--------------------- snip -------------------------Sorry for this inconvenient format, but I don't have a better diff installedyet.END_OF_FILEif test 1351 -ne `wc -c <'FASPATCH'`; then    echo shar: \"'FASPATCH'\" unpacked with wrong size!fi# end of 'FASPATCH'fiif test -f 'Makefile' -a "${1}" != "-c" ; then   echo shar: Will not clobber existing file \"'Makefile'\"elseecho shar: Extracting \"'Makefile'\" \(7081 characters\)sed "s/^X//" >'Makefile' <<'END_OF_FILE'## Makefile for vfax. (c) Uwe C. Schroeder, Germany### (c) 1992 Uwe C. Schroeder, Anwendungssysteme , Augsburg, Germany## # Permission to use, copy, and modify this software and its# documentation for non comercial  purpose is hereby granted # without fee, provided that# the above copyright notice appear in all copies and that both that# copyright notice and this permission notice appear in supporting# documentation, and that the name of Uwe C. Schroeder not be used in# advertising or publicity pertaining to distribution of the software without# specific, written prior permission.  Uwe Schroeder makes no representations# about the suitability of this software for any purpose.  It is provided# "as is" without express or implied warranty.# This software may not be sold or distributed with commercial products# ( this includes distribution "for users convenience" ) without prior# written permission by the author.## UWE SCHROEDER DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO# EVENT SHALL UWE SCHROEDER BE LIABLE FOR ANY SPECIAL, INDIRECT OR# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR# PERFORMANCE OF THIS SOFTWARE.### This is a alpha release, which means, that there are still several# known bugs.## Please report bugs to:##                     usys@phoenix.abg.sub.org## directoriesBINDIR = /usr/local/bin# programsCC=gccCFLAGS= -O -g -DSYSV #-DTEST LDFLAGS= INSTALL = cpADMINS = CAVEAT COPYING PORTING REQUIREMENTS FASPATCH HEADERS= vfax.h version.h patchlevel.hSRCS= debug.c dial.c dir.c fax.c init.c mail.c play.c process.c queue.c \	rcv.c read.c recmsg.c record.c response.c send.c signal.c snd.c \	spooler.c tty.c ttyio.c write.c OBJS= debug.o dial.o dir.o fax.o init.o mail.o play.o process.o queue.o \	rcv.o read.o recmsg.o record.o response.o signal.o snd.o \	tty.o ttyio.o write.o SHAR1 = $(ADMINS) MakefileSHAR2 = $(HEADERS) debug.c dial.c dir.c fax.c init.c mail.c play.c \	process.c queue.c rcv.c read.c SHAR3 = recmsg.c record.c response.c send.c signal.c snd.c \        spooler.c tty.c ttyio.c write.call: vfs vfaxvfs: $(OBJS) spooler.o	$(CC) $(LDFLAGS) -o vfs spooler.o $(OBJS)vfax: $(OBJS) $(SRCS) send.o 	$(CC) $(LDFLAGS) -o vfax send.o queue.o $(OBJS) $(LIBS)# testline program tl: tl.c tl.o $(OBJS)	$(CC) $(LDFLAGS) -o tl tl.o $(OBJS)shar: $(SHAR1) $(SHAR2) $(SHAR3)	shar $(SHAR1) > vfax1o3v1.0.sh	shar $(SHAR2) > vfax2o3v1.0.sh	shar $(SHAR3) > vfax3o3v1.0.shinstall: all	strip vfax	strip vfs	$(INSTALL) vfax $(BINDIR)	$(INSTALL) vfs $(BINDIR)clean:	rm -f *~ core *.o vfs vfaxdepend: $(SRCS) $(HEADERS)	makedepend $(SRCS)# DO NOT DELETE THIS LINE -- make depend depends on it.debug.o: /usr/include/stdio.h /usr/include/varargs.h vfax.h version.hdial.o: /usr/include/stdio.h /usr/include/sys/types.h /usr/include/unistd.hdial.o: vfax.h version.hdir.o: /usr/include/stdio.h /usr/include/sys/types.h /usr/include/fcntl.hdir.o: /usr/include/sys/fcntl.h /usr/include/dirent.hdir.o: /usr/include/sys/dirent.h /usr/include/sys/time.hdir.o: /usr/include/strings.h /usr/include/string.h vfax.h version.hfax.o: /usr/include/stdio.h /usr/include/sys/types.h /usr/include/fcntl.hfax.o: /usr/include/sys/fcntl.h vfax.h version.hinit.o: /usr/include/stdio.h /usr/include/sys/types.h /usr/include/fcntl.hinit.o: /usr/include/sys/fcntl.h /usr/include/setjmp.h /usr/include/signal.hinit.o: /usr/include/sys/signal.h vfax.h version.hmail.o: /usr/include/stdio.h /usr/include/sys/types.h /usr/include/errno.hmail.o: /usr/include/sys/errno.h vfax.h version.hplay.o: /usr/include/stdio.h /usr/include/fcntl.h /usr/include/sys/fcntl.hplay.o: /usr/include/unistd.h /usr/include/termio.h /usr/include/sys/termio.hplay.o: vfax.h version.hprocess.o: /usr/include/stdio.h /usr/include/sys/types.h /usr/include/fcntl.hprocess.o: /usr/include/sys/fcntl.h vfax.h version.hqueue.o: /usr/include/stdio.h /usr/include/sys/types.h /usr/include/fcntl.hqueue.o: /usr/include/sys/fcntl.h vfax.h version.hrcv.o: /usr/include/stdio.h /usr/include/sys/types.h /usr/include/fcntl.hrcv.o: /usr/include/sys/fcntl.h /usr/include/unistd.h /usr/include/signal.hrcv.o: /usr/include/sys/signal.h vfax.h version.hread.o: /usr/include/stdio.h /usr/include/sys/types.h /usr/include/fcntl.hread.o: /usr/include/sys/fcntl.h vfax.h version.hrecmsg.o: /usr/include/stdio.h /usr/include/fcntl.h /usr/include/sys/fcntl.hrecmsg.o: /usr/include/termio.h /usr/include/sys/termio.hrecmsg.o: /usr/include/signal.h /usr/include/sys/signal.h vfax.h version.hrecord.o: /usr/include/stdio.h vfax.h version.hresponse.o: /usr/include/stdio.h /usr/include/sys/types.hresponse.o: /usr/include/fcntl.h /usr/include/sys/fcntl.hresponse.o: /usr/include/termio.h /usr/include/sys/termio.hresponse.o: /usr/include/ctype.h vfax.h version.hsend.o: /usr/include/stdio.h /usr/include/sys/types.hsend.o: /usr/include/sys/termio.h /usr/include/fcntl.hsend.o: /usr/include/sys/fcntl.h /usr/include/signal.hsend.o: /usr/include/sys/signal.h /usr/include/setjmp.h /usr/include/unistd.hsend.o: /usr/include/pwd.h /usr/include/sys/ipc.h /usr/include/sys/msg.hsend.o: /usr/include/errno.h /usr/include/sys/errno.h vfax.h version.hsignal.o: /usr/include/stdio.h /usr/include/fcntl.h /usr/include/sys/fcntl.hsignal.o: /usr/include/termio.h /usr/include/sys/termio.hsignal.o: /usr/include/signal.h /usr/include/sys/signal.hsignal.o: /usr/include/setjmp.h vfax.h version.hsnd.o: /usr/include/stdio.h /usr/include/sys/types.h /usr/include/fcntl.hsnd.o: /usr/include/sys/fcntl.h /usr/include/unistd.h vfax.h version.hspooler.o: /usr/include/stdio.h /usr/include/sys/types.hspooler.o: /usr/include/sys/termio.h /usr/include/fcntl.hspooler.o: /usr/include/sys/fcntl.h /usr/include/sys/ioctl.hspooler.o: /usr/include/unistd.h /usr/include/dirent.hspooler.o: /usr/include/sys/dirent.h /usr/include/sys/time.hspooler.o: /usr/include/setjmp.h /usr/include/signal.hspooler.o: /usr/include/sys/signal.h /usr/include/sys/ipc.hspooler.o: /usr/include/sys/msg.h /usr/include/errno.hspooler.o: /usr/include/sys/errno.h vfax.h version.h patchlevel.htty.o: /usr/include/stdio.h /usr/include/sys/types.h /usr/include/sys/time.htty.o: /usr/include/sys/errno.h /usr/include/signal.htty.o: /usr/include/sys/signal.h /usr/include/fcntl.htty.o: /usr/include/sys/fcntl.h /usr/include/termio.htty.o: /usr/include/sys/termio.h vfax.h version.httyio.o: /usr/include/stdio.h /usr/include/sys/types.httyio.o: /usr/include/sys/time.h /usr/include/sys/errno.httyio.o: /usr/include/signal.h /usr/include/sys/signal.h /usr/include/fcntl.httyio.o: /usr/include/sys/fcntl.h /usr/include/sgtty.h vfax.h version.hwrite.o: /usr/include/stdio.h /usr/include/sys/types.h /usr/include/fcntl.hwrite.o: /usr/include/sys/fcntl.h /usr/include/varargs.h vfax.h version.h

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品入口麻豆九色| 午夜在线成人av| 亚洲国产wwwccc36天堂| 国产乱妇无码大片在线观看| 在线亚洲免费视频| 国产午夜精品一区二区| 轻轻草成人在线| 欧美猛男超大videosgay| 中文字幕一区免费在线观看| 国产在线精品国自产拍免费| 8v天堂国产在线一区二区| 亚洲人快播电影网| 成人avav在线| 亚洲国产高清aⅴ视频| 国产高清视频一区| 久久久亚洲午夜电影| 久久国产精品露脸对白| 欧美一区二区在线免费播放| 亚洲成人综合视频| 欧美日韩精品专区| 日韩精品午夜视频| 欧美蜜桃一区二区三区| 亚洲综合视频在线| 欧美亚洲丝袜传媒另类| 亚洲美女淫视频| 色乱码一区二区三区88| 亚洲欧美日韩在线播放| 色偷偷久久一区二区三区| 国产精品无人区| 国产不卡免费视频| 中文字幕在线观看一区| 99久久婷婷国产综合精品电影 | 在线观看成人小视频| 26uuu国产电影一区二区| 国产精品成人在线观看| 99久久久无码国产精品| 美女脱光内衣内裤视频久久网站| 国产日韩欧美高清| 日韩一区二区在线看| 色偷偷成人一区二区三区91| 免费成人在线视频观看| 亚洲免费在线播放| 久久精品在这里| 欧美日韩色一区| 99久久免费国产| 国产aⅴ综合色| 蜜臀av在线播放一区二区三区| 国产精品免费久久久久| 欧美成人vps| 欧美精品自拍偷拍| 欧美性猛交xxxxxxxx| fc2成人免费人成在线观看播放| 麻豆国产欧美一区二区三区| 亚洲一区中文在线| 亚洲欧美在线aaa| 国产亚洲欧美色| 日韩精品中文字幕在线不卡尤物| 欧美三级电影网| 91蝌蚪porny成人天涯| 国产成人av一区二区三区在线观看| 免费欧美日韩国产三级电影| 日韩黄色免费网站| 亚洲第一会所有码转帖| 亚洲另类一区二区| 亚洲黄色免费网站| 亚洲精品国产精华液| 亚洲人成影院在线观看| 亚洲欧美视频在线观看| 亚洲欧美区自拍先锋| 亚洲欧美偷拍三级| 一区二区三区加勒比av| 亚洲天堂免费看| 亚洲免费av高清| 亚洲网友自拍偷拍| 亚洲1区2区3区4区| 天天亚洲美女在线视频| 奇米影视一区二区三区| 六月丁香婷婷色狠狠久久| 激情五月婷婷综合| 国产成人综合网| 99在线精品视频| fc2成人免费人成在线观看播放 | 精品久久一区二区三区| 欧美xxxxxxxx| 国产日产欧美精品一区二区三区| 国产片一区二区| 亚洲美女少妇撒尿| 日韩福利视频导航| 久久超碰97人人做人人爱| 国产在线视频一区二区| 成人小视频免费观看| 欧美在线观看18| 91精品国产91综合久久蜜臀| 欧美大片一区二区三区| 国产欧美一区在线| 亚洲免费伊人电影| 日韩高清在线一区| 国产麻豆精品theporn| 99精品欧美一区二区蜜桃免费| 欧美在线影院一区二区| 欧美岛国在线观看| 中文字幕一区三区| 日韩精品一级中文字幕精品视频免费观看| 免费一级欧美片在线观看| 国产91丝袜在线播放九色| 99国产精品久久久久| 欧美精品一卡二卡| 欧美国产一区在线| 亚洲午夜成aⅴ人片| 国产精品888| 欧美亚洲国产一区在线观看网站| 精品国产区一区| 亚洲另类色综合网站| 韩国欧美国产1区| 色综合久久久久| 精品国产99国产精品| 一区二区三区四区不卡在线| 久久精品国产澳门| 91久久久免费一区二区| 欧美电影免费观看高清完整版| 亚洲人成7777| 国产精品一级片| 56国语精品自产拍在线观看| 中国色在线观看另类| 麻豆一区二区在线| 91精品福利视频| 亚洲国产岛国毛片在线| 久久成人综合网| 欧美日韩你懂得| 中文字幕五月欧美| 国产精品资源在线看| 欧美猛男男办公室激情| 亚洲精选视频免费看| 高清不卡一二三区| 日韩久久精品一区| 日韩高清国产一区在线| 欧美在线不卡一区| 亚洲日本va在线观看| 国产精品1区二区.| 精品福利视频一区二区三区| 亚洲777理论| 欧美影视一区在线| 亚洲三级小视频| 成人免费看的视频| 国产亲近乱来精品视频| 久久国产精品色| 日韩欧美国产综合| 秋霞av亚洲一区二区三| 欧美理论电影在线| 亚洲无线码一区二区三区| 色老头久久综合| 一区二区久久久| 日本韩国一区二区| 一区二区三区国产精品| 一本大道久久精品懂色aⅴ| 亚洲图片另类小说| 色哟哟精品一区| 亚洲激情在线激情| 日本久久电影网| 一区二区三区中文字幕在线观看| 99精品国产视频| 亚洲欧美一区二区久久| 色婷婷av一区二区| 夜夜嗨av一区二区三区网页| 欧美在线观看视频在线| 亚洲成人自拍网| 91麻豆精品91久久久久同性| 手机精品视频在线观看| 日韩欧美激情四射| 国产成人午夜视频| 国产精品不卡在线观看| 91色.com| 亚洲国产精品久久不卡毛片 | 6080国产精品一区二区| 视频在线观看一区| 欧美videos中文字幕| 国产毛片一区二区| 成人欧美一区二区三区| 在线视频一区二区三区| 日韩av中文字幕一区二区三区| 日韩欧美国产系列| 国产成人自拍网| 亚洲激情网站免费观看| 欧美一区二区三区播放老司机| 激情综合网最新| 国产精品久久福利| 欧美日韩免费一区二区三区| 日韩中文欧美在线| 久久久久久99久久久精品网站| 懂色中文一区二区在线播放| 亚洲人成亚洲人成在线观看图片 | 制服丝袜成人动漫| 激情五月播播久久久精品| 国产精品国产三级国产三级人妇| 色94色欧美sute亚洲线路二| 日本成人在线一区| 中文字幕制服丝袜成人av| 欧美这里有精品| 国产精品18久久久久久久久| 亚洲美女视频在线观看|