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

S.l.e!ep.¢%

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

WSASend 函數(shù)

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

The WSASend function sends data on a connected socket.

Syntax

int WSASend(
  __in   SOCKET s,
  __in   LPWSABUF lpBuffers,
  __in   DWORD dwBufferCount,
  __out  LPDWORD lpNumberOfBytesSent,
  __in   DWORD dwFlags,
  __in   LPWSAOVERLAPPED lpOverlapped,
  __in   LPWSAOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine
);

Parameters

s [in]

A descriptor that identifies a connected socket.

lpBuffers [in]

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. For a Winsock application, once the WSASend function is called, the system owns these buffers and the application may not access them. This array must remain valid for the duration of the send operation.
一個(gè)指向WSABUF結(jié)構(gòu)數(shù)組的指針。每個(gè)WSABUF結(jié)構(gòu)包含緩沖區(qū)的指針和緩沖區(qū)的大小。

dwBufferCount [in]

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

lpNumberOfBytesSent [out]

A pointer to the number, in bytes, sent by this call if the I/O operation completes immediately. If the lpOverlapped parameter is non-NULL, this parameter is optional and can be set to NULL.
如果發(fā)送操作立即完成,則為一個(gè)指向所發(fā)送數(shù)據(jù)字節(jié)數(shù)的指針。


dwFlags [in]

The flags used to modify the behavior of the WSASend function call. For more information, see Using dwFlags in the Remarks section.
標(biāo)志位。

lpOverlapped [in]

A pointer to a WSAOVERLAPPED structure. This parameter is ignored for nonoverlapped sockets.
指向WSAOVERLAPPED結(jié)構(gòu)的指針(對于非重疊套接口則忽略)。

lpCompletionRoutine [in]

A pointer to the completion routine called when the send operation has been completed. This parameter is ignored for nonoverlapped sockets.
一個(gè)指向發(fā)送操作完成后調(diào)用的完成例程的指針。(對于非重疊套接口則忽略)。

Return Value

返回值

If no error occurs and the send operation has completed immediately, WSASend 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ā)生且發(fā)送操作立即完成,則WSASend()函數(shù)返回所發(fā)送的字節(jié)數(shù)。(注意該數(shù)目可能小于len參數(shù)所指定的值)。如果連接結(jié)束,則返回0。請注意在這種情況下完成指示(啟動(dòng)指定的完成例程或設(shè)置一個(gè)事件對象)將早已發(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(),故是必需的。請注意僅適用于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ù)位。

WSAEFAULT

The lpBuffers, lpNumberOfBytesSent, lpOverlapped, lpCompletionRoutine parameter is not totally contained in a valid part of the user address space.
lpBuffer參數(shù)并不是用戶地址空間的一個(gè)有效部分。

WSAEINTR

A blocking Windows Socket 1.1 call was canceled through WSACancelBlockingCall.
通過WSACancelBlockingCall()函數(shù)取消(阻塞)調(diào)用。

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ù)

WSAEINVAL

The socket has not been bound with bind or the socket is not created with the overlapped flag.
套接口未用bind()捆綁,或者套接口未用重疊標(biāo)志位創(chuàng)建。

WSAEMSGSIZE

The socket is message oriented, and the message is larger than the maximum supported by the underlying transport.
套接口是面向消息的,但是消息大于底層傳送的最大值。

WSAENETDOWN

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

WSAENETRESET

For a stream socket, 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ù)位造成連接的中止。

WSAENOBUFS

The Windows Sockets provider reports a buffer deadlock.
WinSock提供者報(bào)告一個(gè)緩沖區(qū)死鎖。

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, MSG_PARTIAL is not supported, or the socket is unidirectional and supports only receive operations.
設(shè)置了MSG_OOB,但是該套接口不是諸如SOCK_STREAM流類型的,與套接口相關(guān)的通訊域不支持帶外數(shù)據(jù),或者套接口是單向的,只支持接收操作。

WSAESHUTDOWN

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

WSAEWOULDBLOCK

Windows?NT:??

Overlapped sockets: There are too many outstanding overlapped I/O requests. Nonoverlapped sockets: The socket is marked as nonblocking and the send operation cannot be completed immediately.
太多的重疊輸入/輸出操作。

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)重疊操作,過后將有完成指示。

WSA_OPERATION_ABORTED

The overlapped operation has been canceled due to the closure of the socket, the execution of the "SIO_FLUSH" command in WSAIoctl, or the thread that initiated the overlapped request exited before the operation completed. For more information, see the Remarks section.

Remarks

The WSASend function provides functionality over and above the standard send function in two important areas:

  • It can be used in conjunction with overlapped sockets to perform overlapped send operations.
  • It allows multiple send buffers to be specified making it applicable to the scatter/gather type of I/O.

The WSASend function is used to write outgoing data from one or more buffers on a connection-oriented socket specified by s. It can also be used, however, on connectionless sockets that have a stipulated default peer address established through the connect or WSAConnect function.

A socket created by the socket function will have the overlapped attribute as the default. A socket created by the WSASocket function with the dwFlags parameter passed to WSASocket with the WSA_FLAG_OVERLAPPED bit set will have the overlapped attribute. For sockets with the overlapped attribute, WSASend uses overlapped I/O unless both the lpOverlapped and lpCompletionRoutine parameters are NULL. In that case, the socket is treated as a non-overlapped socket. A completion indication will occur, invoking the completion of a routine or setting of an event object, when the buffer(s) have been consumed by the transport. If the operation does not complete immediately, the final completion status is retrieved through the completion routine or WSAGetOverlappedResult.

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

For non-overlapped sockets, the last two parameters (lpOverlapped, lpCompletionRoutine) are ignored and WSASend adopts the same blocking semantics as send. Data is copied from the buffer(s) into the transport's buffer. If the socket is non-blocking and stream-oriented, and there is not sufficient space in the transport's buffer, WSASend will return with only part of the application's buffers having been consumed. Given the same buffer situation and a blocking socket, WSASend will block until all of the application buffer contents have been consumed.

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

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 message-oriented sockets, do not exceed the maximum message size of the underlying provider, which can be obtained by getting the value of socket option SO_MAX_MSG_SIZE. If the data is too long to pass atomically through the underlying protocol the error WSAEMSGSIZE is returned, and no data is transmitted.

Windows?Me/98/95:??The WSASend function does not support more than 16 buffers.

Note??The successful completion of a WSASend does not indicate that the data was successfully delivered.

Using dwFlags

The dwFlags 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 dwFlags parameter. The latter is constructed by using the bitwise OR operator with any of any of the values listed in the following table.

Value Meaning
MSG_DONTROUTE Specifies that the data should not be subject to routing. A Windows Sockets service provider can choose to ignore this flag.
MSG_OOB Send OOB data on a stream-style socket such as SOCK_STREAM only.
MSG_PARTIAL Specifies that lpBuffers only contains a partial message. Be aware that the error code WSAEOPNOTSUPP will be returned by transports that do not support partial message transmissions.

Overlapped Socket I/O

If an overlapped operation completes immediately, WSASend returns a value of zero and the lpNumberOfBytesSent parameter is updated with the number of bytes sent. If the overlapped operation is successfully initiated and will complete later, WSASend returns SOCKET_ERROR and indicates error code WSA_IO_PENDING. In this case, lpNumberOfBytesSent is 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.

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. For more information, see ExitThread.

The WSASend function can be called from within the completion routine of a previous WSARecv, WSARecvFrom, WSASend, or WSASendTo function. This enables 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-NULL?lpCompletionRoutine 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 transport providers allow an application to invoke send and receive operations from within the context of the socket I/O completion routine, and guarantee that, 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 following C++ code example is a prototype of the completion routine.

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

The CompletionRoutine function is a placeholder for an application-defined or library-defined function name. The dwError parameter specifies the completion status for the overlapped operation as indicated by lpOverlapped. cbTransferred specifies the number of bytes sent. Currently there are no flag values defined and dwFlags will be zero. This function does not return a value.

Returning from this function allows invocation of another pending completion routine for this socket. 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 sent in the same order they are specified.

If you are using I/O completion ports, be aware that the order of calls made to WSASend is also the order in which the buffers are populated. WSASend 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 code example shows how to use the WSASend function in overlapped I/O mode.

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

#define DATA_BUFSIZE 4096
#define SEND_COUNT   10

int __cdecl main()
{
    WSADATA wsd;
    struct addrinfo *result = NULL;
    struct addrinfo hints = { 0 };
    WSAOVERLAPPED SendOverlapped = { 0 };
    SOCKET ListenSocket = INVALID_SOCKET;
    SOCKET AcceptSocket = INVALID_SOCKET;
    WSABUF DataBuf;
    DWORD SendBytes;
    DWORD Flags;
    char buffer[DATA_BUFSIZE];
    int err, rc, i;

    // Load Winsock
    rc = WSAStartup(MAKEWORD(2, 2), &wsd);
    if (rc != 0) {
        fprintf(stderr, "Unable to load Winsock: %d\n", rc);
        return 1;
    }
    // Initialize the hints to obtain the 
    // wildcard bind address for IPv4
    hints.ai_family = AF_INET;
    hints.ai_socktype = SOCK_STREAM;
    hints.ai_protocol = IPPROTO_TCP;
    hints.ai_flags = AI_PASSIVE;

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

    ListenSocket = socket(result->ai_family,
                          result->ai_socktype, result->ai_protocol);
    if (ListenSocket == INVALID_SOCKET) {
        fprintf(stderr, "socket failed: %d\n", WSAGetLastError());
        freeaddrinfo(result);
        return 1;
    }

    rc = bind(ListenSocket, result->ai_addr, (int) result->ai_addrlen);
    if (rc == SOCKET_ERROR) {
        fprintf(stderr, "bind failed: %d\n", WSAGetLastError());
        freeaddrinfo(result);
        closesocket(ListenSocket);
        return 1;
    }

    rc = listen(ListenSocket, 1);
    if (rc == SOCKET_ERROR) {
        fprintf(stderr, "listen failed: %d\n", WSAGetLastError());
        freeaddrinfo(result);
        closesocket(ListenSocket);
        return 1;
    }
    // Accept an incoming connection request
    AcceptSocket = accept(ListenSocket, NULL, NULL);
    if (AcceptSocket == INVALID_SOCKET) {
        fprintf(stderr, "accept failed: %d\n", WSAGetLastError());
        freeaddrinfo(result);
        closesocket(ListenSocket);
        return 1;
    }

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

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

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

    for (i = 0; i < SEND_COUNT; i++) {

        rc = WSASend(AcceptSocket, &DataBuf, 1,
                     &SendBytes, 0, &SendOverlapped, NULL);
        if ((rc == SOCKET_ERROR) &&
            (WSA_IO_PENDING != (err = WSAGetLastError()))) {
            fprintf(stderr, "WSASend failed: %d\n", err);
            break;
        }

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

        rc = WSAGetOverlappedResult(AcceptSocket, &SendOverlapped, &SendBytes,
                                    FALSE, &Flags);
        if (rc == FALSE) {
            fprintf(stderr, "WSASend operation failed: %d\n",
                    WSAGetLastError());
            break;
        }

        printf("Wrote %d bytes\n", SendBytes);

        WSAResetEvent(SendOverlapped.hEvent);

    }

    WSACloseEvent(SendOverlapped.hEvent);
    closesocket(AcceptSocket);
    closesocket(ListenSocket);
    freeaddrinfo(result);

    WSACleanup();

    return 0;
}

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>
            亚洲欧洲精品一区二区三区波多野1战4 | 一本色道久久88综合日韩精品| 99精品国产在热久久婷婷| 亚洲视频在线观看视频| 久久精品国产精品亚洲精品| 美乳少妇欧美精品| 99精品免费| 久久国产精品99久久久久久老狼| 欧美成人亚洲成人| 国产精品久久久久婷婷| 雨宫琴音一区二区在线| 亚洲一区二区三区乱码aⅴ| 久久久国产精彩视频美女艺术照福利| 亚洲福利视频网| 亚洲午夜精品福利| 老鸭窝91久久精品色噜噜导演| 欧美视频在线观看免费网址| 极品少妇一区二区三区精品视频 | 日韩一二三在线视频播| 欧美影院在线| 亚洲国产高清在线| 香蕉国产精品偷在线观看不卡| 欧美成人免费播放| 国内精品久久久久久久97牛牛| 日韩一级在线观看| 久久天天狠狠| 亚洲无限av看| 欧美国产日韩一二三区| 国内精品伊人久久久久av影院 | 亚洲免费中文| 欧美激情网友自拍| 狠狠色综合日日| 亚洲欧美日韩在线播放| 亚洲国产精品电影| 久久精品国产免费观看| 国产精品日韩精品| 99视频在线观看一区三区| 麻豆精品91| 欧美一进一出视频| 国产精品第一页第二页第三页| 亚洲黄色成人网| 久久综合五月天婷婷伊人| 亚洲午夜久久久久久久久电影网| 欧美α欧美αv大片| 国产综合网站| 欧美在线观看一区| 亚洲最新视频在线播放| 欧美极品在线播放| 亚洲国产三级网| 玖玖在线精品| 久久不射电影网| 国产精品一区二区在线观看| 亚洲色图自拍| 亚洲精品欧美日韩专区| 蜜臀久久99精品久久久久久9 | 国产日产亚洲精品系列| 亚洲午夜精品一区二区三区他趣| 亚洲成人在线免费| 国产欧美一区二区三区在线看蜜臀| 一本一本久久a久久精品综合妖精| 欧美成人亚洲成人日韩成人| 久久精品91| 国语自产精品视频在线看| 欧美一区二区三区免费在线看| 一本色道久久综合亚洲91| 欧美日韩精品欧美日韩精品一| 亚洲美女在线视频| 欧美黄色一级视频| 久久一区二区三区四区| 亚洲国产福利在线| 欧美搞黄网站| 免费日韩视频| 亚洲精品在线观| 亚洲精品视频在线播放| 欧美精品一区二区视频| 一区二区三区高清不卡| 日韩亚洲精品在线| 欧美香蕉大胸在线视频观看| 亚洲香蕉伊综合在人在线视看| 99亚洲一区二区| 国产精品伦子伦免费视频| 亚洲欧美在线一区| 亚洲欧美日韩国产中文 | 欧美在线91| 精品福利电影| 欧美激情精品久久久久久大尺度| 欧美激情第五页| 亚洲视频一区在线观看| 亚洲一区激情| 国产一区二区三区在线免费观看| 久久蜜臀精品av| 老司机成人网| 99re6热只有精品免费观看| 日韩亚洲欧美一区| 国产精品亚洲美女av网站| 久久综合伊人77777麻豆| 欧美 亚欧 日韩视频在线| 亚洲美女av在线播放| 一区二区日韩伦理片| 国产日产亚洲精品系列| 欧美ed2k| 欧美日本亚洲韩国国产| 亚洲欧美日韩国产成人| 久久精品在线播放| 99re6这里只有精品| 亚洲一二三区在线| 精品av久久707| 久久精品视频一| 美女成人午夜| 狠狠色狠狠色综合日日五| 一区二区三区久久精品| 亚洲已满18点击进入久久| 一区精品久久| 亚洲免费不卡| 国产亚洲欧美一区在线观看| 欧美大香线蕉线伊人久久国产精品| 欧美激情视频一区二区三区免费 | aaa亚洲精品一二三区| 亚洲一级二级| 91久久久亚洲精品| 亚洲一区二区黄色| 91久久精品国产91久久性色| 亚洲一区二区三区在线看| 亚洲国产精品ⅴa在线观看 | 午夜在线不卡| 久久综合久久综合久久综合| 亚洲性图久久| 久久人人九九| 亚洲欧美制服另类日韩| 猫咪成人在线观看| 欧美一区二区三区喷汁尤物| 欧美成人午夜激情在线| 久久精品噜噜噜成人av农村| 欧美精品三级日韩久久| 久久天堂av综合合色| 国产精品扒开腿做爽爽爽视频 | 亚洲激情综合| 欧美一级在线亚洲天堂| 一区二区三区久久网| 久久久亚洲精品一区二区三区| 亚洲影院污污.| 欧美电影免费| 麻豆久久精品| 国产乱人伦精品一区二区| 亚洲国产一区二区三区高清| 国产性天天综合网| 一区二区av在线| 亚洲精品少妇30p| 久久久www成人免费毛片麻豆| 午夜精品视频一区| 欧美日本亚洲| 亚洲电影免费观看高清完整版在线观看 | 亚洲电影在线看| 亚洲欧美综合| 亚洲一区二区三| 欧美成人精品一区| 久久精品视频在线免费观看| 国产精品久久久久秋霞鲁丝| 亚洲精品乱码久久久久久日本蜜臀| 一区二区三区亚洲| 欧美在线视频一区| 欧美一区二区三区男人的天堂| 欧美午夜激情小视频| 91久久久久| 亚洲伦理在线免费看| 久久中文久久字幕| 米奇777在线欧美播放| 国产婷婷色综合av蜜臀av | 久久久久国产精品一区| 久久综合99re88久久爱| 国产有码在线一区二区视频| 欧美一区三区二区在线观看| 欧美激情视频在线免费观看 欧美视频免费一 | 国产午夜精品久久久久久久| 宅男噜噜噜66一区二区66| 一本到高清视频免费精品| 欧美高清在线精品一区| 欧美成人免费观看| 亚洲国产精品久久久久秋霞不卡| 久久久精品性| 久久精品国产清高在天天线| 国产日韩成人精品| 午夜精品福利电影| 久久精品72免费观看| 国产中文一区二区三区| 欧美影院在线| 久久亚洲图片| 精品动漫3d一区二区三区免费 | 亚洲精品网站在线播放gif| 欧美第一黄色网| 亚洲七七久久综合桃花剧情介绍| 亚洲国产成人在线播放| 蜜臀av性久久久久蜜臀aⅴ四虎| 亚洲第一精品福利| 99热在这里有精品免费| 欧美日韩中文精品| 亚洲欧美日韩一区二区三区在线观看 | 欧美一区二区视频97| 欧美在现视频| 国产在线播放一区二区三区|