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

S.l.e!ep.¢%

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

WSARecv 函數

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

The WSARecv function receives data from a connected socket or a bound connectionless socket.
WSARecv函數從一個socket接收數據

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.
一個已經連接的 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.
一個指向WSABUF結構數組的指針。每一個WSABUF結構包含一個緩沖區的指針和緩沖區的長度。

dwBufferCount
[in]
The number of WSABUF structures in the lpBuffers array.
lpBuffers數組中WSABUF結構的大小。

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.
????????? 如果接收操作立即結束,一個指向本調用所接收的字節數的指針。

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

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

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.

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

  如果設置了MSG_INTERRUPT標志,則返回值的含義變化。零表示成功,具體含義同上。否則的話,返回值直接包含如下所示的錯誤代碼。由于中斷環境中無法調用WSAGetLastError(),故是必需的。請注意僅適用于Win16環境,僅適用于PROTOCOL_INFO結構中設置了XP1_INTERRUPT位的協議。

Error code

Meaning

WSAECONNABORTED

The virtual circuit was terminated due to a time-out or other failure.
由于超時或其他錯誤導致虛電路中止。

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.
虛電路被遠端復位。

WSAEDISCON

Socket s is message oriented and the virtual circuit was gracefully closed by the remote side.
遠端優雅的結束了連接。

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.
一個阻塞的WinSock調用正在進行中,或者服務提供者仍在處理一個回調函數

WSAEINTR


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

WSAEINVAL

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

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.
網絡子系統失效。

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.
由于遠端的復位造成連接的中止。

WSAENOTCONN


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

WSAENOTSOCK

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

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.
設置了MSG_OOB,但是該套接口不是諸如SOCK_STREAM流類型的,與套接口相關的通訊域不支持帶外數據,或者套接口是單向的,只支持發送操作。

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.
套接口已經關閉;一個套接口以SD_RECEIVE或 SD_BOTH的how參數shutdown()后,無法進行WSARecv()調用。

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.
重疊套接口:太多重疊的輸入/輸出請求。非重疊套接口:套接口被標志為非阻塞,但是操作不能立即完成。

WSANOTINITIALISED


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

WSA_IO_PENDING

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

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>
            蜜臀久久99精品久久久久久9| 亚洲人成人一区二区三区| 亚洲午夜激情网页| 久久综合九色| 亚洲欧美中文日韩v在线观看| 欧美日一区二区在线观看| 亚洲福利视频网站| 久久亚洲视频| 久久精品2019中文字幕| 国产亚洲一级高清| 久久精品中文字幕免费mv| 亚洲在线网站| 国产亚洲一区二区三区在线观看| 欧美在线综合| 久久不射2019中文字幕| 国内精品一区二区三区| 老巨人导航500精品| 久久久久天天天天| 在线观看日韩av| 欧美成人一区二区三区在线观看| 麻豆国产va免费精品高清在线| 亚洲国产视频一区| 亚洲人成在线免费观看| 国产精品盗摄久久久| 欧美一级久久久久久久大片| 欧美一区二区精美| 亚洲国产精品一区二区www在线| 欧美国产欧美亚洲国产日韩mv天天看完整 | 亚洲一区www| 国产精品一区二区三区乱码 | 欧美高清在线| 欧美精品三区| 性欧美18~19sex高清播放| 亚洲一级在线观看| 亚洲免费伊人电影在线观看av| 国产亚洲在线| 91久久精品一区二区别| 国产精品国产三级国产专播精品人 | 国产欧美欧美| 久久综合久久综合久久| 欧美精品一线| 欧美在线高清| 国产日韩专区在线| 欧美一区二区三区精品电影| 99国产精品久久久久久久| 国产精品久久国产精品99gif| 亚洲欧美日韩视频二区| 久久免费偷拍视频| 亚洲视频在线免费观看| 久久国产精品第一页 | 最新成人在线| 国产精品久久久久久户外露出 | 欧美高清在线视频观看不卡| 亚洲午夜精品一区二区三区他趣| 欧美在线观看一区二区| 99香蕉国产精品偷在线观看| 欧美尤物一区| 亚洲一区二区高清| 蜜月aⅴ免费一区二区三区 | 亚洲丰满少妇videoshd| 国产精品久久久一区二区| 欧美成人精品激情在线观看| 国产精品久久久久久久久久久久| 欧美1区免费| 国产女主播一区二区三区| 亚洲肉体裸体xxxx137| 好男人免费精品视频| 亚洲天堂成人| 在线一区观看| 欧美a级理论片| 久久久久久久一区| 国产精品色一区二区三区| 亚洲经典自拍| 亚洲人成毛片在线播放女女| 久久久精彩视频| 久久国产精品99国产| 欧美午夜精品久久久久久孕妇| 亚洲大胆av| 久久成人免费日本黄色| 欧美日韩成人免费| 免费在线观看精品| 国外成人在线| 欧美一区1区三区3区公司| 亚洲欧美日韩综合一区| 欧美日韩免费在线观看| 亚洲国产裸拍裸体视频在线观看乱了中文 | 亚洲毛片在线看| 亚洲精品你懂的| 免费视频一区| 亚洲国产精品黑人久久久| 亚洲成人原创| 久久嫩草精品久久久精品一| 久久人人爽人人爽爽久久| 国产欧美一区二区精品仙草咪 | 亚洲电影免费| 久久久久久亚洲综合影院红桃| 久久精品国产99精品国产亚洲性色 | 欧美日韩免费观看一区三区| 亚洲大胆视频| 伊人久久综合| 久久婷婷久久| 欧美高清视频在线| 亚洲久色影视| 欧美日韩国产综合新一区| 99热这里只有精品8| 亚洲一区二区三区精品在线| 国产精品美女999| 欧美一区二区三区的| 另类欧美日韩国产在线| 亚洲国产另类久久久精品极度| 欧美高清在线一区二区| 99国内精品| 欧美在线视频日韩| 亚洲国产成人高清精品| 欧美精品福利在线| 亚洲一二区在线| 久久一区亚洲| 一区二区三区四区国产| 国产精品久久看| 久久亚洲二区| 99热在这里有精品免费| 欧美在线观看视频一区二区| 在线观看日韩专区| 欧美日韩一区综合| 久久成年人视频| 亚洲人线精品午夜| 欧美有码在线视频| 亚洲国产天堂久久综合| 欧美午夜久久久| 久久久人成影片一区二区三区观看| 亚洲精品久久久久| 久久久久久综合| 亚洲午夜激情网页| 在线看片日韩| 国产精品美女久久久| 米奇777超碰欧美日韩亚洲| 在线亚洲免费| 欧美韩日一区二区三区| 性欧美激情精品| 亚洲精品自在在线观看| 国产原创一区二区| 欧美日韩亚洲视频一区| 久久蜜桃av一区精品变态类天堂| 夜夜精品视频一区二区| 亚洲第一福利在线观看| 久久久久99精品国产片| 亚洲永久网站| 亚洲精品国产精品乱码不99 | 一区二区视频欧美| 欧美日韩中文字幕综合视频 | 亚洲经典在线| 国产亚洲午夜| 国产精品人人做人人爽| 欧美精品一区二区三区在线播放| 久久精品麻豆| 午夜精品一区二区三区在线| 一本色道久久综合亚洲精品高清| 亚洲电影第三页| 另类成人小视频在线| 欧美一二三区精品| 亚洲欧美日韩天堂一区二区| 在线视频欧美精品| 一区二区三区高清在线| 亚洲欧美另类久久久精品2019| 99视频精品免费观看| 一区二区亚洲精品| 国产精品揄拍一区二区| 国产精品草草| 欧美日韩一区二区三区免费看| 欧美国产精品| 欧美电影电视剧在线观看| 免费在线观看日韩欧美| 久久综合狠狠| 久热这里只精品99re8久| 久久嫩草精品久久久精品一| 久久精彩免费视频| 久久精品国产综合| 久久久久免费视频| 裸体女人亚洲精品一区| 免费欧美电影| 欧美日韩1080p| 欧美亚一区二区| 国产精品一区免费视频| 国产精品夜夜嗨| 国产一区二区三区黄视频| 国产亚洲美州欧州综合国| 黄色亚洲精品| 亚洲激情一区二区三区| 日韩视频一区| 亚洲欧美日韩精品久久久久| 欧美一级精品大片| 六月丁香综合| 亚洲国产精品www| aaa亚洲精品一二三区| 亚洲视频图片小说| 午夜亚洲视频| 美女91精品| 欧美午夜精品久久久| 国产无一区二区| 亚洲狠狠婷婷|