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

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

?? buddydlg.cpp

?? 這是國外的resip協議棧
?? CPP
字號:
#include "stdafx.h"#include <cassert>#include "SipIMP.h"#include "BuddyDlg.h"#include "ConfigDlg.h"#include "AddDlg.h"#include "resiprocate/os/DataStream.hxx"#include "resiprocate/os/Data.hxx"#include "resiprocate/Uri.hxx"#ifdef _DEBUG#define new DEBUG_NEW#endifusing namespace resip;//#define VOCAL_SUBSYSTEM Subsystem::SIPBuddyDlg* BuddyDlg::buddy=NULL;// CBuddyDlg dialog used for App Aboutclass CAboutDlg : public CDialog{public:	CAboutDlg();	// Dialog Data	enum { IDD = IDD_ABOUTBOX };protected:	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support	// Implementationprotected:	DECLARE_MESSAGE_MAP()};CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD){}void CAboutDlg::DoDataExchange(CDataExchange* pDX){	CDialog::DoDataExchange(pDX);}BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)END_MESSAGE_MAP()// buddyDlg dialogBuddyDlg::BuddyDlg(CWnd* pParent /*=NULL*/): CDialog(BuddyDlg::IDD, pParent){	m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);}void BuddyDlg::DoDataExchange(CDataExchange* pDX){	CDialog::DoDataExchange(pDX);}BEGIN_MESSAGE_MAP(BuddyDlg, CDialog)	ON_WM_SYSCOMMAND()	ON_WM_PAINT()	ON_WM_QUERYDRAGICON()	//}}AFX_MSG_MAP	ON_BN_CLICKED(IDOK, OnBnClickedOk)	ON_NOTIFY(TVN_SELCHANGED, IDC_TREE, OnTvnSelchangedTree)	ON_EN_CHANGE(IDC_EDIT, OnEnChangeEdit)	//	ON_EN_UPDATE(IDC_EDIT, OnEnUpdateEdit)	ON_BN_CLICKED(IDC_BUTTON_CONFIG, OnBnClickedButtonConfig)	ON_BN_CLICKED(IDC_BUTTON_ADD, OnBnClickedButtonAdd)	ON_BN_CLICKED(IDC_BUTTON_CLEAR, OnBnClickedButtonClear)	//ON_NOTIFY(BCN_HOTITEMCHANGE, IDC_CHECK_ONLINE, OnBnHotItemChangeCheckOnline)	ON_BN_CLICKED(IDC_CHECK_ONLINE, OnBnClickedCheckOnline)	//ON_EN_CHANGE(IDC_EDIT_NOTE, OnEnChangeEditNote)	//ON_EN_UPDATE(IDC_EDIT_NOTE, OnEnUpdateEditNote)	ON_EN_KILLFOCUS(IDC_EDIT_NOTE, OnEnKillfocusEditNote)	ON_BN_CLICKED(IDC_CHECK_SIGN, OnBnClickedCheckSign)	ON_BN_CLICKED(IDC_CHECK_ENCRYPT, OnBnClickedCheckEncrypt)	ON_BN_CLICKED(IDC_BUTTON_DEL, OnBnClickedButtonDel)	ON_BN_CLICKED(IDC_BUTTON_SEND, OnBnClickedButtonSend)END_MESSAGE_MAP()// BuddyDlg message handlersBOOL BuddyDlg::OnInitDialog(){	CDialog::OnInitDialog();	buddy = this;	// Add "About..." menu item to system menu.	// IDM_ABOUTBOX must be in the system command range.	ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);	ASSERT(IDM_ABOUTBOX < 0xF000);	CMenu* pSysMenu = GetSystemMenu(FALSE);	if (pSysMenu != NULL)	{		CString strAboutMenu;		strAboutMenu.LoadString(IDS_ABOUTBOX);		if (!strAboutMenu.IsEmpty())		{			pSysMenu->AppendMenu(MF_SEPARATOR);			pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);		}	}	// Set the icon for this dialog.  The framework does this automatically	//  when the application's main window is not a dialog	SetIcon(m_hIcon, TRUE);			// Set big icon	SetIcon(m_hIcon, FALSE);		// Set small icon	CTreeCtrl* tree = (CTreeCtrl*) GetDlgItem(IDC_TREE);	assert(tree);	CImageList          *pImageList;	CBitmap             bitmap;    pImageList = new CImageList();	pImageList->Create(16, 16, ILC_COLOR4, 2, 1);	bitmap.LoadBitmap(IDB_OFFLINE);	pImageList->Add(&bitmap, (COLORREF)0x000000);	bitmap.DeleteObject();	bitmap.LoadBitmap(IDB_ONLINE);	pImageList->Add(&bitmap, (COLORREF)0x000000);	bitmap.DeleteObject();	tree->SetImageList(pImageList, TVSIL_NORMAL);	if ( theApp.tuIM )	{		assert( theApp.tuIM );		HTREEITEM group = TVI_ROOT;		//group = tree->InsertItem(_T("Friends"), TVI_ROOT, TVI_SORT);		for ( int i=0; i<theApp.tuIM->getNumBuddies(); i++)		{			resip::Uri budy = theApp.tuIM->getBuddyUri(i);			tree->InsertItem( Data::from(budy).c_str(), group, TVI_SORT);		}		tree->Expand(group,TVE_EXPAND);			UINT_PTR timer = SetTimer(1/*timer number*/, 10 /* time ms*/, timerProcCallback/*callback*/);	assert(timer);	}	else	{		display( CString(_T("Could not set up network - likely the port is in use by another program")) );	}	return TRUE;  // return TRUE  unless you set the focus to a control}void BuddyDlg::OnSysCommand(UINT nID, LPARAM lParam){	if ((nID & 0xFFF0) == IDM_ABOUTBOX)	{		CAboutDlg dlgAbout;		dlgAbout.DoModal();	}	else	{		CDialog::OnSysCommand(nID, lParam);	}}// If you add a minimize button to your dialog, you will need the code below//  to draw the icon.  For MFC applications using the document/view model,//  this is automatically done for you by the framework.void BuddyDlg::OnPaint() {	if (IsIconic())	{		CPaintDC dc(this); // device context for painting		SendMessage(WM_ICONERASEBKGND, reinterpret_cast<WPARAM>(dc.GetSafeHdc()), 0);		// Center icon in client rectangle		int cxIcon = GetSystemMetrics(SM_CXICON);		int cyIcon = GetSystemMetrics(SM_CYICON);		CRect rect;		GetClientRect(&rect);		int x = (rect.Width() - cxIcon + 1) / 2;		int y = (rect.Height() - cyIcon + 1) / 2;		// Draw the icon		dc.DrawIcon(x, y, m_hIcon);	}	else	{		CDialog::OnPaint();	}}// The system calls this function to obtain the cursor to display while the user drags//  the minimized window.HCURSOR BuddyDlg::OnQueryDragIcon(){	return static_cast<HCURSOR>(m_hIcon);}void BuddyDlg::OnBnClickedOk(){	// TODO: Add your control notification handler code here	//OnOK();}void BuddyDlg::OnLbnSelchangeList(){	// TODO: Add your control notification handler code here}void BuddyDlg::OnTvnSelchangedTree(NMHDR *pNMHDR, LRESULT *pResult){	LPNMTREEVIEW pNMTreeView = reinterpret_cast<LPNMTREEVIEW>(pNMHDR);	// TODO: Add your control notification handler code here	*pResult = 0;}void BuddyDlg::OnEnChangeEdit(){	CEdit* edit = (CEdit*)GetDlgItem(IDC_EDIT);	assert(edit);	int numLines = edit->GetLineCount();	if ( numLines > 1 )	{		CString text;		edit->GetWindowText(text);		edit->SetWindowText(_T(""));     		text = text.Trim("\n\r");		CTreeCtrl* tree = (CTreeCtrl*) GetDlgItem(IDC_TREE);		assert(tree);		HTREEITEM sel = tree->GetSelectedItem();		CString dest = tree->GetItemText(sel);		CString res = _T("To: ");		res += dest;		res += _T(" ");		res += text;		display(res);		theApp.sendPage(text,dest);	}}void CALLBACK EXPORT BuddyDlg::timerProcCallback(	HWND hWnd,      // handle of CWnd that called SetTimer	UINT nMsg,      // WM_TIMER	UINT nIDEvent,   // timer identification	DWORD dwTime    // system time	){	//CWnd* wnd = hWnd;	//BuddyDlg* dlg = (BuddyDlg*)( wnd );	//assert(dlg);	assert( buddy );	buddy->timerProc();}void BuddyDlg::timerProc(){	// poll the stack 	theApp.process();}void BuddyDlg::receivedPage( const resip::Data& msg, 					   const resip::Uri& from,					   const resip::Data& signedBy,  					   const resip::SignatureStatus sigStatus,					   const bool wasEncryped  ){	CString res = _T("");	res += from.getAor().c_str();	res += _T(" says: ");	res += msg.c_str();	display(res);}void BuddyDlg::message(const CString& msg){	display(msg);}void BuddyDlg::presenseUpdate(const resip::Uri& uri, bool open, const resip::Data& status ){	CString res = _T("");	res += uri.getAor().c_str();	res += _T(" is now: ");	if ( open )	{		res += _T("online ");	}	else	{		res += _T("offline ");	}	res += status.c_str();	display(res);	// go trhough the items in the list and change the icon of the aproperate one 		CTreeCtrl* tree = (CTreeCtrl*) GetDlgItem(IDC_TREE);	assert(tree);	HTREEITEM item = tree->GetRootItem();	// Delete all of the children of hmyItem.	while (item )	{		if (tree->ItemHasChildren(item))		{			HTREEITEM sub = tree->GetChildItem(item);			while (sub != NULL)			{				CString dest = tree->GetItemText(sub);				resip::Data uDest( dest );				resip::Uri u( uDest );				if ( uri.getAor() == u.getAor() )				{					// found a match 					int imageNum = open?1:0;					tree->SetItemImage(sub, imageNum, imageNum );				}				sub = tree->GetNextItem(sub, TVGN_NEXT);			}		}		CString dest = tree->GetItemText(item);		resip::Data uDest( dest );		resip::Uri u( uDest );		if ( uri.getAor() == u.getAor() )		{			// found a match 			int imageNum = open?1:0;			tree->SetItemImage(item, imageNum, imageNum );		}		item = tree->GetNextItem(item, TVGN_NEXT);	}	//tree->Invalidate();}void BuddyDlg::OnBnClickedButtonConfig(){	CConfigDlg dlg;	INT_PTR nResponse = dlg.DoModal();	if (nResponse == IDOK)	{		// TODO: Place code here to handle when the dialog is		//  dismissed with OK	}	else if (nResponse == IDCANCEL)	{		// TODO: Place code here to handle when the dialog is		//  dismissed with Cancel	}}void BuddyDlg::OnBnClickedButtonAdd(){	CAddDlg dlg;	INT_PTR nResponse = dlg.DoModal();	if (nResponse == IDOK)	{		// TODO: Place code here to handle when the dialog is		//  dismissed with OK	}	else if (nResponse == IDCANCEL)	{		// TODO: Place code here to handle when the dialog is		//  dismissed with Cancel	}}void BuddyDlg::addBuddy(CString name){	CTreeCtrl* tree = (CTreeCtrl*) GetDlgItem(IDC_TREE);	assert(tree);	HTREEITEM group = TVI_ROOT;	//group = tree->InsertItem(_T("Friends"), TVI_ROOT, TVI_SORT);	tree->InsertItem( name, TVI_ROOT, TVI_SORT);	tree->Expand(group,TVE_EXPAND);}void BuddyDlg::OnBnClickedButtonClear(){	// TODO: Add your control notification handler code here	CWinApp* app = AfxGetApp();	app->WriteProfileInt("buddyList","size", 0 );	CTreeCtrl* tree = (CTreeCtrl*) GetDlgItem(IDC_TREE);	assert(tree);	tree->DeleteAllItems();}void BuddyDlg::OnBnClickedCheckOnline(){	CButton* button = (CButton*)GetDlgItem(IDC_CHECK_ONLINE);	assert(button);	bool online = (BST_CHECKED != button->GetCheck());	CEdit* edit = (CEdit*)GetDlgItem(IDC_EDIT_NOTE);	assert(edit);	CString text;	edit->GetWindowText(text);	text = text.Trim("\n\r");	theApp.setStatus(online,text);}void BuddyDlg::OnEnKillfocusEditNote(){	BuddyDlg::OnBnClickedCheckOnline();}void BuddyDlg::OnBnClickedCheckSign(){	CButton* button = (CButton*)GetDlgItem(IDC_CHECK_SIGN);	assert(button);	bool checked = (BST_CHECKED == button->GetCheck());	theApp.sign = checked;}void BuddyDlg::OnBnClickedCheckEncrypt(){	CButton* button = (CButton*)GetDlgItem(IDC_CHECK_ENCRYPT);	assert(button);	bool checked = (BST_CHECKED == button->GetCheck());	theApp.encryp = checked;}void BuddyDlg::OnBnClickedButtonDel(){	CWinApp* app = AfxGetApp();	assert(app);	// TODO: Add your control notification handler code here	CTreeCtrl* tree = (CTreeCtrl*) GetDlgItem(IDC_TREE);	assert(tree);	HTREEITEM sel = tree->GetSelectedItem();	CString dest = tree->GetItemText(sel);	Data destData( dest );	Uri uri( destData );	tree->DeleteItem( sel );	if ( !theApp.tuIM )	{		return;	}	assert( theApp.tuIM );	theApp.tuIM->removeBuddy( uri );	//tree->DeleteAllItems();	assert( theApp.tuIM );	//HTREEITEM group = TVI_ROOT;	//group = tree->InsertItem(_T("Friends"), TVI_ROOT, TVI_SORT);	for ( int i=0; i<theApp.tuIM->getNumBuddies(); i++)	{		resip::Uri budy = theApp.tuIM->getBuddyUri(i);		CString name( _T( Data::from(budy).c_str() ) );		//tree->InsertItem( name , group, TVI_SORT);		// write buddy to registry 		CString item;		item.Format("%d",i);		app->WriteProfileString("buddyList",item,name);	}	//tree->Expand(group,TVE_EXPAND);	app->WriteProfileInt("buddyList","size",theApp.tuIM->getNumBuddies());}void BuddyDlg::OnBnClickedButtonSend(){	CEdit* edit = (CEdit*)GetDlgItem(IDC_EDIT);	assert(edit);	CString text;	edit->GetWindowText(text);	edit->SetWindowText(_T(""));     	text = text.Trim("\n\r");	CTreeCtrl* tree = (CTreeCtrl*) GetDlgItem(IDC_TREE);	assert(tree);	HTREEITEM sel = tree->GetSelectedItem();	CString dest = tree->GetItemText(sel);	CString res = _T("To: ");	res += dest;	res += _T(" ");	res += text;	display( res );	theApp.sendPage(text,dest);}void BuddyDlg::display(const CString& text){    CEdit* display = (CEdit*)GetDlgItem(IDC_DISPLAY);	assert(display);	display->ReplaceSel( text + CString( _T("\r\n")) );}/* ==================================================================== * The Vovida Software License, Version 1.0  *  * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved. *  * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: *  * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. *  * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in *    the documentation and/or other materials provided with the *    distribution. *  * 3. The names "VOCAL", "Vovida Open Communication Application Library", *    and "Vovida Open Communication Application Library (VOCAL)" must *    not be used to endorse or promote products derived from this *    software without prior written permission. For written *    permission, please contact vocal@vovida.org. * * 4. Products derived from this software may not be called "VOCAL", nor *    may "VOCAL" appear in their name, without prior written *    permission of Vovida Networks, Inc. *  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH * DAMAGE. *  * ==================================================================== *  * This software consists of voluntary contributions made by Vovida * Networks, Inc. and many individuals on behalf of Vovida Networks, * Inc.  For more information on Vovida Networks, Inc., please see * <http://www.vovida.org/>. * */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日本一区二区三区国色天香| 欧美调教femdomvk| 久久毛片高清国产| 国产美女在线精品| 久久综合九色综合97_久久久| 麻豆高清免费国产一区| 日韩欧美另类在线| 国产精品69毛片高清亚洲| 国产亚洲精品7777| a在线欧美一区| 亚洲美女免费视频| 欧美高清视频不卡网| 日韩不卡一二三区| 日韩免费高清av| 国产一区二区视频在线| 国产精品久久毛片a| 91视频在线看| 日韩精品亚洲专区| 久久综合资源网| 99久久夜色精品国产网站| 亚洲免费观看高清完整版在线| 91福利资源站| 久久精品国产网站| 国产精品久久99| 欧美三级电影在线看| 久久国内精品自在自线400部| 国产网站一区二区三区| 日本道免费精品一区二区三区| 亚州成人在线电影| 久久伊人蜜桃av一区二区| 99久久精品免费看| 蜜桃视频在线观看一区| 中文在线一区二区| 91精品欧美福利在线观看| 国产成人av在线影院| 亚洲第一狼人社区| 国产欧美精品一区| 9191久久久久久久久久久| 国产成人亚洲精品青草天美| 亚洲国产欧美另类丝袜| 国产喂奶挤奶一区二区三区| 欧美日韩国产小视频| 高潮精品一区videoshd| 视频一区在线播放| 亚洲欧美在线观看| 精品国产乱码久久久久久闺蜜| 色婷婷激情久久| 国产精品一区二区久久精品爱涩| 亚洲国产精品嫩草影院| 国产精品麻豆99久久久久久| 2017欧美狠狠色| 精品1区2区3区| 成人高清av在线| 久久精品国产一区二区三| 亚洲精品v日韩精品| 国产三级久久久| 91精品综合久久久久久| 色妞www精品视频| 成人久久视频在线观看| 久久se精品一区二区| 午夜亚洲国产au精品一区二区| 日本不卡一区二区| 欧美福利视频一区| 亚洲国产日韩a在线播放| 国产精品美女久久久久aⅴ| 精品日韩欧美在线| 欧美乱妇20p| 在线免费一区三区| 99在线精品视频| 成人一道本在线| 国产成人精品免费视频网站| 麻豆成人在线观看| 久久精品二区亚洲w码| 五月婷婷另类国产| 亚洲第一福利一区| 亚洲动漫第一页| 一区二区三区日韩在线观看| 亚洲三级视频在线观看| 国产精品三级av| 国产欧美精品一区二区三区四区| 国产网站一区二区| 欧美激情一区二区三区全黄| 国产清纯在线一区二区www| 久久综合久久鬼色中文字| 欧美成人女星排行榜| 欧美成人video| 精品国产91久久久久久久妲己| 日韩欧美一区二区三区在线| 欧美成人福利视频| 久久久精品国产免大香伊| 精品国产sm最大网站免费看| 久久久不卡网国产精品二区| 国产午夜精品美女毛片视频| 国产精品视频一二| 亚洲欧洲日产国码二区| 日韩美女视频一区| 亚洲电影一级片| 免费高清在线一区| 国产老肥熟一区二区三区| 国产成人aaa| 91视视频在线直接观看在线看网页在线看 | 午夜视频在线观看一区二区 | caoporn国产一区二区| 91片黄在线观看| 欧美三电影在线| 日韩欧美在线一区二区三区| 久久夜色精品国产噜噜av| 国产精品久久久久影院色老大| 中文字幕佐山爱一区二区免费| 亚洲h动漫在线| 久久不见久久见免费视频7| 成人黄色在线看| 欧美日韩亚洲综合| 久久综合狠狠综合久久激情| 国产精品成人在线观看| 无码av中文一区二区三区桃花岛| 蜜桃视频在线观看一区二区| 成人网男人的天堂| 欧美日韩美女一区二区| 久久女同性恋中文字幕| 一区二区三区精品久久久| 偷拍日韩校园综合在线| 欧美精品vⅰdeose4hd| 久久久午夜精品| 亚洲综合色网站| 国产一区二区精品久久99| 日本二三区不卡| 久久久久久97三级| 亚洲综合偷拍欧美一区色| 国产一区欧美二区| 欧美综合视频在线观看| 国产亚洲一区字幕| 天堂蜜桃91精品| www.欧美亚洲| 欧美刺激午夜性久久久久久久| 亚洲一区精品在线| 懂色一区二区三区免费观看| 7777精品伊人久久久大香线蕉完整版| 日本一区二区不卡视频| 日本欧美一区二区在线观看| 91网站在线观看视频| 久久久青草青青国产亚洲免观| 五月天国产精品| 99精品视频中文字幕| 久久久久久久免费视频了| 亚州成人在线电影| 色屁屁一区二区| 日本一区二区久久| 国产乱对白刺激视频不卡| 欧美一区二区三区白人| 亚洲第一搞黄网站| 一本大道综合伊人精品热热| 欧美高清在线一区| 狠狠狠色丁香婷婷综合激情| 6080亚洲精品一区二区| 亚洲一本大道在线| 97精品视频在线观看自产线路二| 久久综合精品国产一区二区三区| 秋霞电影一区二区| 欧美日本一区二区在线观看| 一卡二卡三卡日韩欧美| 97国产一区二区| 亚洲同性同志一二三专区| av高清久久久| 国产精品久久久久久久久果冻传媒| 国产伦精一区二区三区| 精品久久久久久久久久久久久久久| 日韩av电影一区| 91精品国产一区二区三区| 日日噜噜夜夜狠狠视频欧美人| 欧美无砖专区一中文字| 夜夜操天天操亚洲| 在线亚洲免费视频| 一区二区国产视频| 欧美日韩在线免费视频| 亚洲777理论| 日韩一区二区三免费高清| 老色鬼精品视频在线观看播放| 欧美变态凌虐bdsm| 国产一区二区久久| 国产精品国产成人国产三级| 91在线视频网址| 亚洲一区二区在线免费观看视频| 欧美精品久久一区| 久久91精品国产91久久小草| 久久先锋影音av| 粉嫩13p一区二区三区| 亚洲男女毛片无遮挡| 精品视频一区二区不卡| 成人的网站免费观看| 一区二区三区免费| 69av一区二区三区| 国产精品一卡二| 亚洲免费观看高清完整版在线观看熊| 欧美性感一区二区三区| 美女一区二区视频| 国产精品视频在线看| 欧美日韩国产综合一区二区三区 | 婷婷成人综合网| 成人国产精品免费观看|