青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

S.l.e!ep.¢%

像打了激速一樣,以四倍的速度運轉,開心的工作
簡單、開放、平等的公司文化;尊重個性、自由與個人價值;
posts - 1098, comments - 335, trackbacks - 0, articles - 1
  C++博客 :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理

Boost.Asio翻譯(三)[轉]

Posted on 2009-01-31 00:58 S.l.e!ep.¢% 閱讀(1557) 評論(0)  編輯 收藏 引用 所屬分類: C++

Daytime.1 - A synchronous TCP daytime client

一個同步的 TCP daytime 客戶端 ?

?

This tutorial program shows how to use asio to implement a client application with TCP.

We start by including the necessary header files.

?本示例程序顯示如何使用Asio來實現一個TCP客戶端程序。

讓我們從添加必需的頭文件開始。

						
								
										
#include? < iostream >
#include?
< boost / array.hpp >
#include?
< boost / asio.hpp >

The purpose of this application is to access a daytime service, so we need the user to specify the server.

這個應用程序的目的是訪問一個daytime服務器,因此我們需要用戶去指定服務器。(如time-nw.nist.gov,用IP亦可)

						
								
										
using ?boost::asio::ip::tcp;

int ?main( int ?argc,? char * ?argv[])
{
??
try
??{
????
if ?(argc? != ? 2 )
????{
??????std::cerr?
<< ? " Usage:?client?<host> " ? << ?std::endl;
??????
return ? 1 ;
????}

All programs that use asio need to have at least one boost::asio::io_service object.

所有使用 asio 的程序都至少需要一個boost::asio::io_service對象

						
								
????boost::asio::io_service?io_service;

We need to turn the server name that was specified as a parameter to the application, into a TCP endpoint. To do this we use an boost::asio::ip::tcp::resolver object.

?我們需要把服務器的名稱轉化為TCP的節點,而該名稱是通過應用程序的參數指定的。我們使用boost::asio::ip::tcp::resolver 對象來完成。

						
								
????tcp::resolver?resolver(io_service);

A resolver takes a query object and turns it into a list of endpoints. We construct a query using the name of the server, specified in argv[1], and the name of the service, in this case "daytime".

一個 resolver 對象 獲得一個 query 對象 , 并將其轉換為節點列表 . 我們 通過 argv[1] 中的 服務器名稱 服務名,在這里是 daytime ,構造一個 query ??

?

						
								
???tcp::resolver::query?query(argv[ 1 ],? " daytime " );

The list of endpoints is returned using an iterator of type boost::asio::ip::tcp::resolver::iterator. A default constructed boost::asio::ip::tcp::resolver::iterator object is used as the end iterator.

節點列表用 boost::asio::ip::tcp::resolver::iterator 類型的迭代器返回。返回的 iterator 將采用 boos t::asio::ip::tcp::resolver::iterator 的默認構造函數來構造。

						
								
????tcp::resolver::iterator?endpoint_iterator? = ?resolver.resolve(query);
????tcp::resolver::iterator?end;

Now we create and connect the socket. The list of endpoints obtained above may contain both IPv4 and IPv6 endpoints, so we need to try each of them until we find one that works. This keeps the client program independent of a specific IP version.

現在我們建立一個socket并連接之,由于獲得的節點既有IPv4也有IPv6的。所以,我們需要依次嘗試訪問它們直到找到一個可以正常工作的。這樣做可使得我們的程序獨立于特定的IP版本。

						
								
????tcp::socket?socket(io_service);
????boost::system::error_code?error?
= ?boost::asio::error::host_not_found;
????
while ?(error? && ?endpoint_iterator? != ?end)
????{
??????socket.close();
??????socket.connect(
* endpoint_iterator ++ ,?error);
????}
????
if ?(error)
??????
throw ?boost::system::system_error(error);

The connection is open. All we need to do now is read the response from the daytime service.

We use a boost::array to hold the received data. The boost::asio::buffer() function automatically determines the size of the array to help prevent buffer overruns. Instead of a boost::array, we could have used a char[] or std::vector.

連接打開后,現在我們需要做的就是讀取daytime服務器的響應。

我們使用boost::array 來存放接收到的數據。boost::asio::buffer()函數會自動確定array的長度來防止緩沖區溢出。我們也可以使用 char[]?或 std::vector來代替boost::array。

						
								
???? for ?(;;)
????{
??????boost::array
< char ,? 128 > ?buf;
??????boost::system::error_code?error;

??????size_t?len?
= ?socket.read_some(boost::asio::buffer(buf),?error);

When the server closes the connection, the boost::asio::ip::tcp::socket::read_some() function will exit with the boost::asio::error::eof error, which is how we know to exit the loop.

當服務器關閉連接時,boost::asio::ip::tcp::socket::read_some() 函數 boost::asio::error::eof 錯誤 標志 返回 , 通過該錯誤標志,我們知道應該退出循環了

						
								
?????? if ?(error? == ?boost::asio::error::eof)
????????
break ;? // ?Connection?closed?cleanly?by?peer.
?????? else ? if ?(error)
????????
throw ?boost::system::system_error(error);? // ?Some?other?error.

??????std::cout.write(buf.data(),?len);
????}

Finally, handle any exceptions that may have been thrown.

最后,處理所有可能拋出的異常

						
								
??}
??
catch ?(std::exception & ?e)
??{
????std::cerr?
<< ?e.what()? << ?std::endl;
??}

See the full source listing

完整代碼:

//
// ?client.cpp
// ?~~~~~~~~~~
//
// ?Copyright?(c)?2003-2008?Christopher?M.?Kohlhoff?(chris?at?kohlhoff?dot?com)
//
// ?Distributed?under?the?Boost?Software?License,?Version?1.0.?(See?accompanying? // ?file?LICENSE_1_0.txt?or?copy?at? http://www.boost.org/LICENSE_1_0.txt )
//

#include?
< iostream >
#include?
< boost / array.hpp >
#include?
< boost / asio.hpp >

using ?boost::asio::ip::tcp;

int ?main( int ?argc,? char * ?argv[])
{
??
try
??{
????
if ?(argc? != ? 2 )
????{
??????std::cerr?
<< ? " Usage:?client?<host> " ? << ?std::endl;
??????
return ? 1 ;
????}

????boost::asio::io_service?io_service;

????tcp::resolver?resolver(io_service);
????tcp::resolver::query?query(argv[
1 ],? " daytime " );
????tcp::resolver::iterator?endpoint_iterator?
= ?resolver.resolve(query);
????tcp::resolver::iterator?end;

????tcp::socket?socket(io_service);
????boost::system::error_code?error?
= ?boost::asio::error::host_not_found;
????
while ?(error? && ?endpoint_iterator? != ?end)
????{
??????socket.close();
??????socket.connect(
* endpoint_iterator ++ ,?error);
????}
????
if ?(error)
??????
throw ?boost::system::system_error(error);

????
for ?(;;)
????{
??????boost::array
< char ,? 128 > ?buf;
??????boost::system::error_code?error;

??????size_t?len?
= ?socket.read_some(boost::asio::buffer(buf),?error);

??????
if ?(error? == ?boost::asio::error::eof)
????????
break ;? // ?Connection?closed?cleanly?by?peer.
?????? else ? if ?(error)
????????
throw ?boost::system::system_error(error);? // ?Some?other?error.

??????std::cout.write(buf.data(),?len);
????}
??}
??
catch ?(std::exception & ?e)
??{
????std::cerr?
<< ?e.what()? << ?std::endl;
??}

??
return ? 0 ;
}

Daytime.2 - A synchronous TCP daytime server

一個同步的 TCP daytime 服務器

This tutorial program shows how to use asio to implement a server application with TCP.

?本示例示范如何使用Asio來實現一個TCP服務器程序。

										
												
														
#include? < ctime >
#include?
< iostream >
#include?
< string >
#include?
< boost / asio.hpp >

using ?boost::asio::ip::tcp;

We define the function make_daytime_string() to create the string to be sent back to the client. This function will be reused in all of our daytime server applications.

我們先定義一個make_daytime_string()來產生需要發送給客戶端的字符串.這個函數會在我們所有的daytime服務器上被使用。

										
												
														
std:: string ?make_daytime_string()
{
??
using ? namespace ?std;? // ?For?time_t,?time?and?ctime;
??time_t?now? = ?time( 0 );
??
return ?ctime( & now);
}

int ?main()
{
??
try
??{
????boost::asio::io_service?io_service;

A boost::asio::ip::tcp::acceptor object needs to be created to listen for new connections. It is initialised to listen on TCP port 13, for IP version 4.

新建一個asio::ip::tcp::acceptor對象來監聽新的連接。該對象應遵守IPv4協議,監聽TCP端口13

???

?

tcp::acceptor?acceptor(io_service,?tcp::endpoint(tcp::v4(),? 13 ));

?

This is an iterative server, which means that it will handle one connection at a time. Create a socket that will represent the connection to the client, and then wait for a connection.

這是一個iterative server,也就是說同一時間只能處理一個連接。建立一個表示與客戶端的連接的socket, 然后等待客戶端的連接。

										
												
???? for ?(;;)
????{
??????tcp::socket?socket(io_service);
??????acceptor.accept(socket);

A client is accessing our service. Determine the current time and transfer this information to the client.

當客戶端訪問服務器時,獲取當前時間,并傳送給客戶端。
										
												
??????std:: string ?message? = ?make_daytime_string();

??????boost::system::error_code?ignored_error;
??????boost::asio::write(socket,?boost::asio::buffer(message),
??????????boost::asio::transfer_all(),?ignored_error);
????}
??}

Finally, handle any exceptions.

最后,

處理異常。

										
												
?? catch ?(std::exception & ?e)
??{
????std::cerr?
<< ?e.what()? << ?std::endl;
??}

??
return ? 0 ;
}

See the full source listing

全部源碼:

//
// ?server.cpp
// ?~~~~~~~~~~
//
// ?Copyright?(c)?2003-2008?Christopher?M.?Kohlhoff?(chris?at?kohlhoff?dot?com)
//
// ?Distributed?under?the?Boost?Software?License,?Version?1.0.?(See?accompanying? // ?file?LICENSE_1_0.txt?or?copy?at? http://www.boost.org/LICENSE_1_0.txt )
//

#include?
< ctime >
#include?
< iostream >
#include?
< string >
#include?
< boost / asio.hpp >

using ?boost::asio::ip::tcp;

std::
string ?make_daytime_string()
{
??
using ? namespace ?std;? // ?For?time_t,?time?and?ctime;
??time_t?now? = ?time( 0 );
??
return ?ctime( & now);
}

int ?main()
{
??
try
??{
????boost::asio::io_service?io_service;

????tcp::acceptor?acceptor(io_service,?tcp::endpoint(tcp::v4(),?
13 ));

????
for ?(;;)
????{
??????tcp::socket?socket(io_service);
??????acceptor.accept(socket);

??????std::
string ?message? = ?make_daytime_string();

??????boost::system::error_code?ignored_error;
??????boost::asio::write(socket,?boost::asio::buffer(message),
??????????boost::asio::transfer_all(),?ignored_error);
????}
??}
??
catch ?(std::exception & ?e)
??{
????std::cerr?
<< ?e.what()? << ?std::endl;
??}

??
return ? 0 ;
}

The main() function

主函數

														
																
																		
int ?main()
{
??
try
??{

We need to create a server object to accept incoming client connections. The boost::asio::io_service object provides I/O services, such as sockets, that the server object will use.

我們需要創建一個服務器對象,用來接受客戶端的連接。boost::asio::io_service對象提供了像sockets這樣的I/O服務,這些服務都是服務器對象將要使用的。

														
																
????boost::asio::io_service?io_service;
????tcp_server?server(io_service);

Run the boost::asio::io_service object so that it will perform asynchronous operations on your behalf.

運行boost::asio::io_service 對象,它將執行你想要的異步操作。

														
																
????io_service.run();
??}
??
catch ?(std::exception & ?e)
??{
????std::cerr?
<< ?e.what()? << ?std::endl;
??}

??
return ? 0 ;
}
The tcp_server class

TCP服務器類

														
																
																		
class ?tcp_server
{
public :

The constructor initialises an acceptor to listen on TCP port 13.

構造函數初始化一個用于監聽TCP 端口13的接收器。

														
																
??tcp_server(boost::asio::io_service & ?io_service)
????:?acceptor_(io_service,?tcp::endpoint(tcp::v4(),?
13 ))
??{
????start_accept();
??}

private :

The function start_accept() creates a socket and initiates an asynchronous accept operation to wait for a new connection.

函數start_accept ()創建一個socket ,同時啟動一個異步接收操作去等待一個新的連接。

														
																
?? void ?start_accept()
??{
????tcp_connection::pointer?new_connection?
=
??????tcp_connection::create(acceptor_.io_service());

????acceptor_.async_accept(new_connection
-> socket(),
????????boost::bind(
& tcp_server::handle_accept,? this ,?new_connection,
??????????boost::asio::placeholders::error));
??}

The function handle_accept() is called when the asynchronous accept operation initiated by start_accept() finishes. It services the client request, and then calls start_accept() to initiate the next accept operation.

start_accept()啟動的異步接收操作完成后,handle_accept ()函數將被調用。它響應客戶端的請求,然后調用start_accept()函數去啟動另一個接收操作。

														
																
?? void ?handle_accept(tcp_connection::pointer?new_connection,
??????
const ?boost::system::error_code & ?error)
??{
????
if ?( ! error)
????{
??????new_connection
-> start();
??????start_accept();
????}
??}
The tcp_connection class

TCP連接類

We will use shared_ptr and enable_shared_from_this because we want to keep the tcp_connection object alive as long as there is an operation that refers to it.

我們希望只要還有一個操作涉及 tcp_connection對象,該對象就是有效的。因此我們使用shared_ptr enable_shared_from_this

														
																
																		
class ?tcp_connection
??:?
public ?boost::enable_shared_from_this < tcp_connection >
{
public :
??typedef?boost::shared_ptr
< tcp_connection > ?pointer;

??
static ?pointer?create(boost::asio::io_service & ?io_service)
??{
????
return ?pointer( new ?tcp_connection(io_service));
??}

??tcp::socket
& ?socket()
??{
????
return ?socket_;
??}

In the function start(), we call boost::asio::async_write() to serve the data to the client. Note that we are using boost::asio::async_write(), rather than boost::asio::ip::tcp::socket::async_write_some(), to ensure that the entire block of data is sent.

start()函數中,我們調用boost::asio::async_write()為客戶端處理數據。注意:為了確保數據被整塊發送,我們使用的是boost::asio::async_write(),而不是boost::asio::ip::tcp::socket::async_write_some()。

														
																
?? void ?start()
??{

The data to be sent is stored in the class member message_ as we need to keep the data valid until the asynchronous operation is complete.

要發送的數據保存在類成員變量message_ 中,在異步操作完成前我們需要保證數據的有效性。

?

?

????message_? = ?make_daytime_string();

?

When initiating the asynchronous operation, and if using boost::bind(), you must specify only the arguments that match the handler's parameter list. In this program, both of the argument placeholders (boost::asio::placeholders::error and boost::asio::placeholders::bytes_transferred) could potentially have been removed, since they are not being used in handle_write().

當啟動一個異步操作時,如果使用boost::bind(),你只需要指定一個符合句柄參數列表簽名的參數。在本例中,任何一個參數占位符(boost::asio::placeholders::error 和boost::asio::placeholders::bytes_transferred)皆可被隱式地移除,因為操作write()并沒有使用它們。

														
																
????boost::asio::async_write(socket_,?boost::asio::buffer(message_),
????????boost::bind(
& tcp_connection::handle_write,?shared_from_this(),
??????????boost::asio::placeholders::error,
??????????boost::asio::placeholders::bytes_transferred));

Any further actions for this client connection are now the responsibility of handle_write().

任何對客戶端連接的下一步操作都由 handle_write() 函數負責處理

?

														
																
??}

private :
??tcp_connection(boost::asio::io_service
& ?io_service)
????:?socket_(io_service)
??{
??}

??
void ?handle_write( const ?boost::system::error_code & ? /* error */ ,
??????size_t?
/* bytes_transferred */ )
??{
??}

??tcp::socket?socket_;
??std::
string ?message_;
};
Removing unused handler parameters

移除無用的操作參數

You may have noticed that the error, and bytes_transferred parameters are not used in the body of the handle_write() function. If parameters are not needed, it is possible to remove them from the function so that it looks like:

你可能已經注意到了:error和bytes_transferred 參數并沒有在 handle_write() 函數體內被應用。因此,如果參數并不是必須的,我們可以移除它們,如下所示:

														
																
?? void ?handle_write()
??{
??}

The boost::asio::async_write() call used to initiate the call can then be changed to just:

用來發起呼叫的boost::asio::async_write()函數通常可以被改寫成下面這樣:

														
																
??boost::asio::async_write(socket_,?boost::asio::buffer(message_),
??????boost::bind(
& tcp_connection::handle_write,?shared_from_this()));

See the full source listing

全部源碼:

//
// ?server.cpp
// ?~~~~~~~~~~
//
// ?Copyright?(c)?2003-2008?Christopher?M.?Kohlhoff?(chris?at?kohlhoff?dot?com)
//
// ?Distributed?under?the?Boost?Software?License,?Version?1.0.?(See?accompanying? // ?file?LICENSE_1_0.txt?or?copy?at? http://www.boost.org/LICENSE_1_0.txt )
//

#include?
< ctime >
#include?
< iostream >
#include?
< string >
#include?
< boost / bind.hpp >
#include?
< boost / shared_ptr.hpp >
#include?
< boost / enable_shared_from_this.hpp >
#include?
< boost / asio.hpp >

using ?boost::asio::ip::tcp;

std::
string ?make_daytime_string()
{
??
using ? namespace ?std;? // ?For?time_t,?time?and?ctime;
??time_t?now? = ?time( 0 );
??
return ?ctime( & now);
}

class ?tcp_connection
??:?
public ?boost::enable_shared_from_this < tcp_connection >
{
public :
??typedef?boost::shared_ptr
< tcp_connection > ?pointer;

??
static ?pointer?create(boost::asio::io_service & ?io_service)
??{
????
return ?pointer( new ?tcp_connection(io_service));
??}

??tcp::socket
& ?socket()
??{
????
return ?socket_;
??}

??
void ?start()
??{
????message_?
= ?make_daytime_string();

????boost::asio::async_write(socket_,?boost::asio::buffer(message_),
????????boost::bind(
& tcp_connection::handle_write,?shared_from_this(),
??????????boost::asio::placeholders::error,
??????????boost::asio::placeholders::bytes_transferred));
??}

private :
??tcp_connection(boost::asio::io_service
& ?io_service)
????:?socket_(io_service)
??{
??}

??
void ?handle_write( const ?boost::system::error_code & ? /* error */ ,
??????size_t?
/* bytes_transferred */ )
??{
??}

??tcp::socket?socket_;
??std::
string ?message_;
};

class ?tcp_server
{
public :
??tcp_server(boost::asio::io_service
& ?io_service)
????:?acceptor_(io_service,?tcp::endpoint(tcp::v4(),?
13 ))
??{
????start_accept();
??}

private :
??
void ?start_accept()
??{
????tcp_connection::pointer?new_connection?
=
??????tcp_connection::create(acceptor_.io_service());

????acceptor_.async_accept(new_connection
-> socket(),
????????boost::bind(
& tcp_server::handle_accept,? this ,?new_connection,
??????????boost::asio::placeholders::error));
??}

??
void ?handle_accept(tcp_connection::pointer?new_connection,
??????
const ?boost::system::error_code & ?error)
??{
????
if ?( ! error)
????{
??????new_connection
-> start();
??????start_accept();
????}
??}

??tcp::acceptor?acceptor_;
};

int ?main()
{
??
try
??{
????boost::asio::io_service?io_service;
????tcp_server?server(io_service);
????io_service.run();
??}
??
catch ?(std::exception & ?e)
??{
????std::cerr?
<< ?e.what()? << ?std::endl;
??}

??
return ? 0 ;
}

?

?
posted on 2008-04-20 01:27 王曉軒 閱讀(1533) 評論(0) ?編輯?收藏引用 所屬分類: C\C++
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            久久九九免费视频| 亚洲欧美中文字幕| 欧美黄色免费| 亚洲免费成人| 一区二区三区视频在线播放| 国产精品区一区二区三区| 久久大逼视频| 久久久蜜桃一区二区人| 亚洲精品国产精品国产自| 亚洲精选大片| 国产亚洲午夜高清国产拍精品| 久久久久国产精品人| 欧美成人高清| 欧美一区二区三区精品| 久久久成人精品| 一区二区国产日产| 欧美在线www| 亚洲免费观看高清完整版在线观看熊| 日韩亚洲欧美高清| 精品成人在线| 日韩小视频在线观看专区| 国产视频一区二区在线观看| 欧美国产亚洲视频| 国产精品影片在线观看| 欧美福利视频在线| 国产午夜精品久久久久久久| 亚洲国产精品传媒在线观看| 国产精品午夜在线观看| 亚洲国产精品999| 国产一区在线视频| 亚洲免费高清| 亚洲国产精品女人久久久| 亚洲视频在线观看视频| 亚洲精品麻豆| 久久成人国产| 欧美亚洲一区三区| 欧美久久精品午夜青青大伊人| 久久精品麻豆| 欧美午夜一区二区三区免费大片 | 亚洲乱码国产乱码精品精可以看| 亚洲欧美国产日韩天堂区| 亚洲精品一区二区三区樱花| 久久精品国产亚洲一区二区| 亚洲欧美电影院| 欧美日韩精品一区二区天天拍小说| 久久综合九色综合欧美狠狠| 国产精品久久久久久久久久久久久久 | 国产日产亚洲精品| 亚洲最新中文字幕| 夜夜嗨av一区二区三区免费区| 久久久久久有精品国产| 久久久美女艺术照精彩视频福利播放| 国产精品theporn| 日韩一级黄色片| 中国成人黄色视屏| 欧美伦理91i| 亚洲精品久久久久久一区二区| 在线观看精品| 久久综合色播五月| 欧美成人免费在线| 亚洲黑丝在线| 欧美久久影院| 99国产精品久久久久久久| 99re6热只有精品免费观看| 欧美成人精品一区二区三区| 亚洲电影免费观看高清完整版在线 | 国产午夜精品久久久久久久| 午夜一区二区三区不卡视频| 欧美在线短视频| 国产亚洲精品久久久久动| 午夜精品在线| 久久综合网络一区二区| 亚洲电影av| 欧美精品一区三区| 国产精品99久久久久久宅男| 亚洲综合首页| 国产无遮挡一区二区三区毛片日本| 欧美一区二区三区免费在线看| 欧美在线影院在线视频| 精品999日本| 欧美黄色小视频| 一个人看的www久久| 久久精品72免费观看| 伊人久久久大香线蕉综合直播 | 日韩视频在线一区二区| 午夜国产精品影院在线观看| 国产亚洲午夜| 欧美电影在线| 亚洲免费视频成人| 亚洲承认在线| 午夜精品久久久久| 永久91嫩草亚洲精品人人| 欧美精品日韩综合在线| 先锋影音久久| 亚洲破处大片| 久久久久久久久久久久久9999| 亚洲精品日本| 国产亚洲精品7777| 欧美伦理影院| 久久久久久网| 亚洲一区二区三区高清 | 在线视频欧美一区| 红桃视频国产精品| 欧美婷婷六月丁香综合色| 久久九九全国免费精品观看| 日韩视频在线免费| 嫩草国产精品入口| 欧美在线网址| 中文在线不卡视频| 亚洲国产精品久久久久秋霞不卡| 欧美午夜宅男影院| 欧美高清视频| 久久久国产一区二区| 亚洲视频网在线直播| 亚洲黄色成人久久久| 久久亚洲欧美| 欧美伊人影院| 亚洲综合精品一区二区| 亚洲伦理在线| 亚洲国产毛片完整版 | 欧美日韩国产首页在线观看| 久久深夜福利免费观看| 午夜精品视频| 亚洲综合欧美日韩| 一区二区不卡在线视频 午夜欧美不卡' | 欧美日韩一区二区三区视频 | 亚洲一区久久久| 日韩系列欧美系列| 亚洲激情网站| 欧美激情小视频| 欧美成人精品影院| 久久久在线视频| 久久激情网站| 久久激情久久| 久久se精品一区精品二区| 午夜一区二区三区在线观看| 亚洲素人在线| 99视频国产精品免费观看| 亚洲精品自在在线观看| 亚洲免费福利视频| 一区二区电影免费在线观看| 亚洲人成网站777色婷婷| 最近中文字幕日韩精品| 亚洲精品视频免费| 日韩亚洲欧美在线观看| 在线亚洲一区| 在线综合亚洲| 午夜精品久久久久久| 性欧美在线看片a免费观看| 性欧美videos另类喷潮| 欧美综合国产| 麻豆亚洲精品| 亚洲国产高清自拍| 亚洲精品裸体| 亚洲一区二区三区精品动漫| 香蕉成人伊视频在线观看| 欧美自拍偷拍| 欧美黄色一区二区| 欧美亚洲成人网| 国产午夜久久| 亚洲国产精品嫩草影院| 日韩一级大片在线| 欧美一区二区三区久久精品茉莉花| 欧美一级淫片aaaaaaa视频| 久久漫画官网| 亚洲二区精品| 亚洲一区国产精品| 久久夜色精品国产欧美乱| 欧美精品三级| 国产午夜精品全部视频在线播放 | 国产精品天天看| 亚洲成人在线网站| 亚洲一区二区欧美| 久久综合九色综合欧美就去吻| 亚洲国产1区| 亚洲免费在线观看视频| 久久久精品欧美丰满| 欧美日韩精品一区二区天天拍小说| 国产麻豆视频精品| 亚洲国产cao| 欧美亚洲一区二区三区| 亚洲国产成人不卡| 午夜精品免费在线| 欧美精品一区在线播放| 国产一区二区三区在线播放免费观看| 国产色产综合产在线视频| 91久久综合| 久久―日本道色综合久久| 夜色激情一区二区| 久久三级福利| 国产欧美日韩亚洲精品| 亚洲天堂免费观看| 欧美黑人在线播放| 欧美在线亚洲综合一区| 欧美三级欧美一级| 日韩视频中文字幕| 欧美国产日本| 久久久噜噜噜久久中文字幕色伊伊| 国产精品扒开腿做爽爽爽视频 | 亚洲免费在线电影|