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

S.l.e!ep.¢%

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

WSARecv 函數(shù)

Posted on 2009-01-31 04:16 S.l.e!ep.¢% 閱讀(5388) 評(píng)論(0)  編輯 收藏 引用 所屬分類: VC
WSARecv Function

The WSARecv function receives data from a connected socket or a bound connectionless socket.
WSARecv函數(shù)從一個(gè)socket接收數(shù)據(jù)

Syntax

int WSARecv(
  __in     SOCKET s,
  __inout  LPWSABUF lpBuffers,
  __in     DWORD dwBufferCount,
  __out    LPDWORD lpNumberOfBytesRecvd,
  __inout  LPDWORD lpFlags,
  __in     LPWSAOVERLAPPED lpOverlapped,
  __in     LPWSAOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine
);

Parameters

s [in]
A descriptor identifying a connected socket.
一個(gè)已經(jīng)連接的 socket
lpBuffers [in, out]

A pointer to an array of WSABUF structures. Each WSABUF structure contains a pointer to a buffer and the length, in bytes, of the buffer.
一個(gè)指向WSABUF結(jié)構(gòu)數(shù)組的指針。每一個(gè)WSABUF結(jié)構(gòu)包含一個(gè)緩沖區(qū)的指針和緩沖區(qū)的長度。

dwBufferCount
[in]
The number of WSABUF structures in the lpBuffers array.
lpBuffers數(shù)組中WSABUF結(jié)構(gòu)的大小。

lpNumberOfBytesRecvd [out]
????????? A pointer to the number, in bytes, of data received by this call if the receive operation completes immediately. If the lpOverlapped parameter is non-NULL, this parameter is optional and can be set to NULL.
????????? 如果接收操作立即結(jié)束,一個(gè)指向本調(diào)用所接收的字節(jié)數(shù)的指針。

lpFlags
[in, out]
????????? A pointer to flags used to modify the behavior of the WSARecv function call. For more information, see the Remarks section.
??????????一個(gè)指向標(biāo)志位的指針。
?
lpOverlapped [in]
????????? A pointer to a WSAOVERLAPPED structure (ignored for nonoverlapped sockets).
????????? 一個(gè)指向WSAOVERLAPPED結(jié)構(gòu)的指針(對(duì)于非重疊套接口則忽略)。??????

lpCompletionRoutine
[in]
?????????? A pointer to the completion routine called when the receive operation has been completed (ignored for nonoverlapped sockets).
?????????? 一個(gè)指向接收操作結(jié)束后調(diào)用的例程的指針(對(duì)于非重疊套接口則忽略)。

Return Value
返回值

If no error occurs and the receive operation has completed immediately, WSARecv returns zero. In this case, the completion routine will have already been scheduled to be called once the calling thread is in the alertable state. Otherwise, a value of SOCKET_ERROR is returned, and a specific error code can be retrieved by calling WSAGetLastError. The error code WSA_IO_PENDING indicates that the overlapped operation has been successfully initiated and that completion will be indicated at a later time. Any other error code indicates that the overlapped operation was not successfully initiated and no completion indication will occur.

若無錯(cuò)誤發(fā)生且接收操作立即完成,則WSARecv()函數(shù)返回所接收的字節(jié)數(shù)。如果連接結(jié)束,則返回0。請(qǐng)注意在這種情況下完成指示(啟動(dòng)指定的完成例程或設(shè)置一個(gè)事件對(duì)象)將早已發(fā)生。否則的話,將返回SOCKET_ERROR錯(cuò)誤,應(yīng)用程序可通過WSAGetLastError()來獲取相應(yīng)的錯(cuò)誤代碼。錯(cuò)誤代碼WSA_IO_PENDING表示重疊操作成功啟動(dòng),過后將有完成指示。任何其他的錯(cuò)誤表示重疊操作未能成功地啟動(dòng),以后也不會(huì)有完成指示。

  如果設(shè)置了MSG_INTERRUPT標(biāo)志,則返回值的含義變化。零表示成功,具體含義同上。否則的話,返回值直接包含如下所示的錯(cuò)誤代碼。由于中斷環(huán)境中無法調(diào)用WSAGetLastError(),故是必需的。請(qǐng)注意僅適用于Win16環(huán)境,僅適用于PROTOCOL_INFO結(jié)構(gòu)中設(shè)置了XP1_INTERRUPT位的協(xié)議。

Error code

Meaning

WSAECONNABORTED

The virtual circuit was terminated due to a time-out or other failure.
由于超時(shí)或其他錯(cuò)誤導(dǎo)致虛電路中止。

WSAECONNRESET

For a stream socket, the virtual circuit was reset by the remote side. The application should close the socket as it is no longer usable. For a UDP datagram socket, this error would indicate that a previous send operation resulted in an ICMP "Port Unreachable" message.
虛電路被遠(yuǎn)端復(fù)位。

WSAEDISCON

Socket s is message oriented and the virtual circuit was gracefully closed by the remote side.
遠(yuǎn)端優(yōu)雅的結(jié)束了連接。

WSAEFAULT

The lpBuffers parameter is not completely contained in a valid part of the user address space.

WSAEINPROGRESS

A blocking Windows Sockets 1.1 call is in progress, or the service provider is still processing a callback function.
一個(gè)阻塞的WinSock調(diào)用正在進(jìn)行中,或者服務(wù)提供者仍在處理一個(gè)回調(diào)函數(shù)

WSAEINTR


The (blocking) call was canceled by the WSACancelBlockingCall function.
通過WSACancelBlockingCall()函數(shù)取消(阻塞)調(diào)用。

WSAEINVAL

The socket has not been bound (for example, with bind).
套接口未用bind()捆綁,或者套接口未用重疊標(biāo)志創(chuàng)建。

WSAEMSGSIZE

The message was too large to fit into the specified buffer and (for unreliable protocols only) any trailing portion of the message that did not fit into the buffer has been discarded.

WSAENETDOWN


The network subsystem has failed.
網(wǎng)絡(luò)子系統(tǒng)失效。

WSAENETRESET

For a connection-oriented socket, this error indicates that the connection has been broken due to keep-alive activity detecting a failure while the operation was in progress. For a datagram socket, this error indicates that the time to live has expired.
由于遠(yuǎn)端的復(fù)位造成連接的中止。

WSAENOTCONN


The socket is not connected.
套接口未連接。

WSAENOTSOCK

The descriptor is not a socket.
描述字不是一個(gè)套接口。

WSAEOPNOTSUPP

MSG_OOB was specified, but the socket is not stream-style such as type SOCK_STREAM, OOB data is not supported in the communication domain associated with this socket, or the socket is unidirectional and supports only send operations.
設(shè)置了MSG_OOB,但是該套接口不是諸如SOCK_STREAM流類型的,與套接口相關(guān)的通訊域不支持帶外數(shù)據(jù),或者套接口是單向的,只支持發(fā)送操作。

WSAESHUTDOWN

The socket has been shut down; it is not possible to call WSARecv on a socket after shutdown has been invoked with how set to SD_RECEIVE or SD_BOTH.
套接口已經(jīng)關(guān)閉;一個(gè)套接口以SD_RECEIVE或 SD_BOTH的how參數(shù)shutdown()后,無法進(jìn)行WSARecv()調(diào)用。

WSAETIMEDOUT

The connection has been dropped because of a network failure or because the peer system failed to respond.

WSAEWOULDBLOCK

Windows?NT:??
Overlapped sockets: there are too many outstanding overlapped I/O requests. Nonoverlapped sockets: The socket is marked as nonblocking and the receive operation cannot be completed immediately.
重疊套接口:太多重疊的輸入/輸出請(qǐng)求。非重疊套接口:套接口被標(biāo)志為非阻塞,但是操作不能立即完成。

WSANOTINITIALISED


A successful WSAStartup call must occur before using this function.
在調(diào)用本API之前應(yīng)成功調(diào)用WSAStartup()。

WSA_IO_PENDING

An overlapped operation was successfully initiated and completion will be indicated at a later time.
成功啟動(dòng)一個(gè)重疊操作,過后將有完成指示。

WSA_OPERATION_ABORTED

The overlapped operation has been canceled due to the closure of the socket.

Remarks

The WSARecv function provides some additional features compared with the standard recv function in three important areas:

  • It can be used in conjunction with overlapped sockets to perform overlapped recv operations.
  • It allows multiple receive buffers to be specified making it applicable to the scatter/gather type of I/O.
  • The lpFlags parameter is used both on input and returned on output, allowing applications to sense the output state of the MSG_PARTIAL flag bit. However, the MSG_PARTIAL flag bit is not supported by all protocols.

The WSARecv function is used on connected sockets or bound connectionless sockets specified by the s parameter and is used to read incoming data. The socket's local address must be known. For server applications, this is usually done explicitly through bind or implicitly through accept or WSAAccept. Explicit binding is discouraged for client applications. For client applications the socket can become bound implicitly to a local address through connect, WSAConnect, sendto, WSASendTo, or WSAJoinLeaf.

For connected, connectionless sockets, this function restricts the addresses from which received messages are accepted. The function only returns messages from the remote address specified in the connection. Messages from other addresses are (silently) discarded.

For overlapped sockets, WSARecv is used to post one or more buffers into which incoming data will be placed as it becomes available, after which the application-specified completion indication (invocation of the completion routine or setting of an event object) occurs. If the operation does not complete immediately, the final completion status is retrieved through the completion routine or WSAGetOverlappedResult.

Note??All I/O initiated by a given thread is canceled when that thread exits. For overlapped sockets, pending asynchronous operations can fail if the thread is closed before the operations complete. See ExitThread for more information.

If both lpOverlapped and lpCompletionRoutine are NULL, the socket in this function will be treated as a nonoverlapped socket.

For nonoverlapped sockets, the blocking semantics are identical to that of the standard recv function and the lpOverlapped and lpCompletionRoutine parameters are ignored. Any data that has already been received and buffered by the transport will be copied into the specified user buffers. In the case of a blocking socket with no data currently having been received and buffered by the transport, the call will block until data is received. Windows Sockets 2 does not define any standard blocking time-out mechanism for this function. For protocols acting as byte-stream protocols the stack tries to return as much data as possible subject to the available buffer space and amount of received data available. However, receipt of a single byte is sufficient to unblock the caller. There is no guarantee that more than a single byte will be returned. For protocols acting as message-oriented, a full message is required to unblock the caller.

Note??The socket options SO_RCVTIMEO and SO_SNDTIMEO apply only to blocking sockets.

Whether or not a protocol is acting as byte stream is determined by the setting of XP1_MESSAGE_ORIENTED and XP1_PSEUDO_STREAM in its WSAPROTOCOL_INFO structure and the setting of the MSG_PARTIAL flag passed in to this function (for protocols that support it). The following table lists relevant combinations, (an asterisk (*) indicates that the setting of this bit does not matter in this case).

XP1_MESSAGE_ORIENTED XP1_PSEUDO_STREAM MSG_PARTIAL Acts as
not set * * Byte stream
* Set * Byte stream
set Not set set Byte stream
set Not set not set Message oriented

The buffers are filled in the order in which they appear in the array pointed to by lpBuffers, and the buffers are packed so that no holes are created.

If this function is completed in an overlapped manner, it is the Winsock service provider's responsibility to capture the WSABUF structures before returning from this call. This enables applications to build stack-based WSABUF arrays pointed to by the lpBuffers parameter.

For byte stream-style sockets (for example, type SOCK_STREAM), incoming data is placed into the buffers until the buffers are filled, the connection is closed, or the internally buffered data is exhausted. Regardless of whether or not the incoming data fills all the buffers, the completion indication occurs for overlapped sockets.

For message-oriented sockets (for example, type SOCK_DGRAM), an incoming message is placed into the buffers up to the total size of the buffers, and the completion indication occurs for overlapped sockets. If the message is larger than the buffers, the buffers are filled with the first part of the message. If the MSG_PARTIAL feature is supported by the underlying service provider, the MSG_PARTIAL flag is set in lpFlags and subsequent receive operations will retrieve the rest of the message. If MSG_PARTIAL is not supported but the protocol is reliable, WSARecv generates the error WSAEMSGSIZE and a subsequent receive operation with a larger buffer can be used to retrieve the entire message. Otherwise, (that is, the protocol is unreliable and does not support MSG_PARTIAL), the excess data is lost, and WSARecv generates the error WSAEMSGSIZE.

For connection-oriented sockets, WSARecv can indicate the graceful termination of the virtual circuit in one of two ways that depend on whether the socket is byte stream or message oriented. For byte streams, zero bytes having been read (as indicated by a zero return value to indicate success, and lpNumberOfBytesRecvd value of zero) indicates graceful closure and that no more bytes will ever be read. For message-oriented sockets, where a zero byte message is often allowable, a failure with an error code of WSAEDISCON is used to indicate graceful closure. In any case a return error code of WSAECONNRESET indicates an abortive close has occurred.

The lpFlags parameter can be used to influence the behavior of the function invocation beyond the options specified for the associated socket. That is, the semantics of this function are determined by the socket options and the lpFlags parameter. The latter is constructed by using the bitwise OR operator with any of the values listed in the following table.

Value Meaning
MSG_PEEK Peeks at the incoming data. The data is copied into the buffer, but is not removed from the input queue. This flag is valid only for nonoverlapped sockets.
MSG_OOB Processes OOB data.
MSG_PARTIAL This flag is for message-oriented sockets only. On output, indicates that the data specified is a portion of the message transmitted by the sender. Remaining portions of the message will be specified in subsequent receive operations. A subsequent receive operation with MSG_PARTIAL flag cleared indicates end of sender's message.

As an input parameter, this flag indicates that the receive operation should complete even if only part of a message has been received by the service provider.

MSG_WAITALL The receive request will complete only when one of the following events occurs:

  • The buffer supplied by the caller is completely full.
  • The connection has been closed.
  • The request has been canceled or an error occurred.
Be aware that if the underlying transport does not support MSG_WAITALL, or if the socket is in a non-blocking mode, then this call will fail with WSAEOPNOTSUPP. Also, if MSG_WAITALL is specified along with MSG_OOB, MSG_PEEK, or MSG_PARTIAL, then this call will fail with WSAEOPNOTSUPP. This flag is not supported on datagram sockets or message-oriented CO sockets.

For message-oriented sockets, the MSG_PARTIAL bit is set in the lpFlags parameter if a partial message is received. If a complete message is received, MSG_PARTIAL is cleared in lpFlags. In the case of delayed completion, the value pointed to by lpFlags is not updated. When completion has been indicated, the application should call WSAGetOverlappedResult and examine the flags indicated by the lpdwFlags parameter.

Overlapped Socket I/O

If an overlapped operation completes immediately, WSARecv returns a value of zero and the lpNumberOfBytesRecvd parameter is updated with the number of bytes received and the flag bits indicated by the lpFlags parameter are also updated. If the overlapped operation is successfully initiated and will complete later, WSARecv returns SOCKET_ERROR and indicates error code WSA_IO_PENDING. In this case, lpNumberOfBytesRecvd and lpFlags are not updated. When the overlapped operation completes, the amount of data transferred is indicated either through the cbTransferred parameter in the completion routine (if specified), or through the lpcbTransfer parameter in WSAGetOverlappedResult. Flag values are obtained by examining the lpdwFlags parameter of WSAGetOverlappedResult.

The WSARecv function can be called from within the completion routine of a previous WSARecv, WSARecvFrom, WSASend or WSASendTo function. For a given socket, I/O completion routines will not be nested. This permits time-sensitive data transmissions to occur entirely within a preemptive context.

The lpOverlapped parameter must be valid for the duration of the overlapped operation. If multiple I/O operations are simultaneously outstanding, each must reference a separate WSAOVERLAPPED structure.

If the lpCompletionRoutine parameter is NULL, the hEvent parameter of lpOverlapped is signaled when the overlapped operation completes if it contains a valid event object handle. An application can use WSAWaitForMultipleEvents or WSAGetOverlappedResult to wait or poll on the event object.

If lpCompletionRoutine is not NULL, the hEvent parameter is ignored and can be used by the application to pass context information to the completion routine. A caller that passes a non-NULLlpCompletionRoutine and later calls WSAGetOverlappedResult for the same overlapped I/O request may not set the fWait parameter for that invocation of WSAGetOverlappedResult to TRUE. In this case the usage of the hEvent parameter is undefined, and attempting to wait on the hEvent parameter would produce unpredictable results.

The completion routine follows the same rules as stipulated for Windows file I/O completion routines. The completion routine will not be invoked until the thread is in an alertable wait state such as can occur when the function WSAWaitForMultipleEvents with the fAlertable parameter set to TRUE is invoked.

The prototype of the completion routine is as follows:

void CALLBACK CompletionROUTINE(
  IN DWORD dwError, 
  IN DWORD cbTransferred, 
  IN LPWSAOVERLAPPED lpOverlapped, 
  IN DWORD dwFlags
);

CompletionRoutine is a placeholder for an application-defined or library-defined function name. The dwError specifies the completion status for the overlapped operation as indicated by lpOverlapped. The cbTransferred parameter specifies the number of bytes received. The dwFlags parameter contains information that would have appeared in lpFlags if the receive operation had completed immediately. This function does not return a value.

Returning from this function allows invocation of another pending completion routine for this socket. When using WSAWaitForMultipleEvents, all waiting completion routines are called before the alertable thread's wait is satisfied with a return code of WSA_IO_COMPLETION. The completion routines can be called in any order, not necessarily in the same order the overlapped operations are completed. However, the posted buffers are guaranteed to be filled in the same order in which they are specified.

If you are using I/O completion ports, be aware that the order of calls made to WSARecv is also the order in which the buffers are populated. WSARecv should not be called on the same socket simultaneously from different threads, because it can result in an unpredictable buffer order.

Example Code

The following example shows how to use the WSARecv function in overlapped I/O mode.

#include <winsock2.h>
#include <ws2tcpip.h>
#include <stdio.h>
#include <stdlib.h>

#pragma warning(disable: 4127)      // Conditional expression is a constant

#define DATA_BUFSIZE 4096

void __cdecl main(int argc, char **argv) 
{
    WSADATA wsd;
    struct addrinfo *result = NULL,
        *ptr = NULL,
        hints = {0};
    WSAOVERLAPPED RecvOverlapped = {0};
    SOCKET ConnSocket = INVALID_SOCKET;
    WSABUF DataBuf;
    DWORD RecvBytes, Flags;
    char buffer[DATA_BUFSIZE];
    int err, rc;

    if (argc != 2) {
        fprintf(stderr, "usage: %s server-name\n", argv[0]);
        return;
    }

    // Load Winsock
    rc = WSAStartup(MAKEWORD(2,2), &wsd);
    if (rc != 0) {
        fprintf(stderr, "Unable to load Winsock: %d\n", rc);
        return;
    }

    // Initialize the hints to retrieve the server address for IPv4
    hints.ai_family = AF_INET;
    hints.ai_socktype = SOCK_STREAM;
    hints.ai_protocol = IPPROTO_TCP;

    rc = getaddrinfo(argv[1], "27015", &hints, &result);
    if (rc != 0) {
        fprintf(stderr, "getaddrinfo failed: %d\n", rc );
        return;
    }

    for(ptr=result; ptr != NULL ;ptr=ptr->ai_next) {

        ConnSocket = socket(ptr->ai_family, ptr->ai_socktype, ptr->ai_protocol);
        if (ConnSocket == INVALID_SOCKET) {
            fprintf(stderr, "socket failed: %d\n", WSAGetLastError());
            freeaddrinfo(result);
            return;
        }
    
        rc = connect(ConnSocket, ptr->ai_addr, (int)ptr->ai_addrlen);
        if (rc == SOCKET_ERROR) {

            if (WSAECONNREFUSED == (err = WSAGetLastError())) {
                closesocket(ConnSocket);
                ConnSocket = INVALID_SOCKET;
                continue;
            }
            fprintf(stderr, "connect failed: %d\n", err);
            freeaddrinfo(result);
            closesocket(ConnSocket);
            return;
        }
        break;
    }
   	if ( ConnSocket == INVALID_SOCKET ) {
		      fprintf(stderr, "Unable to establish connection with the server!\n");
		      freeaddrinfo(result);
		      return;
	   }

    printf("Client connected...\n");

    // Create an event handle and setup an overlapped structure.
    RecvOverlapped.hEvent = WSACreateEvent();
    if (RecvOverlapped.hEvent  == NULL) {
        fprintf(stderr, "WSACreateEvent failed: %d\n", WSAGetLastError());
        freeaddrinfo(result);
        closesocket(ConnSocket);
        return;
    }

    DataBuf.len = DATA_BUFSIZE;
    DataBuf.buf = buffer;

    // Call WSARecv until the peer closes the connection
    // or until an error occurs
    while(1) {

        Flags = 0;
        rc = WSARecv(ConnSocket, &DataBuf, 1, &RecvBytes, &Flags, &RecvOverlapped, NULL);
        if ( (rc == SOCKET_ERROR) && (WSA_IO_PENDING != (err = WSAGetLastError()))) {
            fprintf(stderr, "WSARecv failed: %d\n", err);
            break;
        }

        rc = WSAWaitForMultipleEvents(1, &RecvOverlapped.hEvent, TRUE, INFINITE, TRUE);
        if (rc == WSA_WAIT_FAILED) {
            fprintf(stderr, "WSAWaitForMultipleEvents failed: %d\n", WSAGetLastError());
            break;
        }

        rc = WSAGetOverlappedResult(ConnSocket, &RecvOverlapped, &RecvBytes, FALSE, &Flags);
        if (rc == FALSE) {
            fprintf(stderr, "WSARecv operation failed: %d\n", WSAGetLastError());
            break;
        }

        printf("Read %d bytes\n", RecvBytes);

        WSAResetEvent(RecvOverlapped.hEvent);

        // If 0 bytes are received, the connection was closed
        if (RecvBytes == 0 )
            break;
    }

    WSACloseEvent(RecvOverlapped.hEvent);
    closesocket(ConnSocket);
    freeaddrinfo(result);

    WSACleanup();

    return;
}

Requirements

Minimum supported client Windows 2000 Professional
Minimum supported server Windows 2000 Server
Header Winsock2.h
Library Ws2_32.lib
DLL Ws2_32.dll

See Also

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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>
            在线观看日韩av电影| 久久本道综合色狠狠五月| 亚洲精品日产精品乱码不卡| 欧美二区在线看| 亚洲精品免费一二三区| 免费在线国产精品| 一区二区三区欧美成人| 韩国av一区二区| 欧美丝袜一区二区| 欧美大片免费| 久久av一区二区三区| 99精品视频免费| 日韩一级黄色av| 欧美freesex8一10精品| 欧美在线你懂的| 亚洲男人第一网站| 99av国产精品欲麻豆| 久久在线免费观看视频| 亚洲欧美日韩一区二区| 夜色激情一区二区| 久久精品在线播放| 亚洲欧美激情在线视频| 欧美一级视频免费在线观看| 久久久久在线观看| 另类专区欧美制服同性| 久久久综合网站| 久久国内精品自在自线400部| 亚洲影院高清在线| 美日韩精品视频| 亚洲欧洲视频| 亚洲性av在线| 欧美极品在线视频| 久久久亚洲国产美女国产盗摄| 久久国产精品电影| 欧美成人综合| 国产女人精品视频| 一区二区日韩| 美国十次成人| 亚洲精品国精品久久99热一| 一区二区三区四区精品| 一区二区免费看| 卡一卡二国产精品| 欧美激情亚洲精品| 亚洲香蕉成视频在线观看| 久久久久九九视频| 日韩午夜在线播放| 亚洲一区二区三区777| 久久午夜电影网| 一区二区福利| 欧美日韩精品欧美日韩精品一 | 亚洲视频一二三| 欧美精品大片| 亚洲视频在线一区| 99这里只有久久精品视频| 国产精品成人av性教育| 亚洲精品婷婷| av成人免费观看| 国产一区二区电影在线观看| 久久久久久9999| 另类激情亚洲| 亚洲视频网在线直播| 亚洲欧美一区二区视频| 性色一区二区| 先锋影音一区二区三区| 久久久噜噜噜久久久| 可以免费看不卡的av网站| 六月婷婷久久| 欧美精品麻豆| 国内精品美女在线观看| 欧美在线播放一区| 一区二区成人精品| 蜜桃av久久久亚洲精品| 亚洲午夜伦理| 亚洲综合日本| 国产精品ⅴa在线观看h| 亚洲女人天堂成人av在线| 亚洲视频一区二区| 亚洲麻豆国产自偷在线| 亚洲在线视频一区| 国产小视频国产精品| 99亚洲精品| 亚洲欧美日韩精品在线| 亚洲第一网站| 久久黄色级2电影| 久久亚洲精品中文字幕冲田杏梨| 欧美日韩视频| 在线午夜精品自拍| 亚洲电影专区| 欧美在线视频一区| 99re热精品| 欧美成人免费观看| 亚洲精品影院在线观看| 亚洲在线成人精品| 国内精品久久久久影院色| 亚洲国产成人午夜在线一区| 国产日韩欧美三级| 亚洲欧美日韩精品久久| 亚洲一区在线观看免费观看电影高清 | 亚洲精品一品区二品区三品区| 欧美在线免费视屏| 亚洲欧美一区二区原创| 欧美日韩精品高清| 日韩亚洲欧美在线观看| 久久人人精品| 亚洲小视频在线观看| 欧美日韩国产电影| 亚洲人成人一区二区在线观看| 亚洲精品一二区| 国产精品久久久久久久久果冻传媒| 亚洲女性裸体视频| 亚洲国产日韩精品| 美腿丝袜亚洲色图| 久久米奇亚洲| 亚洲精选一区| 国产综合久久久久久| 免费精品视频| 久久久蜜桃精品| 午夜精品久久久久久99热| 亚洲丶国产丶欧美一区二区三区| 欧美日韩在线观看一区二区| 欧美一区二区三区在线播放| 亚洲欧洲偷拍精品| 欧美jizzhd精品欧美巨大免费| 久久精品国产亚洲精品| 久久精品伊人| 亚洲九九精品| 亚洲欧洲精品一区二区三区不卡| 国产亚洲欧美激情| 国产日韩一区二区三区| 国产欧美日韩中文字幕在线| 欧美国产欧美亚洲国产日韩mv天天看完整 | 国产精品videossex久久发布| 欧美成人精品在线观看| 欧美日韩大片一区二区三区| 久久疯狂做爰流白浆xx| 亚洲综合社区| 先锋影音一区二区三区| 久久综合久久综合这里只有精品| 免费久久精品视频| 国产精品亚洲美女av网站| 亚洲成人在线| 亚洲日本欧美天堂| 91久久视频| 亚洲在线视频| 免费av成人在线| 一区二区三区鲁丝不卡| 午夜在线a亚洲v天堂网2018| 亚洲无线一线二线三线区别av| 亚洲精品一区二区在线| 亚洲精品小视频| 久久漫画官网| 午夜欧美大尺度福利影院在线看| 欧美片第1页综合| 欧美日韩在线不卡一区| 欧美日韩国产bt| 亚洲国产欧美不卡在线观看| 亚洲综合色丁香婷婷六月图片| 久久国产乱子精品免费女| 国产一区二区三区观看| 久久久国产91| 一区二区三区欧美| 蜜桃精品一区二区三区 | 中国女人久久久| 欧美成人小视频| 久久狠狠久久综合桃花| 一区在线影院| 麻豆91精品| 久久av一区二区| 国产偷国产偷精品高清尤物| 在线视频欧美精品| 亚洲一区二区少妇| 国产婷婷一区二区| 亚洲精品孕妇| 亚洲第一在线综合在线| 裸体女人亚洲精品一区| 亚洲高清资源综合久久精品| 免费成人毛片| 国产亚洲综合在线| 久久久久欧美| 欧美成年人视频| 影音先锋亚洲电影| 亚洲精品久久视频| 国产精品视频第一区| 亚洲欧美日本日韩| 亚洲永久字幕| 国产精品一区在线观看你懂的| 久久蜜桃资源一区二区老牛| 欧美在线视频观看| 欧美日韩成人在线观看| 国语自产精品视频在线看| 久热精品在线视频| 欧美成人影音| 亚洲狠狠丁香婷婷综合久久久| 亚洲精品视频在线| 国产在线拍揄自揄视频不卡99| 亚洲天堂第二页| 亚洲国产精品精华液网站| 亚洲最快最全在线视频| 精品成人在线视频| 久久精品网址|