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

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

?? main.c

?? EFI(Extensible Firmware Interface)是下一代BIOS
?? C
字號(hào):
/*	$Id: main.c,v 1.16 1997/12/13 20:38:19 pst Exp $	*/
/*	$NetBSD: main.c,v 1.26 1997/10/14 16:31:22 christos Exp $	*/

/*
 * Copyright (c) 1985, 1989, 1993, 1994
 *	The Regents of the University of California.  All rights reserved.
 *
 *
 * Portions copyright (c) 1999, 2000
 * Intel Corporation.
 * All rights reserved.
 * 
 * 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.
 * 
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 * 
 *    This product includes software developed by the University of
 *    California, Berkeley, Intel Corporation, and its contributors.
 * 
 * 4. Neither the name of University, Intel Corporation, or their respective
 *    contributors may be used to endorse or promote products derived from
 *    this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS, INTEL CORPORATION AND
 * CONTRIBUTORS ``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 REGENTS,
 * INTEL CORPORATION OR CONTRIBUTORS 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.
 *
 */

#include <sys/cdefs.h>
#ifndef lint
__COPYRIGHT("@(#) Copyright (c) 1985, 1989, 1993, 1994\n\
	The Regents of the University of California.  All rights reserved.\n");
#endif /* not lint */

#ifndef lint
#if 0
static char sccsid[] = "@(#)main.c	8.6 (Berkeley) 10/9/94";
#else
__RCSID("$Id: main.c,v 1.16 1997/12/13 20:38:19 pst Exp $");
__RCSID_SOURCE("$NetBSD: main.c,v 1.26 1997/10/14 16:31:22 christos Exp $");
#endif
#endif /* not lint */

/*
 * FTP User Program -- Command Interface.
 */
#include <sys/types.h>
#include <sys/socket.h>

#include <err.h>
#include <locale.h>
#include <netdb.h>
#if EFI32 || EFI64
#include "efimisc.h"
#else
#include <pwd.h>	/* EFI port: not used */
#endif /* EFI32 || EFI64 */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

#include "ftp_var.h"
#include "pathnames.h"

int main __P((int, char **));

int
main(argc, argv)
	int argc;
	char *argv[];
{
	struct servent *sp;
	int ch, top, rval;
	long port;
	struct passwd *pw = NULL;
	char *cp, *ep, homedir[MAXPATHLEN];
	int dumbterm;

	(void) setlocale(LC_ALL, "");

	sp = getservbyname("ftp", "tcp");
	if (sp == 0)
		ftpport = htons(FTP_PORT);	/* good fallback */
	else
		ftpport = sp->s_port;
	sp = getservbyname("http", "tcp");
	if (sp == 0)
		httpport = htons(HTTP_PORT);	/* good fallback */
	else
		httpport = sp->s_port;
	gateport = 0;
	cp = getenv("FTPSERVERPORT");
	if (cp != NULL) {
		port = strtol(cp, &ep, 10);
		if (port < 1 || port > 0xffff || *ep != '\0')
			warnx("bad FTPSERVERPORT port number: %s (ignored)",
			    cp);
		else
			gateport = htons(port);
	}
	if (gateport == 0) {
		sp = getservbyname("ftpgate", "tcp");
		if (sp == 0)
			gateport = htons(GATE_PORT);
		else
			gateport = sp->s_port;
	}
	doglob = 1;
	interactive = 1;
	autologin = 1;
	passivemode = 0;
	restricted_data_ports = 1;
	preserve = 1;
	verbose = 0;
	progress = 0;
	gatemode = 0;
#ifndef SMALL
	editing = 0;
	el = NULL;
	hist = NULL;
#endif
	mark = HASHBYTES;
	marg_sl = sl_init();
	if ((tmpdir = getenv("TMPDIR")) == NULL)
#if EFI32 || EFI64
		/* let's not make them have a /tmp be default */
		tmpdir = "./";
#else
		tmpdir = _PATH_TMP;
#endif

	cp = strrchr(argv[0], '/');
	cp = (cp == NULL) ? argv[0] : cp + 1;
	if (getenv("FTP_PASSIVE_MODE") || strcmp(cp, "pftp") == 0)
		passivemode = 1;
	else if (strcmp(cp, "gate-ftp") == 0)
		gatemode = 1;

	gateserver = getenv("FTPSERVER");
	if (gateserver == NULL || *gateserver == '\0')
		gateserver = GATE_SERVER;
	if (gatemode) {
		if (*gateserver == '\0') {
			warnx(
"Neither $FTPSERVER nor GATE_SERVER is defined; disabling gate-ftp");
			gatemode = 0;
		}
	}

	cp = getenv("TERM");
	if (cp == NULL || strcmp(cp, "dumb") == 0)
		dumbterm = 1;
	else
		dumbterm = 0;
	fromatty = isatty(fileno(stdin));
	if (fromatty) {
		verbose = 1;		/* verbose if from a tty */
#ifndef SMALL
		if (! dumbterm)
			editing = 1;	/* editing mode on if tty is usable */
#endif
	}
	if (isatty(fileno(stdout)) && !dumbterm)
		progress = 1;		/* progress bar on if tty is usable */

	while ((ch = getopt(argc, argv, "adeginpP:tvVU")) != -1) {
		switch (ch) {
		case 'a':
			anonftp = 1;
			break;

		case 'd':
			options |= SO_DEBUG;
			debug++;
			break;

		case 'e':
#ifndef SMALL
			editing = 0;
#endif
			break;

		case 'g':
			doglob = 0;
			break;

		case 'i':
			interactive = 0;
			break;

		case 'n':
			autologin = 0;
			break;

		case 'p':
			passivemode = 1;
			break;

		case 'P':
			port = strtol(optarg, &ep, 10);
			if (port < 1 || port > 0xffff || *ep != '\0')
				warnx("bad port number: %s (ignored)", optarg);
			else
				ftpport = htons(port);
			break;

		case 't':
			trace = 1;
			break;

		case 'v':
			verbose = 1;
			break;

		case 'V':
			verbose = 0;
			break;

		case 'U':
		        restricted_data_ports = 0;
			break;

		default:
			usage();
		}
	}
	argc -= optind;
	argv += optind;

	cpend = 0;	/* no pending replies */
	proxy = 0;	/* proxy not active */
	crflag = 1;	/* strip c.r. on ascii gets */
	sendport = -1;	/* not using ports */
	/*
	 * Set up the home directory in case we're globbing.
	 */
	cp = getlogin();
	if (cp != NULL) {
		pw = getpwnam(cp);
	}
	if (pw == NULL)
		pw = getpwuid(getuid());
	if (pw != NULL) {
		home = homedir;
		(void)strcpy(home, pw->pw_dir);
	}

	setttywidth(0);
	(void)signal(SIGWINCH, setttywidth);

#ifdef __GNUC__			/* XXX: to shut up gcc warnings */
	(void)&argc;
	(void)&argv;
#endif

	if (argc > 0) {
		if (strchr(argv[0], ':') != NULL) {
			anonftp = 1;	/* Handle "automatic" transfers. */
			rval = auto_fetch(argc, argv);
			if (rval >= 0)		/* -1 == connected and cd-ed */
				exit(rval);
		} else {
			char *xargv[5];

			if (setjmp(toplevel))
				exit(0);
			(void)signal(SIGINT, (sig_t)intr);
			(void)signal(SIGPIPE, (sig_t)lostpeer);
			xargv[0] = __progname;
			xargv[1] = argv[0];
			xargv[2] = argv[1];
			xargv[3] = argv[2];
			xargv[4] = NULL;
			setpeer(argc+1, xargv);
		}
	}
#ifndef SMALL
	controlediting();
#endif /* !SMALL */
	top = setjmp(toplevel) == 0;
	if (top) {
		(void)signal(SIGINT, (sig_t)intr);
		(void)signal(SIGPIPE, (sig_t)lostpeer);
	}
	for (;;) {
		cmdscanner(top);
		top = 1;
	}
	return(0);
}

void
intr()
{

	alarmtimer(0);
	longjmp(toplevel, 1);
}

void
lostpeer()
{

	alarmtimer(0);
	if (connected) {
		if (cout != NULL) {
			(void)shutdown(fileno(cout), 1+1);
			(void)fclose(cout);
			cout = NULL;
		}
		if (data >= 0) {
			(void)shutdown(data, 1+1);
			(void)close(data);
			data = -1;
		}
		connected = 0;
	}
	pswitch(1);
	if (connected) {
		if (cout != NULL) {
			(void)shutdown(fileno(cout), 1+1);
			(void)fclose(cout);
			cout = NULL;
		}
		connected = 0;
	}
	proxflag = 0;
	pswitch(0);
}

/*
 * Generate a prompt
 */
char *
prompt()
{
	return ("ftp> ");
}

/*
 * Command parser.
 */
void
cmdscanner(top)
	int top;
{
	struct cmd *c;
	int num;

	if (!top 
#ifndef SMALL
	    && !editing
#endif /* !SMALL */
	    )
		(void)putchar('\n');
	for (;;) {
#ifndef SMALL
		if (!editing) {
#endif /* !SMALL */
			if (fromatty) {
				fputs(prompt(), stdout);
				(void)fflush(stdout);
			}
			if (fgets(line, sizeof(line), stdin) == NULL)
				quit(0, 0);
			num = (int)strlen(line);
			if (num == 0)
				break;
			if (line[--num] == '\n') {
				if (num == 0)
					break;
				line[num] = '\0';
			} else if (num == sizeof(line) - 2) {
				puts("sorry, input line too long.");
				while ((num = getchar()) != '\n' && num != EOF)
					/* void */;
				break;
			} /* else it was a line without a newline */
#ifndef SMALL
		} else {
			const char *buf;
			cursor_pos = NULL;

			if ((buf = el_gets(el, &num)) == NULL || num == 0)
				quit(0, 0);
			if (line[--num] == '\n') {
				if (num == 0)
					break;
			} else if (num >= sizeof(line)) {
				puts("sorry, input line too long.");
				break;
			}
			memcpy(line, buf, num);
			line[num] = '\0';
			history(hist, H_ENTER, buf);
		}
#endif /* !SMALL */

		makeargv();
		if (margc == 0)
			continue;
#if 0 && !defined(SMALL)	/* XXX: don't want el_parse */
		/*
		 * el_parse returns -1 to signal that it's not been handled
		 * internally.
		 */
		if (el_parse(el, margc, margv) != -1)
			continue;
#endif /* !SMALL */
		c = getcmd(margv[0]);
		if (c == (struct cmd *)-1) {
			puts("?Ambiguous command.");
			continue;
		}
		if (c == 0) {
			puts("?Invalid command.");
			continue;
		}
		if (c->c_conn && !connected) {
			puts("Not connected.");
			continue;
		}
		confirmrest = 0;
		(*c->c_handler)(margc, margv);
		if (bell && c->c_bell)
			(void)putchar('\007');
		if (c->c_handler != help)
			break;
	}
	(void)signal(SIGINT, (sig_t)intr);
	(void)signal(SIGPIPE, (sig_t)lostpeer);
}

struct cmd *
getcmd(name)
	const char *name;
{
	const char *p, *q;
	struct cmd *c, *found;
	int nmatches, longest;

	if (name == NULL)
		return (0);

	longest = 0;
	nmatches = 0;
	found = 0;
	for (c = cmdtab; (p = c->c_name) != NULL; c++) {
		for (q = name; *q == *p++; q++)
			if (*q == 0)		/* exact match? */
				return (c);
		if (!*q) {			/* the name was a prefix */
			if (q - name > longest) {
				longest = (int)(q - name);	/* cast added for EFI port */
				nmatches = 1;
				found = c;
			} else if (q - name == longest)
				nmatches++;
		}
	}
	if (nmatches > 1)
		return ((struct cmd *)-1);
	return (found);
}

/*
 * Slice a string up into argc/argv.
 */

int slrflag;

void
makeargv()
{
	char *argp;

	stringbase = line;		/* scan from first of buffer */
	argbase = argbuf;		/* store from first of buffer */
	slrflag = 0;
	marg_sl->sl_cur = 0;		/* reset to start of marg_sl */
	for (margc = 0; ; margc++) {
		argp = slurpstring();
		sl_add(marg_sl, argp);
		if (argp == NULL)
			break;
	}
#ifndef SMALL
	if (cursor_pos == line) {
		cursor_argc = 0;
		cursor_argo = 0;
	} else if (cursor_pos != NULL) {
		cursor_argc = margc;
		cursor_argo = strlen(margv[margc-1]);
	}
#endif /* !SMALL */
}

#ifdef SMALL
#define INC_CHKCURSOR(x)	(x)++
#else  /* !SMALL */
										/* casts added for EFI port */
#define INC_CHKCURSOR(x)	{ (x)++ ; \
				if (x == cursor_pos) { \
					cursor_argc = (size_t)margc; \
					cursor_argo = (size_t)(ap-argbase); \
					cursor_pos = NULL; \
				} }
						
#endif /* !SMALL */

/*
 * Parse string into argbuf;
 * implemented with FSM to
 * handle quoting and strings
 */
char *
slurpstring()
{
	int got_one = 0;
	char *sb = stringbase;
	char *ap = argbase;
	char *tmp = argbase;		/* will return this if token found */

	if (*sb == '!' || *sb == '$') {	/* recognize ! as a token for shell */
		switch (slrflag) {	/* and $ as token for macro invoke */
			case 0:
				slrflag++;
				INC_CHKCURSOR(stringbase);
				return ((*sb == '!') ? "!" : "$");
				/* NOTREACHED */
			case 1:
				slrflag++;
				altarg = stringbase;
				break;
			default:
				break;
		}
	}

S0:
	switch (*sb) {

	case '\0':
		goto SLURP_OUT;

	case ' ':
	case '\t':
		INC_CHKCURSOR(sb);
		goto S0;

	default:
		switch (slrflag) {
			case 0:
				slrflag++;
				break;
			case 1:
				slrflag++;
				altarg = sb;
				break;
			default:
				break;
		}
		goto S1;
	}

S1:
	switch (*sb) {

	case ' ':
	case '\t':
	case '\0':
		goto SLURP_OUT;	/* end of token */

	case '\\':
		INC_CHKCURSOR(sb);
		goto S2;	/* slurp next character */

	case '"':
		INC_CHKCURSOR(sb);
		goto S3;	/* slurp quoted string */

	default:
		*ap = *sb;	/* add character to token */
		ap++;
		INC_CHKCURSOR(sb);
		got_one = 1;
		goto S1;
	}

S2:
	switch (*sb) {

	case '\0':
		goto SLURP_OUT;

	default:
		*ap = *sb;
		ap++;
		INC_CHKCURSOR(sb);
		got_one = 1;
		goto S1;
	}

S3:
	switch (*sb) {

	case '\0':
		goto SLURP_OUT;

	case '"':
		INC_CHKCURSOR(sb);
		goto S1;

	default:
		*ap = *sb;
		ap++;
		INC_CHKCURSOR(sb);
		got_one = 1;
		goto S3;
	}

SLURP_OUT:	/* changed all OUT to SLURP_OUT in this function for EFI port */
	if (got_one)
		*ap++ = '\0';
	argbase = ap;			/* update storage pointer */
	stringbase = sb;		/* update scan pointer */
	if (got_one) {
		return (tmp);
	}
	switch (slrflag) {
		case 0:
			slrflag++;
			break;
		case 1:
			slrflag++;
			altarg = (char *) 0;
			break;
		default:
			break;
	}
	return ((char *)0);
}

/*
 * Help command.
 * Call each command handler with argc == 0 and argv[0] == name.
 */
void
help(argc, argv)
	int argc;
	char *argv[];
{
	struct cmd *c;

	if (argc == 1) {
		StringList *buf;

		buf = sl_init();
		printf("%sommands may be abbreviated.  Commands are:\n\n",
		    proxy ? "Proxy c" : "C");
		for (c = cmdtab; c < &cmdtab[NCMDS]; c++)
			if (c->c_name && (!proxy || c->c_proxy))
				sl_add(buf, c->c_name);
		list_vertical(buf);
		sl_free(buf, 0);
		return;
	}

#define HELPINDENT ((int) sizeof("disconnect"))

	while (--argc > 0) {
		char *arg;

		arg = *++argv;
		c = getcmd(arg);
		if (c == (struct cmd *)-1)
			printf("?Ambiguous help command %s\n", arg);
		else if (c == (struct cmd *)0)
			printf("?Invalid help command %s\n", arg);
		else
			printf("%-*s\t%s\n", HELPINDENT,
				c->c_name, c->c_help);
	}
}

void
usage()
{
	(void)fprintf(stderr,
	    "usage: %s [-adeginptvV] [host [port]]\n"
	    "       %s host:path[/]\n"
	    "       %s ftp://host[:port]/path[/]\n"
	    "       %s http://host[:port]/file\n",
	    __progname, __progname, __progname, __progname);
	exit(1);
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久久久久久久久电影| 日本在线观看不卡视频| 成人午夜视频在线观看| 久久久不卡网国产精品二区| 美女mm1313爽爽久久久蜜臀| 91精品国产色综合久久ai换脸 | 91行情网站电视在线观看高清版| 国产欧美日韩亚州综合| 成人午夜大片免费观看| 亚洲激情欧美激情| 7777精品伊人久久久大香线蕉的 | 国产精品一区二区在线看| 中文字幕国产一区二区| 成人av在线影院| 天天综合色天天综合| 久久久电影一区二区三区| 成人精品小蝌蚪| 亚洲成人第一页| 欧美激情一区二区三区蜜桃视频| 在线观看日韩一区| 国产精品1区二区.| 午夜精品福利一区二区蜜股av| 日韩亚洲欧美一区二区三区| 成人午夜视频免费看| 欧美aⅴ一区二区三区视频| 国产亚洲综合在线| 日韩一区二区在线免费观看| 波多野结衣一区二区三区| 三级欧美在线一区| 亚洲人成网站色在线观看| 精品国免费一区二区三区| 欧美日韩国产一级片| 岛国精品一区二区| 精品一区二区三区香蕉蜜桃| 一区二区在线免费| 成人欧美一区二区三区视频网页| 精品久久五月天| 91精品在线一区二区| 欧美日韩国产大片| 欧美综合一区二区| 91黄视频在线观看| 欧美亚洲高清一区| 欧美军同video69gay| 7878成人国产在线观看| 日韩一级高清毛片| 精品盗摄一区二区三区| 日韩欧美国产一区二区在线播放| 91精品国产综合久久国产大片 | 欧美在线看片a免费观看| 99精品视频中文字幕| 91麻豆自制传媒国产之光| 91免费版在线| 在线精品国精品国产尤物884a| 欧美性大战久久久久久久蜜臀 | 欧美日本在线观看| 精品日韩在线观看| 欧美va日韩va| 亚洲丝袜另类动漫二区| 亚洲免费电影在线| 轻轻草成人在线| 国产麻豆精品95视频| 91在线无精精品入口| 欧美日本乱大交xxxxx| 亚洲精品在线电影| 中文字幕一区视频| 日韩国产精品91| av中文字幕不卡| 日韩三级中文字幕| 国产精品美女久久久久av爽李琼| 亚洲第一av色| 国产大片一区二区| 欧美日韩视频一区二区| 国产亚洲综合性久久久影院| 一区二区高清在线| 波多野结衣视频一区| 日韩欧美国产午夜精品| 一区二区三区日本| 成人性生交大片免费看在线播放 | 国产在线播放一区三区四| 91亚洲精品久久久蜜桃网站| 久久天堂av综合合色蜜桃网| 亚洲国产成人91porn| 91首页免费视频| 中文字幕在线观看一区| 另类人妖一区二区av| 制服视频三区第一页精品| 一区二区三区中文字幕电影 | 天天影视涩香欲综合网| 一本久道久久综合中文字幕| 国产日韩在线不卡| 精品中文字幕一区二区小辣椒| 欧美视频一区二区在线观看| 一区二区在线观看视频在线观看| 波多野结衣在线一区| 国产欧美日韩中文久久| 国产精品自拍毛片| 久久精子c满五个校花| 成人h精品动漫一区二区三区| xvideos.蜜桃一区二区| 国产永久精品大片wwwapp| 精品99999| 91视视频在线直接观看在线看网页在线看| 久久久久久97三级| 成人一区二区在线观看| 亚洲色图在线看| 欧美在线看片a免费观看| 性做久久久久久免费观看| 日韩一级大片在线观看| 国产馆精品极品| 亚洲综合一区二区| 欧美成人video| 色综合久久综合| 蜜臀av一区二区| 亚洲免费在线播放| 日韩欧美一区二区视频| 91蜜桃视频在线| 国产精品亚洲一区二区三区妖精| 中文字幕制服丝袜成人av| 欧美日韩日日夜夜| 99久久精品国产麻豆演员表| 免费成人结看片| 亚洲影院久久精品| 国产精品国产三级国产a| 91麻豆精品国产| 日本伦理一区二区| 5858s免费视频成人| 一本久久精品一区二区| 国产激情视频一区二区在线观看| 亚洲免费大片在线观看| 国产精品久久久久一区二区三区| 91精品午夜视频| 91福利社在线观看| 91在线视频免费91| 91在线观看下载| 午夜激情一区二区| 日韩精品一区二区三区四区 | 精品久久人人做人人爽| 国产亚洲成aⅴ人片在线观看| 国产精品乱码一区二区三区软件| 亚洲欧美乱综合| 狠狠色综合色综合网络| 成人成人成人在线视频| 在线观看免费亚洲| 欧美日韩免费电影| 91麻豆精品国产91久久久久久| 欧美精品在线观看播放| 日韩美一区二区三区| 欧美精品一区二区三区四区| 国产色91在线| ...xxx性欧美| 亚洲一卡二卡三卡四卡五卡| 一卡二卡三卡日韩欧美| 婷婷综合五月天| 精品无人码麻豆乱码1区2区 | 午夜成人在线视频| 免费高清不卡av| 成人av网站在线观看免费| 欧美片网站yy| 日韩亚洲欧美综合| 国产精品国产a级| 亚洲一卡二卡三卡四卡无卡久久 | 欧美日韩三级一区| 国产亚洲成aⅴ人片在线观看| 天天综合色天天综合色h| 成人综合在线观看| 日韩欧美激情在线| 亚洲午夜三级在线| 91网址在线看| 久久人人97超碰com| 亚洲国产aⅴ天堂久久| 岛国精品在线观看| 日韩欧美国产高清| 亚洲第一主播视频| 99视频超级精品| 久久午夜电影网| 九九精品一区二区| 精品美女一区二区| 美女www一区二区| 91麻豆精品国产91久久久久久| 亚洲一区二区欧美日韩| 99久久精品久久久久久清纯| 欧美激情中文不卡| 成人美女在线视频| 国产欧美日本一区二区三区| 国产成人欧美日韩在线电影| 国产午夜精品福利| 成人av资源站| 一区二区在线观看av| 欧美乱熟臀69xxxxxx| 奇米四色…亚洲| 久久久三级国产网站| 成人一区二区三区中文字幕| 亚洲欧洲综合另类在线| 欧美性生活久久| 久久精品国产99国产| 亚洲欧美日韩一区二区| 欧美一区二区福利视频| 精品1区2区在线观看| 亚洲欧美综合另类在线卡通| 蜜臀精品久久久久久蜜臀|