99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

CS3214代做、代寫Java,C++程序語言

時(shí)間:2023-12-02  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)



CS**14 Fall 2023 Project 4 - “Personal Web and Video Server”
Due Date: Check course website for due date.
This project must be done in groups of 2 students. Please read the syllabus for instructions, deadlines, penalties, and accommodations regarding group formation and management.
1 Introduction
This assignment introduces you to the principles of internetwork communication using
the HTTP and TCP protocols, which form two of the most widely used protocols in today’s Internet.
In addition, the assignment will introduce you to existing methods for securely representing claims between parties, using the example of JSON Web Tokens as described in RFC
7519 [2].
Last but not least, it will provide an example of how to implement a concurrent server
that can handle multiple clients simultaneously.
2 Functionality
The goal of the project is to build a small personal web server that can serve files, stream
MP4 video, and provides a simple token-based authentication API.
The web server should implement persistent connections as per the HTTP/1.1 protocol.
HTTP/1.1 is specified in a series of “request for comments” (RFC) standards documents
(RFC 7230-7237), though the earlier RFC 2616 [1] provides a shorter read.
You should use code we provide as a base from which to start. To that end, fork the
repository at https://git.cs.vt.edu/cs**14-staff/pserv. Be sure to set your
fork to be private!
2.1 Serving Files
Your web server should, like a traditional web server, support serving files from a directory (the ’server root’) in the server’s file system. These files should appear under the
root (/) URL. For instance, if the URL /private/secure.html is visited and the root
directory is set to a directory $DIR that contains the directory private, the content of
the file $DIR/private/secure.html should be served. You should return appropriate content type headers, based on the served file’s suffix. Support at least .html, .js, .css,
.mp4, and .svg files; see /etc/mime.types for a complete list.
Make sure that you do not accidentally expose other files by ensuring that
the request url’s path does not contain .. (two adjacent periods), such as
/public/../../../../../etc/passwd.
1
1Technically, RFC 3986 suggests that you remove those dot segments using an algorithm, but for the
Created by G. Back (gback@cs.vt.edu) 1 November 24, 2023
CS**14 Fall 2023 Project 4 - “Personal Web and Video Server”
You should return appropriate error codes for requests to URLs you do not support.
2.2 Authentication
You must, at a minimum, support a single user that will authenticate with a username
and password. If the user is authenticated, they should have access to the secure portion
of your server, which are all files located under /private. Otherwise, such access should
be denied.
Your server should implement the entry point /api/login as follows:
• When used as the target of a POST request, the body of the request must contain
{"username":"user2023","password":"passwordf23"}
where ‘user2023‘ is the name of the user and ‘passwordf23‘ is their password. If the
password is correct, your server should respond with a JSON object that describes
claims that the client can later use to prove it has successfully authenticated.
Send (at least) the following claims: (a) sub - to describe the subject (the principal as
which the server will recognize the bearer of the claim), (b) iat - the time at which
the claim was issued, in seconds since Jan 1, 1970, and (c) exp - the time at which
the claim will expire.
For example, a claim may look like this:
{"exp":1700231009,"iat":1700144609,"sub":"user2023"}
Returning the claims in the response, however, is not sufficient. The client must
also obtain a signature from the server that certifies that the server issued the token (i.e., that the user’s password was correct and thus the user has successfully
authenticated).
This signature is obtained in the form of a JSON Web Token, which the server should
return as a cookie to the client. You may choose an appropriate signing mechanism
(either HMAC or using a private/public key pair using RSA, suggested is HMAC).
You may use the jansson and libjwt libraries which are installed as part of the provided code. Check out the files jwt demo hs256.c and jwt demo rs256.c for
examples.
See MDN for documentation on the format of the Set-Cookie header which you
must follow. Make sure to set the cookie’s path to / so that the cookie is sent along
for all URIs. You may choose a suitable cookie name such as auth token.
You should also set an expiration time for the cookie via the Max-Age attribute,
which you should set to the expiration time (in seconds) of the token. Your cookie
should also be HTTP-only (set the HttpOnly attribute) and the SameSite attribute
should be set to Lax.
purposes of this project we’ll assume that the client has applied this algorithm and our server will reject
any URLs for which it hasn’t.
Created by G. Back (gback@cs.vt.edu) 2 November 24, 2023
CS**14 Fall 2023 Project 4 - “Personal Web and Video Server”
If the username/password does not match, your server should return 403 Forbidden.
• When used in a GET request, /api/login should return the claims the client presented in its request as a JSON object if the user is authenticated, or an empty object
{} if not.
Be sure to validate tokens before deciding whether the client is authenticated or not;
do not accept tokens that have expired or whose signature does not validate.
You should implement this without storing information about which cookies your
server has issued server-side, but rather simply by validating the token the client
presents.
The JSON object shall be returned in the body of the response.
Your server should implement the entry point /api/logout as well. When used in
a POST request, your server should ask the client to clear the cookie from its cookie
store by returning a Set-Cookie: header for the cookie in which the Max-Age
attribute is set to 0.
The type of “stateless authentication” can be used to provide a simple, yet scalable form of authentication. Unlike in traditional schemes in which the server must
maintain a session store to remember past actions by a client, the presented token
contains proof of past authentication, and thus the server can directly proceed in
handling the request if it can validate the token. Moreover, this way of securely
presenting claims allows authentication servers that are separate from the servers
that provide a resource or service: for instance, if you log onto a website via Google
or Facebook, their authentication server will present a signed token to you which
you can later use to prove to a third server that Google or Facebook successfully
authenticated you.
However, such stateless authentication also has drawbacks: revoking a user’s access can be more difficult since a token, once issued, cannot be taken away. Thus,
the server either has to keep revocation lists (in which case a session-like functionality must be implemented), or keep token expiration times short (requiring more
frequent reauthentication or a token refresh scheme), or by changing the server’s
key (which invalidates all tokens for all users). For this assignment, you do not
need to implement revocation.
We recommend you read the Introduction to JSON Web Tokens tutorial by Auth0.
Note that JSON Web Tokens are not the only technology that make uses of cryptographically signed tokens. Others include PASETO and IRON Session.
2.3 Supporting HTML5 Fallback
Modern web applications exploit the History API, which is a feature by which JavaScript
code in the client can change the URL that’s displayed in the address bar, making it appear to the user that they have navigated to a new URL when in fact all changes to the
Created by G. Back (gback@cs.vt.edu) 3 November 24, 2023
CS**14 Fall 2023 Project 4 - “Personal Web and Video Server”
page were driven by JavaScript code that was originally loaded. This is also known as
“client-side routing,” see React Router for how this is accomplished in the popular React
framework.
When a URL that was modified in this way is bookmarked and later retrieved, or if the
user refreshes the page while the modified URL is displayed, a request with this URL will
be sent to the server, but it does not correspond to an existing server resource.
If the server is aware that this scenario can occur, it can respond with one or more suitable
prerendered resources so that the user will not notice which routes existed only on client
vs server. Such a resource is called a fallback resource.
This semester, we will implement a suitable fallback policy to host a Svelte application,
and you should implement the following algorithm if the -a is given to your server to
enable HTML5 fallback:
• First, check if the requested pathname represents an API endpoint or an existing
file; if so, handle it. Else:
• if the requested path is /, treat it as a request for /index.html.
• if the requested path is /some/path and a file some/path.html exists relative to
your server’s root directory, serve it.
• else, treat the request as if /200.html had been requested, returning this file if it
exists in your server’s root directory, or 404 otherwise.
2.4 Streaming MP4
To support MP4 streaming, your server should advertise that it can handle Range requests to transfer only part (a byte range) of a file. You should send an appropriate
Accept-Ranges header and your server should interpret Range headers sent by a client.
To support a basic streaming server, it is sufficient to support only single-range requests
such as Range: bytes=20****- or Range: bytes=500-700. Be sure to return
an appropriate Content-Range header. Browsers will typically close a connection (and
create a new one) if the user forwards or rewinds to a different point in the stream.
To let clients learn about which videos are available for streaming, your server should
support an entry point /api/video. GET requests to this entry point should return a
JSON object that is a list of videos that can be served, in the following format:
[
{
"size": 1659601458,
"name": "LectureVirtualMemory.mp4"
},
{
"size": 961**4828,
Created by G. Back (gback@cs.vt.edu) 4 November 24, 2023
CS**14 Fall 2023 Project 4 - “Personal Web and Video Server”
"name": "Boggle.mp4"
},
{
"size": 1312962263,
"name": "OptimizingLocking.mp4"
},
{
"size": 423958714,
"name": "DemoFork.mp4"
}
]
Use the opendir(3) and readdir(3) calls to list all files in the server’s root directory
(or a subdirectory, at your choosing), selecting those that carry the suffix .mp4. Use the
stat(2) system call to find the size of each file.
2.5 Multiple Client Support
For all of the above services, your implementation should support multiple clients simultaneously. This means that it must be able to accept new clients and process HTTP
requests even while HTTP transactions with already accepted clients are still in progress.
You must use a single-process approach, either using multiple threads, or using an eventbased approach.2
If using a thread-based approach, it is up to you whether you spawn new threads for
every client, or use a thread pool. You may modify or reuse parts of your thread pool
implementation from project 2, if this is useful.3
To test that your implementation supports multiple clients correctly, we will connect to
your server, then delay the sending of the HTTP request. While your server has accepted
one client and is waiting for the first HTTP request by that client, it must be ready to
accept and serve additional clients. Your server may impose a reasonable limit on the
number of clients it simultaneously serves in this way.
2.6 Robustness
Network servers are designed for long running use. As such, they must be programmed
in a manner that is robust, even when individual clients send ill-formed requests, crash,
delay responses, or violate the HTTP protocol specification in other ways. No error incurred while handling one client’s request should impede your server’s ability to accept and handle
future clients.
2For the purposes of this project, a multi-process approach is not acceptable.
3Please note, however, that the fork-join thread pool was implemented with a different goal in mind and
that some aspects here do not apply to this project, notably the fork-join aspect. We recommend trying a
thread-based approach first.
Created by G. Back (gback@cs.vt.edu) 5 November 24, 2023
CS**14 Fall 2023 Project 4 - “Personal Web and Video Server”
This semester we will be using a research prototype of a new fuzzing software to test your
server software. Instructions for how to do this will be separately provided.
2.7 Performance and Scalability
We will benchmark your service to figure out the maximum number of clients and rate
of requests it can support. Note that for your server to be benchmarked, it must obtain
a full score in the robustness category first. We will publish a script to benchmark your
server. A scoreboard will be posted to compare your results with the rest of the class.
2.8 Protocol Independence
The Internet has been undergoing a transition from IPv4 to IPv6 over the last 2.5 decades.
To see a current data point, Google publishes current statistics on the number of users
that use IPv6 to access Google’s services. This transition is spurred by the exhaustion of
the IPv4 address space as well as by political mandates.
Since IPv4 addresses can be used to communicate only between IPv4-enabled applications, and since IPv6 addresses can be used to communicate only between IPv6-enabled
applications, applications need to be designed to support both protocols and addresses,
using whichever is appropriate for a particular connection. For a TCP/UDP server, this
requires accepting connections both via IPv6 as well as via IPv4, depending on which versions are available on a particular system. For a TCP/UDP client, this requires to identify
the addresses at which a particular server can be reached, and try them in order. Typically,
if a server is reachable via both IPv4 and IPv6, the IPv6 address is tried first, falling back
to the IPv4 address if that fails, although it has also been proposed to try both addresses
concurrently (see the Happy Eyeballs RFC[3].)
Ensuring protocol independence requires avoiding any dependence on a specific protocol
in your code. Fortunately, the socket API was designed to support multiple protocols
from the beginning as its designers foresaw that protocols and addressing mechanisms
would evolve. For instance, the bind() and connect() calls refer to the addresses
passed using the type struct sockaddr * which is an opaque type that could refer to
either a IPv4 or IPv6 address.
To implement protocol independence, you need to avoid any dependence on a
particular address family. Accordingly, you should use the getaddrinfo(3) or
getnameinfo(3) functions to translate from symbolic names to addresses and
vice versa and you should avoid the outdated functions gethostbyname(3),
getaddrbyname(3), or inet ntoa(3) or inet ntop(3).
Tutorials on how to write protocol independent network code are given in this resource
and in the code for the textbook’s 3rd edition. However, neither tutorial is fully correct
and will require (minor) adaptations.
Ensuring that your server can accept both IPv4 and IPv6 clients can be implemented
using two separate sockets, one bound to either family. Two separate threads can then
Created by G. Back (gback@cs.vt.edu) 6 November 24, 2023
CS**14 Fall 2023 Project 4 - “Personal Web and Video Server”
be devoted to these sockets to accept clients that connect using either of the two protocol
families.
However, the Linux kernel provides a convenience feature that provides a simpler facility for accepting both IPv6 and IPv4 clients. This so-called dual-bind feature allows
a socket bound to an IPv6 socket to accept IPv4 clients. Linux activates this feature if
/proc/sys/net/ipv6/bindv6only contains 0. You may assume in your code that dualbind is turned on. 4
Our starter code uses protocol independent functions, but it is tested with IPv4 only.
Augmenting it to implement protocol independence is part of your assignment.
2.9 Choice of Port Numbers
Port numbers are shared among all processes on a machine. To reduce the potential for
conflicts, use a port number that is 10, 000 + last four digits of the student id of a team
member.
If a port number is already in use, bind() will fail with EADDRINUSE. If you weren’t
using that port number before, someone else might have. Choose a different port number
in that case. Otherwise, and more frequently, it may be that the port number is still in use
because of your testing. Check that you have killed all processes you may have started on
the machine you are working on while testing. Even after you have killed your processes,
binding to a port number may fail for an additional 2 min period if that port number
recently accepted clients. This timeout is built into the TCP protocol to avoid mistaking
delayed packets sent on old connections for packets that belong to new connections using
the same port number. To override it, you may use setsockopt() with the SO REUSEADDR
flag to allow address reuse (which the provided code already does for you).
3 Strategy
Make sure you understand the roles of DNS host names, IP addresses, and port numbers
in the context of TCP communication. Study the roles of the necessary socket API calls.
Since you may be using a multi-threaded design, use thread-safe versions of all functions.
Familiarize yourselves with the commands wget(1) and curl(1) and the specific flags
that show you headers and protocol versions. These programs can be extremely helpful
in debugging web servers.
Refresh your knowledge of strace(1), which is an essential tool to debug your server’s
interactions with the outside world. Whenever you are in doubt about your server actually sends or receives, strace it. Use -s 1024 to avoid cutting off the contents of reads
and writes (or recv and send calls). Don’t forget -f to allow strace to follow spawned
threads.
4
I should point out, however, that this will make your code Linux-specific; truly portable socket code
will need to resort to handling accepts on multiple sockets.
Created by G. Back (gback@cs.vt.edu) 7 November 24, 2023
CS**14 Fall 2023 Project 4 - “Personal Web and Video Server”
4 Grading
4.1 Coding Style
Your service must be implemented in the C language. You should follow proper coding
conventions with respect to documentation, naming, and scoping. You must check the
return values of all system calls and library functions.
Your code should compile under -Wall without warnings, the use of the -Werror flag
as part of CFLAGS should have become a habit by now, as is the use of git for revision
control.
4.2 Submission
You should submit a .tar.gz file of the src directory of your project, which must contain
a Makefile. Your project should build with ‘make clean all’ This command must build an
executable named ’server’ that must accept the following command line arguments:
• -p port When given, your web service must start accepting HTTP clients and
serving HTTP requests on port ’port.’ Multiple connection must be supported.
• -R path When given, ‘path’ specifies the root directory of your server.
• -s Silent mode (for benchmarking). When given, your server should suppress any
output to standard output.
• -e sec Specify the expiration time for the issued JWT in seconds. Your server must
enforce this expiration time.
• -a HTML5 Fallback mode. When given, requests for non-existing resources should
be responded to as if the request had been for /index.html.
Please test that ‘make clean’ removes all executables and object files. Issue ‘make clean’
before submitting to keep the size of the tar ball small. Please use the submit.py script or
web page and submit as ’p4’. Only one group member need submit.
Further submission instructions are posted on the course website.
This project will count for 120 points.
請(qǐng)加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

掃一掃在手機(jī)打開當(dāng)前頁
  • 上一篇:COMP4142代做、代寫Python,c/c++編程
  • 下一篇:代寫CMPT 125、代做Computing Science
  • 無相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
    出評(píng) 開團(tuán)工具
    出評(píng) 開團(tuán)工具
    挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
    挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
    海信羅馬假日洗衣機(jī)亮相AWE  復(fù)古美學(xué)與現(xiàn)代科技完美結(jié)合
    海信羅馬假日洗衣機(jī)亮相AWE 復(fù)古美學(xué)與現(xiàn)代
    合肥機(jī)場(chǎng)巴士4號(hào)線
    合肥機(jī)場(chǎng)巴士4號(hào)線
    合肥機(jī)場(chǎng)巴士3號(hào)線
    合肥機(jī)場(chǎng)巴士3號(hào)線
    合肥機(jī)場(chǎng)巴士2號(hào)線
    合肥機(jī)場(chǎng)巴士2號(hào)線
    合肥機(jī)場(chǎng)巴士1號(hào)線
    合肥機(jī)場(chǎng)巴士1號(hào)線
  • 短信驗(yàn)證碼 豆包 幣安下載 AI生圖 目錄網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號(hào)-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                日本在线观看不卡视频| 免费亚洲电影在线| 免费在线观看日韩欧美| 欧美伊人久久久久久久久影院 | 亚洲丰满少妇videoshd| 欧美精品1区2区3区| 麻豆精品一区二区三区| 久久综合九色综合97婷婷| 国产a区久久久| 亚洲永久精品大片| 精品国产一区二区三区不卡| 成人国产一区二区三区精品| 国产精品免费免费| 9191久久久久久久久久久| 久久99国产精品久久| 国产性天天综合网| 午夜电影一区二区三区| 欧美刺激脚交jootjob| 国产成人精品综合在线观看 | 精品国产电影一区二区| 国产成人av影院| 一区二区国产盗摄色噜噜| 欧美一区二区福利视频| 成人污污视频在线观看| 国产精品久久久久久妇女6080| 色呦呦网站一区| 乱中年女人伦av一区二区| 中文字幕精品在线不卡| 欧美性受xxxx黑人xyx| 狠狠色丁香久久婷婷综| 亚洲乱码国产乱码精品精小说| 欧美日韩亚洲综合在线 | 一级女性全黄久久生活片免费| 欧美日韩国产高清一区二区三区 | caoporm超碰国产精品| 另类综合日韩欧美亚洲| 一区二区三区欧美视频| 久久综合精品国产一区二区三区| 日本韩国欧美一区| 白白色 亚洲乱淫| 成人免费毛片app| 国产丶欧美丶日本不卡视频| 日韩av在线免费观看不卡| 一区二区三区在线视频免费观看| 亚洲欧洲成人自拍| 中文字幕 久热精品 视频在线| 欧美一区二区三级| 51精品国自产在线| 欧美色男人天堂| 日本高清不卡视频| 色狠狠一区二区| 在线观看亚洲一区| 欧美日韩一区二区不卡| 欧美一区二区三区免费在线看| 在线成人免费观看| 欧美一级在线免费| 日韩免费一区二区三区在线播放| 欧美日韩视频不卡| 色网站国产精品| 欧美人伦禁忌dvd放荡欲情| 欧美性猛片xxxx免费看久爱| 欧美日韩一区三区四区| 欧美日韩国产综合一区二区| 色综合久久久久久久| 99久久免费视频.com| 国产精一区二区三区| 首页国产欧美久久| 亚洲123区在线观看| 国产在线播放一区| 国产成人无遮挡在线视频| 风流少妇一区二区| 捆绑调教一区二区三区| 国产91在线看| 蜜桃在线一区二区三区| 成人精品gif动图一区| 偷拍一区二区三区| 国产美女在线观看一区| 日韩精品一区第一页| 日本伊人午夜精品| 国产精品第五页| 日韩 欧美一区二区三区| 自拍偷拍国产精品| 日韩av中文字幕一区二区三区| 国产欧美日产一区| 一区二区成人在线视频| 1区2区3区国产精品| 亚洲福中文字幕伊人影院| 一区二区三区四区五区视频在线观看| 亚洲国产综合在线| 亚洲亚洲人成综合网络| 国产在线精品一区在线观看麻豆| 免费在线成人网| 一本色道久久综合精品竹菊| 一本色道久久综合狠狠躁的推荐 | 成人国产精品免费观看| 欧美日韩另类国产亚洲欧美一级| 日韩激情一二三区| 91欧美一区二区| 看国产成人h片视频| 在线视频欧美精品| 日本不卡高清视频| 国产精品自拍av| 欧美老肥妇做.爰bbww视频| 欧美精品 国产精品| 专区另类欧美日韩| 亚洲成人av资源| 色视频欧美一区二区三区| 色综合中文字幕国产 | 免费看日韩精品| 香港成人在线视频| 在线一区二区视频| 制服丝袜亚洲网站| 亚洲一区二区在线观看视频 | 99精品视频在线免费观看| 精品国产3级a| 91在线视频观看| 久久精品亚洲国产奇米99| 欧美精品九九99久久| 99久久久久久99| 国产日韩精品一区二区三区| 欧美精品一区二区在线播放| 精品国产免费一区二区三区香蕉 | 日韩欧美三级在线| 无吗不卡中文字幕| 亚洲一区二区三区免费视频| 一本色道a无线码一区v| 欧美三电影在线| 亚洲综合成人在线| 蜜臀精品一区二区三区在线观看 | 激情都市一区二区| 精品伦理精品一区| 国产精品久久久久久亚洲伦 | 一区二区三区四区激情| 日韩伦理av电影| 欧美在线综合视频| 99在线精品一区二区三区| 国产精品久久久久久久久晋中| 久久精品网站免费观看| 一区二区三区在线观看视频| 久久一二三国产| 亚洲高清免费观看| 欧美www视频| 韩国在线一区二区| 26uuu国产一区二区三区| 成人av午夜影院| 亚洲国产日韩a在线播放| 欧美亚洲自拍偷拍| 成人一道本在线| 国产区在线观看成人精品| 91免费国产视频网站| 久久精品夜色噜噜亚洲a∨| 97国产一区二区| 国产偷v国产偷v亚洲高清| 色香色香欲天天天影视综合网| 精品88久久久久88久久久| 色综合久久天天综合网| 精品处破学生在线二十三| 99久久精品99国产精品| 久久成人av少妇免费| 精品国产一区二区三区四区四| 成人av电影免费在线播放| 亚洲欧洲国产日韩| 一区二区三区日韩欧美| 欧美成人一级视频| 色av一区二区| 亚洲裸体在线观看| 精品欧美一区二区三区精品久久| 亚洲午夜激情网页| 国产精品免费视频一区| 国产91丝袜在线播放| 日本不卡视频一二三区| 欧美日韩综合在线免费观看| 播五月开心婷婷综合| 国产精品欧美经典| 91麻豆精品国产91久久久 | 欧美色视频在线| 欧美日韩国产中文| 91女人视频在线观看| 国产乱码精品一区二区三区忘忧草| 日韩欧美国产一区二区在线播放| 日本韩国一区二区| 亚洲一区二区三区激情| 亚洲三级免费电影| 欧美日韩国产综合久久| 欧美这里有精品| 日本vs亚洲vs韩国一区三区| 亚洲国产中文字幕在线视频综合| 久久久蜜桃精品| 99re成人精品视频| 99久久精品免费| 夜夜精品浪潮av一区二区三区| 国产精品久久夜| 日本精品免费观看高清观看| 91浏览器在线视频| 69成人精品免费视频| 精品在线播放免费| 成人18视频在线播放| 国产自产v一区二区三区c| 伦理电影国产精品| 亚洲毛片av在线|