亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? smsprs.cpp

?? ril source code for Windows CE
?? CPP
?? 第 1 頁 / 共 4 頁
字號:
//
// Copyright (c) Microsoft Corporation.  All rights reserved.
//
//
// Use of this sample source code is subject to the terms of the Microsoft
// license agreement under which you licensed this sample source code. If
// you did not accept the terms of the license agreement, you are not
// authorized to use this sample source code. For the terms of the license,
// please see the license agreement between you and Microsoft or, if applicable,
// see the LICENSE.RTF on your install media or the root of your tools installation.
// THE SAMPLE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES.
//
/*++
THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
PARTICULAR PURPOSE.

Module Name:

smsprs.cpp

Abstract:

  Code to convert an incoming SMS message from GSM format to an
  RILMESSAGE struct.

Notes:


--*/


#include "precomp.h"


//
// Command types
//
static const DWORD g_rgdwCommandTypes[] =
{
    0x00,   // RIL_MSGCMDTYPE_STATUSREQ
    0x01,   // RIL_MSGCMDTYPE_CANCELSTATUSREQ
    0x02,   // RIL_MSGCMDTYPE_DELETEMESSAGE
    0x03,   // RIL_MSGCMDTYPE_ENABLESTATUSREQ
};
#define NUM_COMMANDTYPES    (sizeof(g_rgdwCommandTypes) / sizeof(DWORD))

//
// Geographical Scope
//
static const DWORD g_rgdwGeographicalScopes[] =
{
    RIL_GEOSCOPE_CELL_IMMEDIATE,
    RIL_GEOSCOPE_PLMN,
    RIL_GEOSCOPE_LOCATIONAREA,
    RIL_GEOSCOPE_CELL,
};
#define NUM_GEOGRAPHICALSCOPES  (sizeof(g_rgdwGeographicalScopes) / sizeof(DWORD))

//
// DCS Languages
//
static const DWORD g_rgdwDCSLanguagesGroup1[] =
{
    RIL_DCSLANG_GERMAN,                          
    RIL_DCSLANG_ENGLISH,                         
    RIL_DCSLANG_ITALIAN,                         
    RIL_DCSLANG_FRENCH,                          
    RIL_DCSLANG_SPANISH,                         
    RIL_DCSLANG_DUTCH,                           
    RIL_DCSLANG_SWEDISH,   
    RIL_DCSLANG_DANISH,    
    RIL_DCSLANG_PORTUGUESE,
    RIL_DCSLANG_FINNISH,  
    RIL_DCSLANG_NORWEGIAN,
    RIL_DCSLANG_GREEK,    
    RIL_DCSLANG_TURKISH,  
    RIL_DCSLANG_HUNGARIAN,
    RIL_DCSLANG_POLISH,
    RIL_DCSLANG_UNKNOWN,
};

static const DWORD g_rgdwDCSLanguagesGroup2[] =
{
    RIL_DCSLANG_CZECH,                          
    RIL_DCSLANG_ARABIC,                         
    RIL_DCSLANG_RUSSIAN,                         
    RIL_DCSLANG_ICELANDIC,                          
    RIL_DCSLANG_UNKNOWN,
};


//
// Constants and macros for parsing Cell Broadcast messages
//
const UINT CELLBROADCAST_HEADER_LENGTH = 6;

#define MESSAGECODE_FROM_SERIALNUMBER(sn)   ((sn >> 4) & 0x3ff)
#define GEOSCOPE_FROM_SERIALNUMBER(sn)      g_rgdwGeographicalScopes[((sn >> 14) & 0x3)]
#define UPDATENUMBER_FROM_SERIALNUMBER(sn)  (sn & 0xf)

#define PAGENUMBER(b)   ((b >> 4) & 0xf)
#define TOTALPAGES(b)   (b & 0xf)


//
// Table used to map semi-byte values to BCD characters
//
static const WCHAR g_rgwchSemiByteToBCDMap[16] = { L'0', L'1', L'2', L'3', L'4', L'5', L'6', L'7', L'8', L'9', L'*', L'#', L'a', L'b', L'c', L' ' };


//
// Convert a semi-byte into a BCD value
//
static WCHAR SemiByteToBCD(const BYTE bByte, const BOOL fHigh)
{
    FUNCTION_TRACE(SemiByteToBCD);
    // If a semi-octect is a non-integer value != 0x0f, then the follow mapppings hold.
    // If a semi-octect prior to the last octect contains 0x0f, we skip that octet and continue on.
    // GSM 03.40 section 9.1.2.3

    BYTE bSemiByte = (fHigh ? (bByte & 0xf0) >> 4 : bByte & 0x0f);
    DEBUGCHK(0x10 > bSemiByte);
    return g_rgwchSemiByteToBCDMap[bSemiByte];
}


//
// Fill in RILADDRESS structure from BYTE array
// see GSM 03.40 section 9.1.2.5 and GSM 04.11 8.2.5.2
//
static BOOL ParseMsgAddress(const BYTE* const pbIn, const BOOL fBeforePDU, RILADDRESS& rraAddress, UINT& rcbParsed, BOOL fGSM3dot40)
{
    FUNCTION_TRACE(ParseMsgAddress);
    DEBUGCHK(NULL != pbIn);

    UINT i;
    BYTE bType;
    BYTE bNumPlan = pbIn[1] & 0x0f;
    const BYTE* pbWalk;
    LPWSTR pwchWalk;
    UINT cchUsed;
    UINT cbAddress;
    WCHAR wchBCD;
    BOOL fRet = FALSE;

    // Initalize returned values
    rcbParsed = 0;
    (void)memset(&rraAddress, 0x00, sizeof(RILADDRESS));
    rraAddress.cbSize = sizeof(RILADDRESS);

    // If address length is 0, just get out. This shouldn't happen, but we've seen it.
    if (*pbIn==0)
    {
        DEBUGMSG(ZONE_ERROR, (TEXT("RILDrv : E : ParseMsgAddress : Address length is 0?\r\n")));
        if (fGSM3dot40)
        {
            // GSM 03.40 section 9.2.2.1 indicates that there will always be a MINIMUM of 2 octets for the TP-OA field
            // Some SMS messages we've seen in the wild have a TP-OA Address-Length of 0, Type-of-Address of International
            // and 0 bytes of data.  Setting rcbParsed to 2 below (rather than 1) is necessary to correctly parse these
            // messages.
            rcbParsed = 2;
        }
        else
        {
            // GSM 04.11 8.2.5.2 is ambiguous about whether a zero length address will include an address type and be
            // two bytes, or will just have a length and be one byte.  However we have seen at least one case in which
            // an address did not have a type, just a length.  There are no known instances yet when it has both a type
            // and a length, so for now we are assuming it will always be just one byte.
            rcbParsed = 1;
        }
        return TRUE;
    }

    // Determine the address type
    bType = (pbIn[1] & 0x70) >> 4;

    for (i = 0; i < NUM_ADDRTYPES; i++) {
        if (g_rgbAddrTypes[i] == bType) {
            rraAddress.dwType = i;
            rraAddress.dwParams |= RIL_PARAM_A_TYPE;
            break;
        }
    }
    DEBUGCHK(0 != (rraAddress.dwParams & RIL_PARAM_A_TYPE));

    if ((RIL_ADDRTYPE_UNKNOWN == rraAddress.dwType) ||
        (RIL_ADDRTYPE_INTERNATIONAL == rraAddress.dwType) ||
        (RIL_ADDRTYPE_NATIONAL == rraAddress.dwType)) {
        // Determine the numbering plan
        for (i = 0; i < NUM_NUMPLANS; i++) {
            if (g_rgbNumPlans[i] == bNumPlan) {
                rraAddress.dwNumPlan = i;
                rraAddress.dwParams |= RIL_PARAM_A_NUMPLAN;
                break;
            }
        }

        // If the number plan is not one that is listed in 03.40,
        // then it is a reserved value, which we are supposed to
        // treat as 'Unknown'.
        if (RIL_PARAM_A_NUMPLAN != (rraAddress.dwParams & RIL_PARAM_A_NUMPLAN))
        {
            rraAddress.dwNumPlan = RIL_NUMPLAN_UNKNOWN;
            rraAddress.dwParams |= RIL_PARAM_A_NUMPLAN;
            DEBUGMSG(ZONE_INFO, (TEXT("RILDrv : i : ParseMsgAddress : Parsed reserved numbering plan: 0x0%x\r\n"), bNumPlan));
        }
    }

    if (rraAddress.dwType == RIL_ADDRTYPE_ALPHANUM) {
        // It seems that alphanumeric address length is the number of semi-octets as specified in GSM 03.40 section 9.1.2.5
        // so we need to determine the number of bytes from semi-octets (essentially nibbles). 
        //there are two semi-octets per byte, but we need the ceiling since a straggling remainder nibble takes up a whole byte.
        // so + 1, then divide by two...
        cbAddress = (*pbIn + 1) / 2;

        if (!(ConvertToUnicode(ENCODING_GSMDEFAULT, (LPCSTR) (pbIn + 2), cbAddress, rraAddress.wszAddress,
                                MAXLENGTH_ADDRESS-1, cchUsed))) {
            goto Error;
        }
    } else {
        if (!fBeforePDU) {
            // Calculate size of semi-octet-encoded address, per GSM 03.40 section 9.1.2.3
            cbAddress = *pbIn / 2 + *pbIn % 2;
        } else {
            cbAddress = *pbIn - 1;
        }

        pbWalk = pbIn + 2;
        pwchWalk = rraAddress.wszAddress;

        for (i = 0; i < cbAddress; i++) {
            wchBCD = SemiByteToBCD(*pbWalk, FALSE);
            if (L' ' != wchBCD) {
                *pwchWalk++ = wchBCD;
            }
            wchBCD = SemiByteToBCD(*pbWalk, TRUE);
            if (L' ' != wchBCD) {
                *pwchWalk++ = wchBCD;
            }
            pbWalk++;
        }

        // NULL-terminate the address string
        *pwchWalk = L'\0';
    }
    rraAddress.dwParams |= RIL_PARAM_A_ADDRESS;

    rcbParsed = cbAddress + 2;
    fRet = TRUE;

Error:
    return fRet;
}


//
// Fill in SYSTEMTIME structure from BYTE array
// see GSM 03.40 section 9.2.3.11
//
static BOOL ParseMsgTimeStamp(const BYTE* const pbIn, SYSTEMTIME& rstTime, UINT& rcbParsed)
{
    FUNCTION_TRACE(ParseMsgTimeStamp);
    DEBUGCHK(NULL != pbIn);

    UINT nYear;
    const BYTE* pbWalk = pbIn;
    UINT nOffset;
    BOOL fOffsetNegative;
    FILETIME_ULARGEINT ftuliTime; memset(&ftuliTime,0,sizeof(ftuliTime)); // zero struct
    ULARGE_INTEGER uliOffset; memset(&uliOffset,0,sizeof(uliOffset)); // zero struct
    BOOL fRet = FALSE;

    rcbParsed = 0;
    (void)memset(&rstTime, 0x00, sizeof(SYSTEMTIME));

    // Parse year
    // We don't expect to see any messages with a timestamp prior to 1991.
    // This should give plenty of buffer for abnormally early timestamps while still leaving
    // working functionality until 2090.
    nYear = (*pbWalk & 0x0f) * 10 + ((*pbWalk & 0xf0) >> 4);
    if (nYear > 90) {
        rstTime.wYear = 1900 + nYear;
    } else {
        rstTime.wYear = 2000 + nYear;
    }
    pbWalk++;

    // Parse month
    rstTime.wMonth = (*pbWalk & 0x0f) * 10 + ((*pbWalk & 0xf0) >> 4);
    pbWalk++;

    // Parse day
    rstTime.wDay = (*pbWalk & 0x0f) * 10 + ((*pbWalk & 0xf0) >> 4);
    pbWalk++;

    // Parse hours
    rstTime.wHour = (*pbWalk & 0x0f) * 10 + ((*pbWalk & 0xf0) >> 4);
    pbWalk++;

    // Parse minutes
    rstTime.wMinute = (*pbWalk & 0x0f) * 10 + ((*pbWalk & 0xf0) >> 4);
    pbWalk++;

    // Parse seconds
    rstTime.wSecond = (*pbWalk & 0x0f) * 10 + ((*pbWalk & 0xf0) >> 4);
    pbWalk++;

#if defined(TRUST_TIMEZONE_FIELD)
    /*
    The following code to adjust rstTime according to the time-zone information
    from the input is unused because most shipping GSM phones seem to ignore
    that field.  Specifically, all SMSCs seem to fill in the TP-SCTS field based
    on their *local* time and then set the offset from GMT to *0*.  Unless the
    SMSC is actually based in the GMT+0 time zone, this behavior is incorrect.
    Because our devices know which time zone they're in, if they use the time
    zone information provided, then they will calculate a time that is adjusted
    for the device's offset from the SMSC's (incorrectly reported) offset and
    will obtain a resulting time that is incorrect.  This leads to SMS messages
    appearing in Inbox with incorrect time stamps and ends up confusing users.
    */

    // Parse timezone offset (LocalTime - GMT in in quarters of an hour)
    // See GSM 03.40 ver5.8.1 ch9.2.3.11
    nOffset = ((*pbWalk & 0x07) * 10 + ((*pbWalk & 0xf0) >> 4)) * 15;
    fOffsetNegative = (*pbWalk & 0x08);
#else // defined(TRUST_TIMEZONE_FIELD)
    /*
    Until SMSCs start getting properly configured, the best option seems to be
    to effectively ignore the time zone information (as other GSM phones do).
    However, in order for us to ignore the time zone field, we actually need
    to fill in the SYSTEMTIME structure with the UTC representation of the local
    time we just parsed.  That means offsetting it by the current time zone bias
    of the device.
    */

    {
    TIME_ZONE_INFORMATION tzi;
    LONG lBias = 0;
    const DWORD dwGetTimeZoneInformationResult = GetTimeZoneInformation(&tzi);
    if(TIME_ZONE_ID_STANDARD == dwGetTimeZoneInformationResult) {
        lBias = tzi.Bias+tzi.StandardBias;
    } else if(TIME_ZONE_ID_DAYLIGHT == dwGetTimeZoneInformationResult) {
        lBias = tzi.Bias+tzi.DaylightBias;
    } else if(TIME_ZONE_ID_UNKNOWN == dwGetTimeZoneInformationResult) {
        lBias = tzi.Bias;
    } else {  // Would like to check for error with TIME_ZONE_ID_INVALID, but it's not defined by our OS headers
        DEBUGCHK(!"Should never reach here");
    }
    fOffsetNegative = (lBias < 0);
    nOffset = ((fOffsetNegative) ? (-lBias) : (lBias));
    // Now that we've used fOffsetNegative to set nOffset=abs(lBias), we need
    // to flip fOffsetNegative because we want to calculate the UTC value that
    // represents the same temporal time as the local clock time we just
    // extracted.
    fOffsetNegative = !fOffsetNegative;
    }
#endif // defined(TRUST_TIMEZONE_FIELD)
    pbWalk++;


    // Convert our local time to filetime
    if (!SystemTimeToFileTime(&rstTime, &ftuliTime.ft)) {
        goto Error;
    }

    // Convert timezone offset to filetime
    uliOffset.QuadPart = nOffset * (__int64)600000000;

    // Apply the timezone offset
    // (NOTE: the offset is LocalTime - GMT, so we need to *add* it to the LocalTime if the offset is negative,
    //        and *subtract* it if the offset is positive)
    if (fOffsetNegative) {
        ftuliTime.uli.QuadPart += uliOffset.QuadPart;
    } else {
        ftuliTime.uli.QuadPart -= uliOffset.QuadPart;
    }

    // Convert the updated filetime back to the SYSTEMTIME structure
    if (!FileTimeToSystemTime(&ftuliTime.ft, &rstTime)) {
        goto Error;
    }

    rcbParsed = pbWalk - pbIn;
    fRet = TRUE;

Error:
    return fRet;
}



//
// Set the ProtocolID of an Incoming SMS Message
// see GSM 03.40 section 9.2.3.9
//
static BOOL ParseMsgProtocolID(const BYTE* const pbIn, DWORD& rdwProtocolID, UINT& rcbParsed)
{
    FUNCTION_TRACE(ParseMsgProtocolID);
    DEBUGCHK(NULL != pbIn);

    UINT i;
    BOOL fRet = FALSE;

    rcbParsed = 0;

    if ((0 == (*pbIn & 0xe0)) || (0x80 == (*pbIn & 0xc0))) {  // Reserved or unsupported values should be treated as 0x00
        rdwProtocolID = RIL_MSGPROTOCOL_SMETOSME;
        fRet = TRUE;
    } else {
        for (i = 0; i < NUM_PROTOCOLIDS; i++) {
            if (g_rgdwProtocolIDs[i] == *pbIn) {
                rdwProtocolID = i;
                fRet = TRUE;
                break;
            }
        }

        if (!fRet)
        {
            rdwProtocolID = RIL_MSGPROTOCOL_UNKNOWN;
            fRet = TRUE;
        }
    }

    if (fRet) {
        rcbParsed = 1;
    }
    return fRet;
}


//
// Set Data Coding Scheme of Incoming SMS Message
// see GSM 03.38
//
static BOOL ParseMsgDCS(const BYTE* const pbIn, RILMSGDCS& rrmdDCS, UINT& rcbParsed)
{
    FUNCTION_TRACE(ParseMsgDCS);
    DEBUGCHK(NULL != pbIn);

    BYTE bDCS = *pbIn;
    BOOL fRet = FALSE;

    rcbParsed = 0;
    (void)memset(&rrmdDCS, 0x00, sizeof(RILMSGDCS));
    rrmdDCS.cbSize = sizeof(RILMSGDCS);

    switch (bDCS & 0xf0)
    {
        case 0x00:
        case 0x10:
        case 0x20:
        case 0x30:
            rrmdDCS.dwType = RIL_DCSTYPE_GENERAL;
            rrmdDCS.dwParams |= RIL_PARAM_MDCS_TYPE;

            if (bDCS & 0x20) {
                rrmdDCS.dwFlags |= RIL_DCSFLAG_COMPRESSED;
                rrmdDCS.dwParams |= RIL_PARAM_MDCS_FLAGS;
            }

            if (bDCS & 0x10) {
                switch (bDCS & 0x03)
                {
                    case 0x00:
                        rrmdDCS.dwMsgClass = RIL_DCSMSGCLASS_0;
                        break;

                    case 0x01:
                        rrmdDCS.dwMsgClass = RIL_DCSMSGCLASS_1;
                        break;

                    case 0x02:

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
麻豆视频观看网址久久| 亚洲人成人一区二区在线观看 | 99精品视频中文字幕| 国产精品自产自拍| 国产高清不卡一区| 97精品国产露脸对白| 99re热视频精品| 欧美亚洲一区三区| 7777女厕盗摄久久久| www国产成人| 亚洲丝袜另类动漫二区| 一区二区在线免费观看| 午夜精品久久久久久久蜜桃app| 亚洲欧美电影一区二区| 亚洲一线二线三线视频| 精品一区二区三区免费| 国产一区二区三区久久悠悠色av| 成人av在线资源网站| 色综合天天综合狠狠| 91精品视频网| 国产精品福利影院| 裸体歌舞表演一区二区| 波多野结衣精品在线| 51精品国自产在线| 欧美国产国产综合| 午夜欧美一区二区三区在线播放| 久久不见久久见免费视频1| 91在线观看一区二区| 精品国产免费人成电影在线观看四季 | 国产精品99久久久久久有的能看| 91精品福利视频| 日本一区二区视频在线| 午夜视频在线观看一区二区三区| 国产精品77777| 精品国产成人系列| 亚洲电影在线免费观看| 99视频精品在线| 久久精品亚洲精品国产欧美| 日韩成人dvd| 欧洲一区在线电影| 国产精品初高中害羞小美女文| 久久精品国产精品亚洲精品| 欧美日韩另类国产亚洲欧美一级| 国产精品传媒视频| 国产福利一区二区三区视频| 精品欧美乱码久久久久久 | 国内成+人亚洲+欧美+综合在线| 精品污污网站免费看| 亚洲午夜在线电影| 欧美人与禽zozo性伦| 午夜电影一区二区三区| 日韩精品一区二区在线观看| 天天影视涩香欲综合网| 欧美日韩激情在线| 亚洲一区二区在线视频| 在线免费观看一区| 一区二区三区久久| 欧美久久久久久久久中文字幕| 亚洲成av人片在线观看| 6080日韩午夜伦伦午夜伦| 伊人婷婷欧美激情| 制服视频三区第一页精品| 有码一区二区三区| 色偷偷成人一区二区三区91 | 亚洲一区二区三区在线| 91精品国产综合久久福利软件 | 综合久久给合久久狠狠狠97色| a级精品国产片在线观看| 欧美精品一区二区三区高清aⅴ | 在线观看91视频| 亚洲精品成人在线| 精品三级在线看| 9久草视频在线视频精品| 亚洲制服丝袜一区| 中文字幕精品—区二区四季| 成人aa视频在线观看| 国产综合色视频| 免费亚洲电影在线| 99视频一区二区| 高清beeg欧美| 国内精品在线播放| 久久99精品久久久久久| 亚洲成人综合在线| 亚洲综合自拍偷拍| 成人欧美一区二区三区黑人麻豆| www国产亚洲精品久久麻豆| 日韩一区二区精品在线观看| 在线观看免费亚洲| 欧美在线一区二区三区| 欧洲亚洲精品在线| 欧美午夜免费电影| 91精品国产美女浴室洗澡无遮挡| 欧美午夜免费电影| 一级日本不卡的影视| 一区二区三区日韩在线观看| 中文字幕亚洲视频| 1区2区3区精品视频| 久久精品一区二区三区不卡牛牛| 欧美日韩极品在线观看一区| 欧美日韩免费观看一区二区三区| 欧美性欧美巨大黑白大战| 91丨porny丨中文| 777久久久精品| 日韩一区二区免费视频| 欧美精品一区男女天堂| 中文字幕av免费专区久久| 国产精品国产三级国产a| 亚洲少妇最新在线视频| 五月天网站亚洲| 麻豆成人久久精品二区三区红| 麻豆视频观看网址久久| 国产不卡视频一区二区三区| av网站一区二区三区| 精品视频1区2区3区| 精品美女在线观看| 一区二区三区精品在线观看| 日本强好片久久久久久aaa| 成人午夜精品一区二区三区| 欧美在线免费视屏| 久久九九影视网| 亚洲自拍偷拍图区| 国产精品亚洲第一| 欧美午夜电影一区| 精品国产一区a| 亚洲激情一二三区| 欧美一区二区三区小说| 亚洲黄色片在线观看| 久久99国产精品久久99| 日本二三区不卡| 久久久久久久久久久电影| 亚洲午夜电影在线| 大桥未久av一区二区三区中文| 日韩精品中文字幕一区二区三区 | av在线综合网| 精品免费视频.| 亚洲第一成人在线| 97国产一区二区| jlzzjlzz欧美大全| 日韩美女在线视频| 久久99精品久久久久久久久久久久| 欧美一级午夜免费电影| 国产美女视频一区| 亚洲欧美日韩一区二区 | 亚洲最大成人网4388xx| 欧美日韩视频不卡| 精品亚洲aⅴ乱码一区二区三区| 久久精品一区二区三区不卡| 波多野结衣一区二区三区| 一区二区成人在线| 久久新电视剧免费观看| 91在线看国产| 九九久久精品视频| 亚洲精品五月天| 精品欧美一区二区三区精品久久 | 国产激情一区二区三区四区 | 国产精品妹子av| 欧美日韩成人在线| 国产不卡免费视频| 欧美亚洲综合另类| 波多野结衣中文一区| 日韩精品每日更新| 亚洲日本在线天堂| 欧美电视剧在线观看完整版| 日本高清无吗v一区| 国产精品一区二区免费不卡| 亚洲一区av在线| 亚洲欧美日韩人成在线播放| 欧美变态tickle挠乳网站| 91小宝寻花一区二区三区| 国产精品66部| 日本欧美一区二区| 午夜视频在线观看一区二区 | 国产一区二区伦理片| 偷拍亚洲欧洲综合| 亚洲成人资源网| 一区二区欧美视频| 中文字幕在线播放不卡一区| 久久精品一区二区三区不卡牛牛| 欧美一区二区三区在线电影 | 91在线国内视频| 91麻豆国产在线观看| 成人精品在线视频观看| 丁香另类激情小说| 成人蜜臀av电影| kk眼镜猥琐国模调教系列一区二区| 国产精品99久久不卡二区| 蜜臀精品久久久久久蜜臀 | 日韩国产在线观看一区| 亚洲成人动漫一区| 日本亚洲欧美天堂免费| 日韩av一区二区在线影视| 视频一区视频二区中文字幕| 日韩影院在线观看| 欧美aⅴ一区二区三区视频| 美女mm1313爽爽久久久蜜臀| 久久成人综合网| 国产成人av电影免费在线观看| 97国产精品videossex| 在线视频国产一区| 精品动漫一区二区三区在线观看|