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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? mirror.pl

?? 站點映像程序
?? PL
?? 第 1 頁 / 共 5 頁
字號:
#!/usr/bin/perl# Make local directories mirror images of a remote sites### Copyright (C) 1990 - 1998   Lee McLoughlin## Permission to use, copy, and distribute this software and its# documentation for any purpose with or without fee is hereby granted,# provided that the above copyright notice appear in all copies and# that both that copyright notice and this permission notice appear# in supporting documentation.## Permission to modify the software is granted, but not the right to# distribute the modified code.  Modifications are to be distributed# as patches to released version.## This software is provided "as is" without express or implied warranty.#### $Id: mirror.pl,v 2.9 1998/05/29 19:01:07 lmjm Exp lmjm $# $Log: mirror.pl,v $# Revision 2.9  1998/05/29 19:01:07  lmjm# Lots of changes.  See CHANGES since 2.8 file.## Revision 2.8  1995/08/06  14:03:52  lmjm# Trap a wider range of signals to aid in debugging under perl5# Avoid looping processing symlinks.## Revision 2.7  1995/08/06  13:59:00  lmjm# No longer require socket.ph in this module.# Escape at signs and dollars for perl5# Make sure  proxy_gateway is at least null.# Added ls_fix_mappings, failed_gets_excl, store_remote_listing, passive_ftp#  and using_socks.# Stop using dollar star as perl5 has dropped it.# Process local directory listing before connecting to remote.# Allow for remote_account pasword.# Only one arg to undef, for early perl5's# Use all capitals for file descriptors.# Use ftp'close not ftp'quit# Avoid file renaming under MACos# Corrected file deleting.## Revision 2.6  1994/06/10  18:28:27  lmjm# Dropped debug statement.## Revision 2.5  1994/06/06  18:39:21  lmjm# Don't have . in the extra_path.# Have 'internet-gateway' as the default proxy_gateway when INTERNET_HOST unset.# Allow strip_cr (from Andrew).# More symlink handling...# Set type for vms correctly.# Changed response from ftp'delete, also corrected path used.## Revision 2.4  1994/04/29  20:11:09  lmjm# Use correct variable for hostname## Revision 2.3  1994/01/31  18:31:22  lmjm# Allow for funny chars in filenames when calling the shell (Erez).# Added compress_size_floor to avoid compressing small files (David).# Added get_missing to just delete files not on remote system (Pieter).# Don't try to delete old dirs if no time set (Pieter).# Zap .dir$$ files, and keep then in $big_temp.# Pretty print time in comparisons.# Move the large comparision conditionals into routines (David).# Allow for sites with limited filename lengths.# Allow for deleted files when doing deletes.# Don't delete dirs that are really symlinks.## Revision 2.2  1993/12/14  11:09:15  lmjm# Allow for no flock.# Use installed socket.ph.# Allow for system 5.# Use percentage defaults on max_delete_*# Checkout regexps before using.# Allow for extra leading | in local_ignore.# Return better exit codes.# Fixups for recurse_hard.# Smarter symlink handling.## Revision 2.1  1993/06/28  14:59:00  lmjm# Full 2.1 release### Make sure we don't go recursive processing signals$sigs = 0;$max_sigs = 10;# Am I on windoze?$on_win = ($^O =~ /mswin/i);$path_sep = $on_win ? ';' : ':';$file_sep = $on_win ? '\\' : '/';# Internally mirror uses / but when looking at names from environment allow# for either$file_sep_pat = $on_win ? "[\\/]" : "/"; # allow for c:\win/fred on windoze# Default settings file loaded from a directory in PERLLIB$defaults_file = 'mirror.defaults';$load_defaults = 1;# Try to find the default location of various programs via# the users PATH then using $extra_pathif( ! $on_win ){	$extra_path = '/usr/local/bin:/usr/new/bin:/usr/public/bin:/usr/ucb:/usr/bin:/bin:/etc:/usr/etc:/usr/local/etc';}if( $extra_path ne '' ){	$ENV{ 'PATH' } .= $path_sep . $extra_path;}&trap_signals();# If compressing a local file to send need somewhere to store the temp# compressed version.$big_temp = '/var/tmp';# Hopefully we have flock.$can_flock = 1;# no debugging by default$debug = 0;# NOTE:#  It is not an error for a program not to be found in the path as the user# may be setting it as part of the package details or defaults.# Used by the save_deletes option$mv_prog = 'mv -f';# compress must be able to take the -d arg to cause it to uncompress.$sys_compress_prog = &find_prog( 'compress' );$sys_compress_suffix = 'Z';# Like compress gzip must be able to take -dif( $gzip_prog = &find_prog( 'gzip' ) ){	# Force maximum compression with gzip	$gzip_level = ' -9';	$gzip_prog .= $gzip_level;	$gzip_suffix = 'gz';	$old_gzip_suffix = 'z';}# A mail program that can be called as: "$mail_prog person_list'# Can be overridden with the mail_prog keyword.# If you use $mail_subject to pass extra arguments then remember that# the mail program will need to know how to handle them.$mail_prog = &find_prog( 'mailx' );if( ! $mail_prog ){	$mail_prog = &find_prog( 'Mail' );}if( ! $mail_prog ){	$mail_prog = &find_prog( 'mail' );}# Used to remove directory heirarchies.  This program is passed the -rf# arguments.$rm_prog = &find_prog( 'rm' );# Generate checksums$sum_prog = &find_prog( 'sum' );# SPECIAL NOTE: This is eval'd, so DONT put double-quotes (") in it.# You can get local variables to appear as in the second example:$mail_subject = '-s \'mirror update\'';# $mail_subject = ' -s \'mirror update of $package\'';# When scanning the local directory, how often to prod the remote# system to keep the connection alive$prod_interval = 60;# Put the directory that mirror is actually in at the start of PERLLIB.$dir = &real_dir_from_path( $0 );unshift( @INC, $dir );# Debian GNU/Linux stores mirror.defaults in /etc/mirror$debian_defs = '/etc/mirror';unshift( @INC, $debian_defs ) if -d $debian_defs;# This, when eval'd, will get the current dir under windows NT/95$win_getcwd = 'Win32::GetCwd';	# Make sure that your PERLLIB environment variable can get you# all these or that they are installed.require 'ftp.pl';require 'lsparse.pl';require 'dateconv.pl';# Find some local details# The current directory$home = &cwd();# The hostname$hostname_cmd = &find_prog( 'hostname' );if( $hostname_cmd ne '' ){	chop( $hostname = `$hostname_cmd` );}if( $hostname eq '' ){	$hostname_cmd = &find_prog( 'uname' );	if( $hostname_cmd ne '' ){		chop( $hostname = `$hostname_cmd -n` );		if( $hostname eq '' ){			chop( $hostname = `$hostname_cmd -l` );		}	}}if( $hostname eq '' ){	$hostname = 'localhost';}if( $hn = (gethostbyname( "$hostname" ))[ 0 ] ){	$hostname = $hn;}# Some systems hold the username in $USER, some in $LOGNAME.$me = $ENV{'USER'} || $ENV{'LOGNAME'};# Files matching this pattern are usually compressed.$squished = '\.(Z|z|gz)$';# special /bin/sh chars that must be escaped.$shell_metachars = '\"|\$|`|\\\\';# Remote directory parsing fail if not given input every readtime seconds.$parse_time = 600;# Timeout are not fatal unless you get more than this number of them.$max_timeouts = 20;# If connected to a site then this holds the site name.$connected = '';# Umask setting.$curr_umask = sprintf( "0%o", umask );# mapping from a pathname to a number - just to make the keys to assoc arrays# shorter.$map_init = 1;	# just so I know 0 is invalid$tmp = "/tmp";@assocs = ( 'local_map', 'remote_map' );# A reasonable set of defaults#   these are in the same order as the documentation - except where order is#   important$default{ 'hostname' } = $hostname; # The LOCAL hostname$default{ 'package' } = '';	# should be a unique handle for the "lump" to be mirrored$default{ 'site' } = '';	# site to connect to$default{ 'remote_dir' } = '';	# remote directory to mirror$default{ 'local_dir' } = '';	# local directory to copy into$default{ 'remote_user' } = 'anonymous';  # the remote guest account name$default{ 'remote_password' } = "$me\@$hostname";$default{ 'remote_account' } = ''; # remote account name/passwd (for systems				   # that use it.)# Used for group and gpass.  (As in ftp.1 site group/gpass commands.)$default{ 'remote_group' } = '';$default{ 'remote_gpass' } = '';$default{ 'timeout' } = 120;	# timeout ftp requests after this many seconds$default{ 'failed_gets_excl' } = ''; # failed messages to ignore while getting,				# if failed to ftp'get$default{ 'ftp_port' } = 21;	# port number of remote ftp daemon$default{ 'proxy' } = 0;	# normally use regular ftp$default{ 'proxy_ftp_port' } = 4514; # default from Sun$default{ 'proxy_gateway' } = "$ENV{ 'INTERNET_HOST' }";				# Gateway to use for proxy				# (Null if environment not set.)$default{ 'using_socks' } = 0;	# Set the default perl version to the non-SOCKS one.$default{ 'passive_ftp' } = 0;	# Set the default ftp usage not to use passive (PASV) ftp.$default{ 'retry_call' } = 1;	# Retry the call if it fails first time$default{ 'disconnect' } = 0;	# Force close at end of package EVEN if				# next package is to the same site$default{ 'remote_idle' } = '';	# Set the remote idle timer to this$default{ 'get_patt' } = ".";	# regex of pathnames to retrieve$default{ 'exclude_patt' } = ''; # regex of pathnames to ignore$default{ 'local_ignore' } = ''; # regex of local pathnames to totally ignore$default{ 'get_newer' } = 1;	# get remote file if its date is newer than local$default{ 'get_size_change' } = 1; # get the file if size if different than local$default{ 'make_bad_symlinks' } = 0; # prevent symlinks to non-existant files$default{ 'follow_local_symlinks' } = ''; # Follow symlinks to pathnames matching this regexp.$default{ 'get_missing' } = 1;	# Set get_missing to 0 to just delete files not on remote system$default{ 'get_file' } = 1;	# perform get, not put by default$default{ 'text_mode' } = 0;	# transfer in binary mode by default$default{ 'strip_cr' } = 0;	# Delete \r (usefull when transfering from				# mainframes -- set text_mode and strip_cr)$default{ 'vms_keep_versions' } = 1; # Keep multiple VMS versions$default{ 'vms_xfer_text' } = 'readme$|info$|listing$|\.c$';				# pattern of VMS files to xfer in TEXT mode				# (Case insensitive)$default{ 'name_mappings' } = '';# remote to local pathname mappings				# used to change layout or zap weird chars	 			# (eg s:old:new)$default{ 'external_mapping' } = '';# remote to local mapping by external routine$default{ 'update_local' } = 0;	# Don't just update local dirs$default{ 'max_days' } = 0;	# Ignore age of file$default{ 'max_size' } = 0;	# If non-zero dont get files larger than this$default{ 'chmod' } = 1;	# perform a chmod after an xfer$default{ 'user' } = '';	# UID/user name to give to local pathnames$default{ 'group' } = '';	# GID/group name to give to local pathnames$default{ 'mode_copy' } = 0;	# true indicates to copy the mode bits$default{ 'file_mode' } = 0444;	# Mode to give files created locally$default{ 'dir_mode' } = 0755;	# mode to give directories created locally$default{ 'force' } = 0;	# don't force by default$default{ 'umask' } = 07000; # DONT allow setuid things by default$default{ 'use_timelocal' }  = 1; # Use local time NOT gmt to timestamp files. (See also the -T flag.)$default{ 'force_times' } = 1;	# Force local file times to match the original$default{ 'do_deletes' } = 0;	# delete dest files if not in src tree$default{ 'delete_patt' } = '.';# delete only files which match this pattern$default{ 'delete_get_patt' } = 0;# true: set delete_patt to get_patt$default{ 'delete_excl' } = ''; # regex of local pathnames to ignore when deleting$default{ 'max_delete_files' } = '10%'; # Any more than this and DONT delete$default{ 'max_delete_dirs' } = '10%'; # Any more than this and DONT delete$default{ 'save_deletes' } = 0;	# save local files if not in remote$default{ 'save_dir' } = 'Old';	# directory in which to create tree for keeping				# files no longer in remote$default{ 'store_remote_listing' } = ''; # Where to store remote site listings on local system$default{ 'compress_patt' } = ''; # compress files matching this pattern$default{ 'compress_excl' } = $squished; # dont compress regexp (case insensitive)$default{ 'compress_prog' } = $sys_compress_prog; # Program to compress files.$default{ 'compress_suffix' } = $sys_compress_suffix; # Suffix on compressed files$default{ 'compress_conv_patt' } = '(\.Z|\.taz)$';	# compress->gzip files matching this pattern$default{ 'compress_conv_expr' } = 's/\.Z$/.gz/;s/\.taz$/.tgz/';	# perl expressions to convert names of files from compress->gzip$default{ 'compress_size_floor' } = 0;  # don't compress files < this size$default{ 'split_max' } = 0;	# Files > this size can be split up.$default{ 'split_patt' } = '';  # Files must match this pattern to be split$default{ 'split_chunk' } = 100 * 1024; # Size of split-up chunks$default{ 'remote_fs' } = 'unix'; # Remote filestore	# Other posibilies dls, netware and vms$default{ 'ls_lR_file' } = '';	# remote file containing ls-lR - else use remote ls$default{ 'local_ls_lR_file' } = ''; # local file containing ls-lR				# useful when first copying a large remote package$default{ 'recursive' } = 1;	# true indicates to do recursive processing$default{ 'recurse_hard' } = 0;	# true indicates have to cwd+ls for each remote				# subdirectory - AVOID wherever possible.$default{ 'flags_recursive' } = '-lRat'; # Flags passed to remote dir$default{ 'flags_nonrecursive' } = '-lat'; # Flags passed to remote dir$default{ 'ls_fix_mappings' } = '';# Correct pathnames in remote listings				# (eg s:usr/spool/pub/::) to match reality$default{ 'update_log' } = '';	# Filename where an update report is to be kept$default{ 'mail_to' } = '';	# Mail a report to these addresses$default{ 'mail_prog' } = $mail_prog; # the mail program (see $mail_prog)$default{ 'mail_subject' } = $mail_subject; # Subject passed to mail_prog$default{ 'comment' } = '';	# General comment used in report# If mirroring a VERY large directory then it is best to put the assoc# arrays in files (use command line switch -F. to turn on).$default{ 'use_files' }  = 0;$default{ 'interactive' } = 0;	# noninteractive copy default$default{ 'skip' } = '';	# If set then skip this entry giving value as reason$default{ 'verbose' } = 0;	# Verbose messages$default{ 'algorithm' } = 0;	# The mirror algorithm to use$default{ 'local_dir_check' } = 0; # Check local_dir exists before mirroring?# I really want to drop this option.$default{ 'delete_source' } = 0;# delete source after xfer (default = NO!!!)@boolean_values = ( 'get_newer', 'get_size_change', 'do_deletes',	'update_local',	'force_times', 'retry_call', 'recursive',	'mode_copy', 'disconnect', 'interactive', 'text_mode',	'force', 'get_file', 'verbose', 'proxy', 'delete_get_patt',	'delete_source', 'save_deletes', 'use_files', 'use_timelocal',	'make_bad_symlinks', 'recurse_hard', 'get_missing', 'strip_cr',	'passive_ftp', 'using_socks', 'local_dir_check' );%boolean_values = ();&set_assoc_from_array( *boolean_values );@regexp_values = ( 'get_patt', 'exclude_patt', 'local_ignore',		  'delete_patt', 'delete_excl', 'split_patt', 'save_deletes',		  'compress_patt', 'compress_excl', 'compress_conv_patt',		  'failed_gets_excl', 'store_remote_listing' );## message levels used by &msg( level, msg )# if you call msg as &msg( msg ) the level is presumed to be just $pr.$pr = 0;	# Always print out messages$log = 1;	# push this messages onto @log# The max number of directory failures under algorithm 1 before giving up.$max_failed_dirs = 5;## Exit status$exit_status = 0;$exit_status_xfers = 0;# "#defines" for the above$exit_xfers = 16;  # Add this to the exit code to show xfers took place$exit_ok = 0;$exit_fail = 1;$exit_fail_noconnect = 2;# -d		Turn on debugging - more -d's means more debugging.# -ppattern	Just do packages matching pattern.# -Rpattern	Skip till the first package name matches pattern then do all.#		it and following packages.# -n		Do nothing, just show what would be done.# -F		Use files for assoc arrays (see also the variable use_files).# -gsite:path#		Get all files on given site.  If path matches .*/.+ then#		it is the name of the directory and the last part is the#		pattern of filenames to get.  If path matches .*/ then#		it is the name of a directory and all its contents are retrieved.#		Otherwise path is the pattern to be used in '/'.# -r		Same as "-krecursive=false".# -kvar=val	set variable to value.# -uusername	Same as "-kremote_user=username", prompts for remote_password.# -v		Print version and exit.# -T		Dont transfer just force local timestamps to match remote.# -N		Don't load mirror.defaults.# -L		Generate a pretty list of what is being mirrored.# -m 		Same as "-kmode_copy=true".# -Cconfig_file# -P 		Same as "-kget_file=false -kinteractive=true".# -G		Same as "-kget_file=true -kinteractive=true".# -t 		Same as "-ktext_mode=true".# -f		Same as "-kforce=true".# -sSITENAME	Same as "-ksite=SITENAME.# -ULOGFILE	Set the upload log to LOGILE - if none given uses#		the file $home/upload_log.$mday.$mon.$year# -DUMP		Dump perl - to be later undumped --  THIS DOES NOT YET WORK!!!sub msg_version{	&msg( '$Id: mirror.pl,v 2.9 1998/05/29 19:01:07 lmjm Exp lmjm $' . "\n" );}parse_args:while( $ARGV[ 0 ] =~ /^-/ ){	local( $arg ) = shift;	if( $arg eq '-d' ){		if( $debug == 2 ){			&msg_version();		}		$| = 1;		$debug++;		next;	}	if( $arg =~ /^-(p)(.*)/ || $arg =~ /^-(R)(.*)/ ){		local( $flag, $p ) = ($1, $2);		if( $flag eq 'R' ){			# Skip all packages till a match is made			# then process ALL further packages			$skip_till = 1;		}		if( ! $p ){			# Must be -p/-R space arg			$p = shift;		}		if( $p !~ /[a-zA-Z0-9]/ ){			die "Invalid package name to -p of: $p\n";			next;		}		# Only mirror the named packages		$do_packages{ $p } = 1;		$limit_packages = 1;		next;	}	if( $arg eq '-n' ){		# Do nothing - just show what would be done		$dont_do = 1;		$debug += 2;		$| = 1;		next;	}	if( $arg eq '-F' ){		# Use files for the dir listings assoc lookups		$use_files = 1;		$command_line{ 'use_files' } = 1;		next;	}	if( $arg eq '-T' ){		# Don't actually get any files but just force		# local timestamps to be the same on the remote system		$timestamp = 1;		$command_line{ 'force_times' } = 'true';		next;	}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美激情艳妇裸体舞| 亚洲女厕所小便bbb| 91福利社在线观看| 国产一区二区三区电影在线观看| 18欧美亚洲精品| 久久免费电影网| 欧美午夜视频网站| voyeur盗摄精品| 麻豆91在线播放| 亚洲一二三区在线观看| 亚洲国产高清在线| 精品美女一区二区三区| 欧美日韩精品一区二区天天拍小说| 国产精品羞羞答答xxdd| 丝袜美腿一区二区三区| 亚洲免费伊人电影| 国产精品美女久久久久久久久 | 狠狠色丁香婷综合久久| 一区二区三区四区在线| 国产精品久久久久久久久动漫| 欧美va日韩va| 日韩欧美一区二区免费| 91精品国产综合久久婷婷香蕉| 日本韩国欧美在线| 94-欧美-setu| 99精品久久99久久久久| 成人美女在线视频| 丁香网亚洲国际| 国产高清亚洲一区| 国产一区视频网站| 激情久久五月天| 久久国产精品免费| 极品少妇xxxx精品少妇偷拍| 麻豆专区一区二区三区四区五区| 免费成人在线视频观看| 日韩精品成人一区二区三区| 亚洲444eee在线观看| 亚洲自拍偷拍网站| 亚洲福利一二三区| 亚洲成人免费观看| 五月婷婷综合激情| 日韩经典中文字幕一区| 老司机午夜精品| 黄色资源网久久资源365| 国模一区二区三区白浆| 国产精品资源在线看| 国产精品69久久久久水密桃| 国产在线日韩欧美| 国产不卡视频一区| 99re在线精品| 欧美人xxxx| 2022国产精品视频| 国产精品人成在线观看免费| 亚洲人成精品久久久久| 亚洲国产精品久久不卡毛片 | 色域天天综合网| 日本韩国欧美在线| 欧美一卡二卡在线观看| 欧美tickling挠脚心丨vk| 久久久高清一区二区三区| 国产精品毛片无遮挡高清| 亚洲综合精品自拍| 免费欧美在线视频| 国产成人亚洲综合色影视| 9l国产精品久久久久麻豆| 欧美日韩在线亚洲一区蜜芽| 精品国产乱码久久久久久图片| 国产亚洲成av人在线观看导航| 中文字幕在线不卡视频| 亚洲国产精品久久一线不卡| 久久精品国产在热久久| 成人小视频免费在线观看| 色久优优欧美色久优优| 欧美丰满少妇xxxxx高潮对白 | 久久久久久久久久久久电影| 久久中文字幕电影| 亚洲激情欧美激情| 毛片av一区二区三区| 99国产精品久久久久久久久久久 | 洋洋成人永久网站入口| 日韩欧美国产一区二区三区| 91在线视频观看| 看片网站欧美日韩| 亚洲午夜久久久| 国产精品美女久久久久久久久| 日韩视频免费观看高清在线视频| 色呦呦网站一区| 成人免费高清在线观看| 久草这里只有精品视频| 丝袜美腿亚洲色图| 亚洲欧美一区二区不卡| 国产欧美日韩视频一区二区| 91精品免费在线| 在线观看国产精品网站| 成人av网站在线| 国产91精品免费| 国产精品一区二区免费不卡 | 国产99久久精品| 久久99精品视频| 蜜臀av一区二区在线观看| 怡红院av一区二区三区| 国产精品国产三级国产三级人妇 | 亚洲va欧美va天堂v国产综合| 亚洲欧美日韩国产中文在线| 国产精品嫩草影院com| 久久久久99精品国产片| 精品国产99国产精品| 精品福利av导航| 亚洲精品一区二区三区影院| 精品国产一区二区三区av性色 | 精品视频1区2区3区| 欧美日韩一级二级| 欧美日韩的一区二区| 欧美日韩亚洲综合| 欧美久久久久中文字幕| 宅男在线国产精品| 日韩欧美视频在线| 精品国产青草久久久久福利| 欧美电视剧免费观看| 久久综合色之久久综合| 久久影院午夜片一区| 国产精品女人毛片| 一区二区三区丝袜| 丝袜美腿亚洲一区| 狠狠色综合播放一区二区| 国产乱对白刺激视频不卡| 国产一区二区三区电影在线观看| 国产福利一区二区三区视频| 成人爱爱电影网址| 欧美专区亚洲专区| 日韩一区二区三区精品视频| 精品少妇一区二区三区| 国产精品亲子乱子伦xxxx裸| 中文字幕日韩一区二区| 亚洲国产精品久久人人爱蜜臀| 日本午夜精品视频在线观看 | 日韩电影免费在线观看网站| 蜜桃av一区二区| 成人一区在线观看| 91极品美女在线| 日韩精品专区在线| 国产精品无码永久免费888| 亚洲精品欧美专区| 蜜臀久久99精品久久久久宅男| 国产99久久久精品| 欧美日韩亚洲不卡| 国产日产精品1区| 亚洲国产欧美在线| 国产又黄又大久久| 欧美三级一区二区| 久久久久99精品国产片| 亚洲综合偷拍欧美一区色| 国产一区二区三区精品欧美日韩一区二区三区 | 高清免费成人av| 欧美日韩一区二区在线视频| 久久久精品人体av艺术| 亚洲第一搞黄网站| 丁香天五香天堂综合| 欧美精品18+| 国产精品久久久久影视| 免费看日韩a级影片| 成人av网站大全| 欧美不卡一区二区三区四区| 亚洲男人的天堂在线aⅴ视频| 极品销魂美女一区二区三区| 在线一区二区视频| 国产精品网站在线观看| 免费欧美高清视频| 欧美日韩亚洲国产综合| 成人免费在线视频| 精品午夜久久福利影院| 欧美系列一区二区| 日韩码欧中文字| 国产精品69久久久久水密桃| 欧美高清一级片在线| 亚洲女子a中天字幕| 成人在线综合网站| 久久网站热最新地址| 日本va欧美va精品发布| 91麻豆高清视频| 欧美国产一区二区在线观看| 国产在线乱码一区二区三区| 91精品国产色综合久久ai换脸 | 7777精品伊人久久久大香线蕉的| 国产精品少妇自拍| 粉嫩一区二区三区在线看| 久久在线免费观看| 国内精品伊人久久久久影院对白| 欧美一区二区三区影视| 亚洲1区2区3区4区| 国产精品毛片久久久久久久| 国产精品亚洲人在线观看| 2020国产精品| 国产aⅴ综合色| 亚洲国产岛国毛片在线| 暴力调教一区二区三区| 国产精品久久久久三级| 91视频在线看| 亚洲欧美另类久久久精品| 在线区一区二视频|