久久精品国产精品国产精品污,男人扒开添女人下部免费视频,一级国产69式性姿势免费视频,夜鲁夜鲁很鲁在线视频 视频,欧美丰满少妇一区二区三区,国产偷国产偷亚洲高清人乐享,中文 在线 日韩 亚洲 欧美,熟妇人妻无乱码中文字幕真矢织江,一区二区三区人妻制服国产

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

前端web页面支持MQTT消息推送

發布時間:2023/10/18 编程问答 59 如意码农
生活随笔 收集整理的這篇文章主要介紹了 前端web页面支持MQTT消息推送 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

MQTT服務一般用直接下載mosquitto,安裝后啟動服務即可。方便可靠。

但是默認情況下只開通了1883的tcp訪問,用html的web頁面上調用就不行了。

其實mosquitto是支持多端口的,在配置文件中加入擴展監聽即可

配置見文件

# Config file for mosquitto
#
# See mosquitto.conf(5) for more information.
#
# Default values are shown, uncomment to change.
#
# Use the # character to indicate a comment, but only if it is the
# very first character on the line. # =================================================================
# General configuration
# ================================================================= # Use per listener security settings.
#
# It is recommended this option be set before any other options.
#
# If this option is set to true, then all authentication and access control
# options are controlled on a per listener basis. The following options are
# affected:
#
# password_file acl_file psk_file auth_plugin auth_opt_* allow_anonymous
# auto_id_prefix allow_zero_length_clientid
#
# Note that if set to true, then a durable client (i.e. with clean session set
# to false) that has disconnected will use the ACL settings defined for the
# listener that it was most recently connected to.
#
# The default behaviour is for this to be set to false, which maintains the
# setting behaviour from previous versions of mosquitto.
#per_listener_settings false # If a client is subscribed to multiple subscriptions that overlap, e.g. foo/#
# and foo/+/baz , then MQTT expects that when the broker receives a message on
# a topic that matches both subscriptions, such as foo/bar/baz, then the client
# should only receive the message once.
# Mosquitto keeps track of which clients a message has been sent to in order to
# meet this requirement. The allow_duplicate_messages option allows this
# behaviour to be disabled, which may be useful if you have a large number of
# clients subscribed to the same set of topics and are very concerned about
# minimising memory usage.
# It can be safely set to true if you know in advance that your clients will
# never have overlapping subscriptions, otherwise your clients must be able to
# correctly deal with duplicate messages even when then have QoS=2.
#allow_duplicate_messages false # This option controls whether a client is allowed to connect with a zero
# length client id or not. This option only affects clients using MQTT v3.1.1
# and later. If set to false, clients connecting with a zero length client id
# are disconnected. If set to true, clients will be allocated a client id by
# the broker. This means it is only useful for clients with clean session set
# to true.
#allow_zero_length_clientid true # If allow_zero_length_clientid is true, this option allows you to set a prefix
# to automatically generated client ids to aid visibility in logs.
# Defaults to 'auto-'
#auto_id_prefix auto- # This option affects the scenario when a client subscribes to a topic that has
# retained messages. It is possible that the client that published the retained
# message to the topic had access at the time they published, but that access
# has been subsequently removed. If check_retain_source is set to true, the
# default, the source of a retained message will be checked for access rights
# before it is republished. When set to false, no check will be made and the
# retained message will always be published. This affects all listeners.
#check_retain_source true # QoS 1 and 2 messages will be allowed inflight per client until this limit
# is exceeded.  Defaults to 0. (No maximum)
# See also max_inflight_messages
#max_inflight_bytes 0 # The maximum number of QoS 1 and 2 messages currently inflight per
# client.
# This includes messages that are partway through handshakes and
# those that are being retried. Defaults to 20. Set to 0 for no
# maximum. Setting to 1 will guarantee in-order delivery of QoS 1
# and 2 messages.
#max_inflight_messages 20 # For MQTT v5 clients, it is possible to have the server send a "server
# keepalive" value that will override the keepalive value set by the client.
# This is intended to be used as a mechanism to say that the server will
# disconnect the client earlier than it anticipated, and that the client should
# use the new keepalive value. The max_keepalive option allows you to specify
# that clients may only connect with keepalive less than or equal to this
# value, otherwise they will be sent a server keepalive telling them to use
# max_keepalive. This only applies to MQTT v5 clients. The maximum value
# allowable is 65535. Do not set below 10.
#max_keepalive 65535 # For MQTT v5 clients, it is possible to have the server send a "maximum packet
# size" value that will instruct the client it will not accept MQTT packets
# with size greater than max_packet_size bytes. This applies to the full MQTT
# packet, not just the payload. Setting this option to a positive value will
# set the maximum packet size to that number of bytes. If a client sends a
# packet which is larger than this value, it will be disconnected. This applies
# to all clients regardless of the protocol version they are using, but v3.1.1
# and earlier clients will of course not have received the maximum packet size
# information. Defaults to no limit. Setting below 20 bytes is forbidden
# because it is likely to interfere with ordinary client operation, even with
# very small payloads.
#max_packet_size 0 # QoS 1 and 2 messages above those currently in-flight will be queued per
# client until this limit is exceeded.  Defaults to 0. (No maximum)
# See also max_queued_messages.
# If both max_queued_messages and max_queued_bytes are specified, packets will
# be queued until the first limit is reached.
#max_queued_bytes 0 # The maximum number of QoS 1 and 2 messages to hold in a queue per client
# above those that are currently in-flight.  Defaults to 100. Set
# to 0 for no maximum (not recommended).
# See also queue_qos0_messages.
# See also max_queued_bytes.
#max_queued_messages 100
#
# This option sets the maximum number of heap memory bytes that the broker will
# allocate, and hence sets a hard limit on memory use by the broker.  Memory
# requests that exceed this value will be denied. The effect will vary
# depending on what has been denied. If an incoming message is being processed,
# then the message will be dropped and the publishing client will be
# disconnected. If an outgoing message is being sent, then the individual
# message will be dropped and the receiving client will be disconnected.
# Defaults to no limit.
#memory_limit 0 # This option sets the maximum publish payload size that the broker will allow.
# Received messages that exceed this size will not be accepted by the broker.
# The default value is 0, which means that all valid MQTT messages are
# accepted. MQTT imposes a maximum payload size of 268435455 bytes.
#message_size_limit 0 # This option allows persistent clients (those with clean session set to false)
# to be removed if they do not reconnect within a certain time frame.
#
# This is a non-standard option in MQTT V3.1 but allowed in MQTT v3.1.1.
#
# Badly designed clients may set clean session to false whilst using a randomly
# generated client id. This leads to persistent clients that will never
# reconnect. This option allows these clients to be removed.
#
# The expiration period should be an integer followed by one of h d w m y for
# hour, day, week, month and year respectively. For example
#
# persistent_client_expiration 2m
# persistent_client_expiration 14d
# persistent_client_expiration 1y
#
# The default if not set is to never expire persistent clients.
#persistent_client_expiration # Write process id to a file. Default is a blank string which means
# a pid file shouldn't be written.
# This should be set to /var/run/mosquitto.pid if mosquitto is
# being run automatically on boot with an init script and
# start-stop-daemon or similar.
#pid_file # Set to true to queue messages with QoS 0 when a persistent client is
# disconnected. These messages are included in the limit imposed by
# max_queued_messages and max_queued_bytes
# Defaults to false.
# This is a non-standard option for the MQTT v3.1 spec but is allowed in
# v3.1.1.
#queue_qos0_messages false # Set to false to disable retained message support. If a client publishes a
# message with the retain bit set, it will be disconnected if this is set to
# false.
#retain_available true # Disable Nagle's algorithm on client sockets. This has the effect of reducing
# latency of individual messages at the potential cost of increasing the number
# of packets being sent.
#set_tcp_nodelay false # Time in seconds between updates of the $SYS tree.
# Set to 0 to disable the publishing of the $SYS tree.
#sys_interval 10 # The MQTT specification requires that the QoS of a message delivered to a
# subscriber is never upgraded to match the QoS of the subscription. Enabling
# this option changes this behaviour. If upgrade_outgoing_qos is set true,
# messages sent to a subscriber will always match the QoS of its subscription.
# This is a non-standard option explicitly disallowed by the spec.
#upgrade_outgoing_qos false # When run as root, drop privileges to this user and its primary
# group.
# Set to root to stay as root, but this is not recommended.
# If run as a non-root user, this setting has no effect.
# Note that on Windows this has no effect and so mosquitto should
# be started by the user you wish it to run as.
#user mosquitto # =================================================================
# Default listener
# ================================================================= # IP address/hostname to bind the default listener to. If not
# given, the default listener will not be bound to a specific
# address and so will be accessible to all network interfaces.
# bind_address ip-address/host name
#bind_address # Port to use for the default listener.
port 1883 # Bind the listener to a specific interface. This is similar to
# bind_address above but is useful when an interface has multiple addresses or
# the address may change. It is valid to use this with the bind_address option,
# but take care that the interface you are binding to contains the address you
# are binding to, otherwise you will not be able to connect.
# Example: bind_interface eth0
#bind_interface # When a listener is using the websockets protocol, it is possible to serve
# http data as well. Set http_dir to a directory which contains the files you
# wish to serve. If this option is not specified, then no normal http
# connections will be possible.
#http_dir # The maximum number of client connections to allow. This is
# a per listener setting.
# Default is -1, which means unlimited connections.
# Note that other process limits mean that unlimited connections
# are not really possible. Typically the default maximum number of
# connections possible is around 1024.
#max_connections -1 # Choose the protocol to use when listening.
# This can be either mqtt or websockets.
# Websockets support is currently disabled by default at compile time.
# Certificate based TLS may be used with websockets, except that
# only the cafile, certfile, keyfile and ciphers options are supported.
#protocol mqtt
protocol mqtt # Set use_username_as_clientid to true to replace the clientid that a client
# connected with with its username. This allows authentication to be tied to
# the clientid, which means that it is possible to prevent one client
# disconnecting another by using the same clientid.
# If a client connects with no username it will be disconnected as not
# authorised when this option is set to true.
# Do not use in conjunction with clientid_prefixes.
# See also use_identity_as_username.
#use_username_as_clientid # -----------------------------------------------------------------
# Certificate based SSL/TLS support
# -----------------------------------------------------------------
# The following options can be used to enable SSL/TLS support for
# this listener. Note that the recommended port for MQTT over TLS
# is 8883, but this must be set manually.
#
# See also the mosquitto-tls man page. # At least one of cafile or capath must be defined. They both
# define methods of accessing the PEM encoded Certificate
# Authority certificates that have signed your server certificate
# and that you wish to trust.
# cafile defines the path to a file containing the CA certificates.
# capath defines a directory that will be searched for files
# containing the CA certificates. For capath to work correctly, the
# certificate files must have ".crt" as the file ending and you must run
# "openssl rehash <path to capath>" each time you add/remove a certificate.
#cafile
#capath # Path to the PEM encoded server certificate.
#certfile # Path to the PEM encoded keyfile.
#keyfile # If you have require_certificate set to true, you can create a certificate
# revocation list file to revoke access to particular client certificates. If
# you have done this, use crlfile to point to the PEM encoded revocation file.
#crlfile # If you wish to control which encryption ciphers are used, use the ciphers
# option. The list of available ciphers can be obtained using the "openssl
# ciphers" command and should be provided in the same format as the output of
# that command.
# If unset defaults to DEFAULT:!aNULL:!eNULL:!LOW:!EXPORT:!SSLv2:@STRENGTH
#ciphers DEFAULT:!aNULL:!eNULL:!LOW:!EXPORT:!SSLv2:@STRENGTH # To allow the use of ephemeral DH key exchange, which provides forward
# security, the listener must load DH parameters. This can be specified with
# the dhparamfile option. The dhparamfile can be generated with the command
# e.g. "openssl dhparam -out dhparam.pem 2048"
#dhparamfile # By default a TLS enabled listener will operate in a similar fashion to a
# https enabled web server, in that the server has a certificate signed by a CA
# and the client will verify that it is a trusted certificate. The overall aim
# is encryption of the network traffic. By setting require_certificate to true,
# the client must provide a valid certificate in order for the network
# connection to proceed. This allows access to the broker to be controlled
# outside of the mechanisms provided by MQTT.
#require_certificate false # This option defines the version of the TLS protocol to use for this listener.
# The default value allows all of v1.3, v1.2 and v1.1. The valid values are
# tlsv1.3 tlsv1.2 and tlsv1.1.
#tls_version # If require_certificate is true, you may set use_identity_as_username to true
# to use the CN value from the client certificate as a username. If this is
# true, the password_file option will not be used for this listener.
# This takes priority over use_subject_as_username.
# See also use_subject_as_username.
#use_identity_as_username false # If require_certificate is true, you may set use_subject_as_username to true
# to use the complete subject value from the client certificate as a username.
# If this is true, the password_file option will not be used for this listener.
# See also use_identity_as_username
#use_subject_as_username false # -----------------------------------------------------------------
# Pre-shared-key based SSL/TLS support
# -----------------------------------------------------------------
# The following options can be used to enable PSK based SSL/TLS support for
# this listener. Note that the recommended port for MQTT over TLS is 8883, but
# this must be set manually.
#
# See also the mosquitto-tls man page and the "Certificate based SSL/TLS
# support" section. Only one of certificate or PSK encryption support can be
# enabled for any listener. # The psk_hint option enables pre-shared-key support for this listener and also
# acts as an identifier for this listener. The hint is sent to clients and may
# be used locally to aid authentication. The hint is a free form string that
# doesn't have much meaning in itself, so feel free to be creative.
# If this option is provided, see psk_file to define the pre-shared keys to be
# used or create a security plugin to handle them.
#psk_hint # When using PSK, the encryption ciphers used will be chosen from the list of
# available PSK ciphers. If you want to control which ciphers are available,
# use the "ciphers" option.  The list of available ciphers can be obtained
# using the "openssl ciphers" command and should be provided in the same format
# as the output of that command.
#ciphers # Set use_identity_as_username to have the psk identity sent by the client used
# as its username. Authentication will be carried out using the PSK rather than
# the MQTT username/password and so password_file will not be used for this
# listener.
#use_identity_as_username false # =================================================================
# Extra listeners
# ================================================================= # Listen on a port/ip address combination. By using this variable
# multiple times, mosquitto can listen on more than one port. If
# this variable is used and neither bind_address nor port given,
# then the default listener will not be started.
# The port number to listen on must be given. Optionally, an ip
# address or host name may be supplied as a second argument. In
# this case, mosquitto will attempt to bind the listener to that
# address and so restrict access to the associated network and
# interface. By default, mosquitto will listen on all interfaces.
# Note that for a websockets listener it is not possible to bind to a host
# name.
# listener port-number [ip address/host name]
listener 9988 # Bind the listener to a specific interface. This is similar to
# the [ip address/host name] part of the listener definition, but is useful
# when an interface has multiple addresses or the address may change. It is
# valid to use this with the [ip address/host name] part of the listener
# definition, but take care that the interface you are binding to contains the
# address you are binding to, otherwise you will not be able to connect.
# Only available on Linux and requires elevated privileges.
#
# Example: bind_interface eth0
#bind_interface # When a listener is using the websockets protocol, it is possible to serve
# http data as well. Set http_dir to a directory which contains the files you
# wish to serve. If this option is not specified, then no normal http
# connections will be possible.
#http_dir # The maximum number of client connections to allow. This is
# a per listener setting.
# Default is -1, which means unlimited connections.
# Note that other process limits mean that unlimited connections
# are not really possible. Typically the default maximum number of
# connections possible is around 1024.
#max_connections -1 # The listener can be restricted to operating within a topic hierarchy using
# the mount_point option. This is achieved be prefixing the mount_point string
# to all topics for any clients connected to this listener. This prefixing only
# happens internally to the broker; the client will not see the prefix.
#mount_point # Choose the protocol to use when listening.
# This can be either mqtt or websockets.
# Certificate based TLS may be used with websockets, except that only the
# cafile, certfile, keyfile and ciphers options are supported.
protocol websockets # Set use_username_as_clientid to true to replace the clientid that a client
# connected with with its username. This allows authentication to be tied to
# the clientid, which means that it is possible to prevent one client
# disconnecting another by using the same clientid.
# If a client connects with no username it will be disconnected as not
# authorised when this option is set to true.
# Do not use in conjunction with clientid_prefixes.
# See also use_identity_as_username.
#use_username_as_clientid # Change the websockets headers size. This is a global option, it is not
# possible to set per listener. This option sets the size of the buffer used in
# the libwebsockets library when reading HTTP headers. If you are passing large
# header data such as cookies then you may need to increase this value. If left
# unset, or set to 0, then the default of 1024 bytes will be used.
#websockets_headers_size # -----------------------------------------------------------------
# Certificate based SSL/TLS support
# -----------------------------------------------------------------
# The following options can be used to enable certificate based SSL/TLS support
# for this listener. Note that the recommended port for MQTT over TLS is 8883,
# but this must be set manually.
#
# See also the mosquitto-tls man page and the "Pre-shared-key based SSL/TLS
# support" section. Only one of certificate or PSK encryption support can be
# enabled for any listener. # At least one of cafile or capath must be defined to enable certificate based
# TLS encryption. They both define methods of accessing the PEM encoded
# Certificate Authority certificates that have signed your server certificate
# and that you wish to trust.
# cafile defines the path to a file containing the CA certificates.
# capath defines a directory that will be searched for files
# containing the CA certificates. For capath to work correctly, the
# certificate files must have ".crt" as the file ending and you must run
# "openssl rehash <path to capath>" each time you add/remove a certificate.
#cafile
#capath # Path to the PEM encoded server certificate.
#certfile # Path to the PEM encoded keyfile.
#keyfile # If you wish to control which encryption ciphers are used, use the ciphers
# option. The list of available ciphers can be optained using the "openssl
# ciphers" command and should be provided in the same format as the output of
# that command.
#ciphers # If you have require_certificate set to true, you can create a certificate
# revocation list file to revoke access to particular client certificates. If
# you have done this, use crlfile to point to the PEM encoded revocation file.
#crlfile # To allow the use of ephemeral DH key exchange, which provides forward
# security, the listener must load DH parameters. This can be specified with
# the dhparamfile option. The dhparamfile can be generated with the command
# e.g. "openssl dhparam -out dhparam.pem 2048"
#dhparamfile # By default an TLS enabled listener will operate in a similar fashion to a
# https enabled web server, in that the server has a certificate signed by a CA
# and the client will verify that it is a trusted certificate. The overall aim
# is encryption of the network traffic. By setting require_certificate to true,
# the client must provide a valid certificate in order for the network
# connection to proceed. This allows access to the broker to be controlled
# outside of the mechanisms provided by MQTT.
#require_certificate false # If require_certificate is true, you may set use_identity_as_username to true
# to use the CN value from the client certificate as a username. If this is
# true, the password_file option will not be used for this listener.
#use_identity_as_username false # -----------------------------------------------------------------
# Pre-shared-key based SSL/TLS support
# -----------------------------------------------------------------
# The following options can be used to enable PSK based SSL/TLS support for
# this listener. Note that the recommended port for MQTT over TLS is 8883, but
# this must be set manually.
#
# See also the mosquitto-tls man page and the "Certificate based SSL/TLS
# support" section. Only one of certificate or PSK encryption support can be
# enabled for any listener. # The psk_hint option enables pre-shared-key support for this listener and also
# acts as an identifier for this listener. The hint is sent to clients and may
# be used locally to aid authentication. The hint is a free form string that
# doesn't have much meaning in itself, so feel free to be creative.
# If this option is provided, see psk_file to define the pre-shared keys to be
# used or create a security plugin to handle them.
#psk_hint # When using PSK, the encryption ciphers used will be chosen from the list of
# available PSK ciphers. If you want to control which ciphers are available,
# use the "ciphers" option.  The list of available ciphers can be optained
# using the "openssl ciphers" command and should be provided in the same format
# as the output of that command.
#ciphers # Set use_identity_as_username to have the psk identity sent by the client used
# as its username. Authentication will be carried out using the PSK rather than
# the MQTT username/password and so password_file will not be used for this
# listener.
#use_identity_as_username false # =================================================================
# Persistence
# ================================================================= # If persistence is enabled, save the in-memory database to disk
# every autosave_interval seconds. If set to 0, the persistence
# database will only be written when mosquitto exits. See also
# autosave_on_changes.
# Note that writing of the persistence database can be forced by
# sending mosquitto a SIGUSR1 signal.
#autosave_interval 1800 # If true, mosquitto will count the number of subscription changes, retained
# messages received and queued messages and if the total exceeds
# autosave_interval then the in-memory database will be saved to disk.
# If false, mosquitto will save the in-memory database to disk by treating
# autosave_interval as a time in seconds.
#autosave_on_changes false # Save persistent message data to disk (true/false).
# This saves information about all messages, including
# subscriptions, currently in-flight messages and retained
# messages.
# retained_persistence is a synonym for this option.
#persistence false # The filename to use for the persistent database, not including
# the path.
#persistence_file mosquitto.db # Location for persistent database. Must include trailing /
# Default is an empty string (current directory).
# Set to e.g. /var/lib/mosquitto/ if running as a proper service on Linux or
# similar.
#persistence_location # =================================================================
# Logging
# ================================================================= # Places to log to. Use multiple log_dest lines for multiple
# logging destinations.
# Possible destinations are: stdout stderr syslog topic file
#
# stdout and stderr log to the console on the named output.
#
# syslog uses the userspace syslog facility which usually ends up
# in /var/log/messages or similar.
#
# topic logs to the broker topic '$SYS/broker/log/<severity>',
# where severity is one of D, E, W, N, I, M which are debug, error,
# warning, notice, information and message. Message type severity is used by
# the subscribe/unsubscribe log_types and publishes log messages to
# $SYS/broker/log/M/susbcribe or $SYS/broker/log/M/unsubscribe.
#
# The file destination requires an additional parameter which is the file to be
# logged to, e.g. "log_dest file /var/log/mosquitto.log". The file will be
# closed and reopened when the broker receives a HUP signal. Only a single file
# destination may be configured.
#
# Note that if the broker is running as a Windows service it will default to
# "log_dest none" and neither stdout nor stderr logging is available.
# Use "log_dest none" if you wish to disable logging.
#log_dest stderr # Types of messages to log. Use multiple log_type lines for logging
# multiple types of messages.
# Possible types are: debug, error, warning, notice, information,
# none, subscribe, unsubscribe, websockets, all.
# Note that debug type messages are for decoding the incoming/outgoing
# network packets. They are not logged in "topics".
#log_type error
#log_type warning
#log_type notice
#log_type information
#log_type websockets # If set to true, client connection and disconnection messages will be included
# in the log.
#connection_messages true # If using syslog logging (not on Windows), messages will be logged to the
# "daemon" facility by default. Use the log_facility option to choose which of
# local0 to local7 to log to instead. The option value should be an integer
# value, e.g. "log_facility 5" to use local5.
#log_facility # If set to true, add a timestamp value to each log message.
#log_timestamp true # Set the format of the log timestamp. If left unset, this is the number of
# seconds since the Unix epoch.
# This is a free text string which will be passed to the strftime function. To
# get an ISO 8601 datetime, for example:
# log_timestamp_format %Y-%m-%dT%H:%M:%S
#log_timestamp_format # Change the websockets logging level. This is a global option, it is not
# possible to set per listener. This is an integer that is interpreted by
# libwebsockets as a bit mask for its lws_log_levels enum. See the
# libwebsockets documentation for more details. "log_type websockets" must also
# be enabled.
websockets_log_level 0 # =================================================================
# Security
# ================================================================= # If set, only clients that have a matching prefix on their
# clientid will be allowed to connect to the broker. By default,
# all clients may connect.
# For example, setting "secure-" here would mean a client "secure-
# client" could connect but another with clientid "mqtt" couldn't.
#clientid_prefixes # Boolean value that determines whether clients that connect
# without providing a username are allowed to connect. If set to
# false then a password file should be created (see the
# password_file option) to control authenticated client access.
#
# Defaults to true if no other security options are set. If `password_file` or
# `psk_file` is set, or if an authentication plugin is loaded which implements
# username/password or TLS-PSK checks, then `allow_anonymous` defaults to
# false.
#
#allow_anonymous true # -----------------------------------------------------------------
# Default authentication and topic access control
# ----------------------------------------------------------------- # Control access to the broker using a password file. This file can be
# generated using the mosquitto_passwd utility. If TLS support is not compiled
# into mosquitto (it is recommended that TLS support should be included) then
# plain text passwords are used, in which case the file should be a text file
# with lines in the format:
# username:password
# The password (and colon) may be omitted if desired, although this
# offers very little in the way of security.
#
# See the TLS client require_certificate and use_identity_as_username options
# for alternative authentication options. If an auth_plugin is used as well as
# password_file, the auth_plugin check will be made first.
#password_file # Access may also be controlled using a pre-shared-key file. This requires
# TLS-PSK support and a listener configured to use it. The file should be text
# lines in the format:
# identity:key
# The key should be in hexadecimal format without a leading "0x".
# If an auth_plugin is used as well, the auth_plugin check will be made first.
#psk_file # Control access to topics on the broker using an access control list
# file. If this parameter is defined then only the topics listed will
# have access.
# If the first character of a line of the ACL file is a # it is treated as a
# comment.
# Topic access is added with lines of the format:
#
# topic [read|write|readwrite] <topic>
#
# The access type is controlled using "read", "write" or "readwrite". This
# parameter is optional (unless <topic> contains a space character) - if not
# given then the access is read/write.  <topic> can contain the + or #
# wildcards as in subscriptions.
#
# The first set of topics are applied to anonymous clients, assuming
# allow_anonymous is true. User specific topic ACLs are added after a
# user line as follows:
#
# user <username>
#
# The username referred to here is the same as in password_file. It is
# not the clientid.
#
#
# If is also possible to define ACLs based on pattern substitution within the
# topic. The patterns available for substition are:
#
# %c to match the client id of the client
# %u to match the username of the client
#
# The substitution pattern must be the only text for that level of hierarchy.
#
# The form is the same as for the topic keyword, but using pattern as the
# keyword.
# Pattern ACLs apply to all users even if the "user" keyword has previously
# been given.
#
# If using bridges with usernames and ACLs, connection messages can be allowed
# with the following pattern:
# pattern write $SYS/broker/connection/%c/state
#
# pattern [read|write|readwrite] <topic>
#
# Example:
#
# pattern write sensor/%u/data
#
# If an auth_plugin is used as well as acl_file, the auth_plugin check will be
# made first.
#acl_file # -----------------------------------------------------------------
# External authentication and topic access plugin options
# ----------------------------------------------------------------- # External authentication and access control can be supported with the
# auth_plugin option. This is a path to a loadable plugin. See also the
# auth_opt_* options described below.
#
# The auth_plugin option can be specified multiple times to load multiple
# plugins. The plugins will be processed in the order that they are specified
# here. If the auth_plugin option is specified alongside either of
# password_file or acl_file then the plugin checks will be made first.
#
#auth_plugin # If the auth_plugin option above is used, define options to pass to the
# plugin here as described by the plugin instructions. All options named
# using the format auth_opt_* will be passed to the plugin, for example:
#
# auth_opt_db_host
# auth_opt_db_port
# auth_opt_db_username
# auth_opt_db_password # =================================================================
# Bridges
# ================================================================= # A bridge is a way of connecting multiple MQTT brokers together.
# Create a new bridge using the "connection" option as described below. Set
# options for the bridges using the remaining parameters. You must specify the
# address and at least one topic to subscribe to.
#
# Each connection must have a unique name.
#
# The address line may have multiple host address and ports specified. See
# below in the round_robin description for more details on bridge behaviour if
# multiple addresses are used. Note that if you use an IPv6 address, then you
# are required to specify a port.
#
# The direction that the topic will be shared can be chosen by
# specifying out, in or both, where the default value is out.
# The QoS level of the bridged communication can be specified with the next
# topic option. The default QoS level is 0, to change the QoS the topic
# direction must also be given.
#
# The local and remote prefix options allow a topic to be remapped when it is
# bridged to/from the remote broker. This provides the ability to place a topic
# tree in an appropriate location.
#
# For more details see the mosquitto.conf man page.
#
# Multiple topics can be specified per connection, but be careful
# not to create any loops.
#
# If you are using bridges with cleansession set to false (the default), then
# you may get unexpected behaviour from incoming topics if you change what
# topics you are subscribing to. This is because the remote broker keeps the
# subscription for the old topic. If you have this problem, connect your bridge
# with cleansession set to true, then reconnect with cleansession set to false
# as normal.
#connection <name>
#address <host>[:<port>] [<host>[:<port>]]
#topic <topic> [[[out | in | both] qos-level] local-prefix remote-prefix] # If a bridge has topics that have "out" direction, the default behaviour is to
# send an unsubscribe request to the remote broker on that topic. This means
# that changing a topic direction from "in" to "out" will not keep receiving
# incoming messages. Sending these unsubscribe requests is not always
# desirable, setting bridge_attempt_unsubscribe to false will disable sending
# the unsubscribe request.
#bridge_attempt_unsubscribe true # Set the version of the MQTT protocol to use with for this bridge. Can be one
# of mqttv311 or mqttv11. Defaults to mqttv311.
#bridge_protocol_version mqttv311 # Set the clean session variable for this bridge.
# When set to true, when the bridge disconnects for any reason, all
# messages and subscriptions will be cleaned up on the remote
# broker. Note that with cleansession set to true, there may be a
# significant amount of retained messages sent when the bridge
# reconnects after losing its connection.
# When set to false, the subscriptions and messages are kept on the
# remote broker, and delivered when the bridge reconnects.
#cleansession false # Set the amount of time a bridge using the lazy start type must be idle before
# it will be stopped. Defaults to 60 seconds.
#idle_timeout 60 # Set the keepalive interval for this bridge connection, in
# seconds.
#keepalive_interval 60 # Set the clientid to use on the local broker. If not defined, this defaults to
# 'local.<clientid>'. If you are bridging a broker to itself, it is important
# that local_clientid and clientid do not match.
#local_clientid # If set to true, publish notification messages to the local and remote brokers
# giving information about the state of the bridge connection. Retained
# messages are published to the topic $SYS/broker/connection/<clientid>/state
# unless the notification_topic option is used.
# If the message is 1 then the connection is active, or 0 if the connection has
# failed.
# This uses the last will and testament feature.
#notifications true # Choose the topic on which notification messages for this bridge are
# published. If not set, messages are published on the topic
# $SYS/broker/connection/<clientid>/state
#notification_topic # Set the client id to use on the remote end of this bridge connection. If not
# defined, this defaults to 'name.hostname' where name is the connection name
# and hostname is the hostname of this computer.
# This replaces the old "clientid" option to avoid confusion. "clientid"
# remains valid for the time being.
#remote_clientid # Set the password to use when connecting to a broker that requires
# authentication. This option is only used if remote_username is also set.
# This replaces the old "password" option to avoid confusion. "password"
# remains valid for the time being.
#remote_password # Set the username to use when connecting to a broker that requires
# authentication.
# This replaces the old "username" option to avoid confusion. "username"
# remains valid for the time being.
#remote_username # Set the amount of time a bridge using the automatic start type will wait
# until attempting to reconnect.
# This option can be configured to use a constant delay time in seconds, or to
# use a backoff mechanism based on "Decorrelated Jitter", which adds a degree
# of randomness to when the restart occurs.
#
# Set a constant timeout of 20 seconds:
# restart_timeout 20
#
# Set backoff with a base (start value) of 10 seconds and a cap (upper limit) of
# 60 seconds:
# restart_timeout 10 30
#
# Defaults to jitter with a base of 5 and cap of 30
#restart_timeout 5 30 # If the bridge has more than one address given in the address/addresses
# configuration, the round_robin option defines the behaviour of the bridge on
# a failure of the bridge connection. If round_robin is false, the default
# value, then the first address is treated as the main bridge connection. If
# the connection fails, the other secondary addresses will be attempted in
# turn. Whilst connected to a secondary bridge, the bridge will periodically
# attempt to reconnect to the main bridge until successful.
# If round_robin is true, then all addresses are treated as equals. If a
# connection fails, the next address will be tried and if successful will
# remain connected until it fails
#round_robin false # Set the start type of the bridge. This controls how the bridge starts and
# can be one of three types: automatic, lazy and once. Note that RSMB provides
# a fourth start type "manual" which isn't currently supported by mosquitto.
#
# "automatic" is the default start type and means that the bridge connection
# will be started automatically when the broker starts and also restarted
# after a short delay (30 seconds) if the connection fails.
#
# Bridges using the "lazy" start type will be started automatically when the
# number of queued messages exceeds the number set with the "threshold"
# parameter. It will be stopped automatically after the time set by the
# "idle_timeout" parameter. Use this start type if you wish the connection to
# only be active when it is needed.
#
# A bridge using the "once" start type will be started automatically when the
# broker starts but will not be restarted if the connection fails.
#start_type automatic # Set the number of messages that need to be queued for a bridge with lazy
# start type to be restarted. Defaults to 10 messages.
# Must be less than max_queued_messages.
#threshold 10 # If try_private is set to true, the bridge will attempt to indicate to the
# remote broker that it is a bridge not an ordinary client. If successful, this
# means that loop detection will be more effective and that retained messages
# will be propagated correctly. Not all brokers support this feature so it may
# be necessary to set try_private to false if your bridge does not connect
# properly.
#try_private true # -----------------------------------------------------------------
# Certificate based SSL/TLS support
# -----------------------------------------------------------------
# Either bridge_cafile or bridge_capath must be defined to enable TLS support
# for this bridge.
# bridge_cafile defines the path to a file containing the
# Certificate Authority certificates that have signed the remote broker
# certificate.
# bridge_capath defines a directory that will be searched for files containing
# the CA certificates. For bridge_capath to work correctly, the certificate
# files must have ".crt" as the file ending and you must run "openssl rehash
# <path to capath>" each time you add/remove a certificate.
#bridge_cafile
#bridge_capath # If the remote broker has more than one protocol available on its port, e.g.
# MQTT and WebSockets, then use bridge_alpn to configure which protocol is
# requested. Note that WebSockets support for bridges is not yet available.
#bridge_alpn # When using certificate based encryption, bridge_insecure disables
# verification of the server hostname in the server certificate. This can be
# useful when testing initial server configurations, but makes it possible for
# a malicious third party to impersonate your server through DNS spoofing, for
# example. Use this option in testing only. If you need to resort to using this
# option in a production environment, your setup is at fault and there is no
# point using encryption.
#bridge_insecure false # Path to the PEM encoded client certificate, if required by the remote broker.
#bridge_certfile # Path to the PEM encoded client private key, if required by the remote broker.
#bridge_keyfile # -----------------------------------------------------------------
# PSK based SSL/TLS support
# -----------------------------------------------------------------
# Pre-shared-key encryption provides an alternative to certificate based
# encryption. A bridge can be configured to use PSK with the bridge_identity
# and bridge_psk options. These are the client PSK identity, and pre-shared-key
# in hexadecimal format with no "0x". Only one of certificate and PSK based
# encryption can be used on one
# bridge at once.
#bridge_identity
#bridge_psk # =================================================================
# External config files
# ================================================================= # External configuration files may be included by using the
# include_dir option. This defines a directory that will be searched
# for config files. All files that end in '.conf' will be loaded as
# a configuration file. It is best to have this as the last option
# in the main file. This option will only be processed from the main
# configuration file. The directory specified must not contain the
# main configuration file.
# Files within include_dir will be loaded sorted in case-sensitive
# alphabetical order, with capital letters ordered first. If this option is
# given multiple times, all of the files from the first instance will be
# processed before the next instance. See the man page for examples.
#include_dir

前端頁面就可以通過9988端口訪問了,其實是通過websockets訪問的。

<!DOCTYPE html>    
<html>    
<head>    
<meta charset="utf-8" />    
<title></title>    
</head>    
<body>    
<input type="text" id="msg"/>    
<input type="button" value="訂閱主題" onclick="subscribe()"/>    
<input type="button" value="發送消息" onclick="send()"/>    
<input type="button" value="取消訂閱" onclick="unsubscribe()"/>    
</body>    
<script src="jquery-3.3.1.min.js"></script>    
<script src="mqttws31.js"></script>    
<script>    
var hostname = '192.168.0.3',    
port = 9988,    
clientId = 'clientmao2080',    
timeout = 5,    
keepAlive = 50,    
cleanSession = false,    
ssl = false,    
userName = 'admin',    
password = 'password',    
topic = 'web';    
client = new Paho.MQTT.Client(hostname, port, clientId);    
var options = {    
invocationContext: {    
host : hostname,    
port: port,    
path: client.path,    
clientId: clientId    
},    
timeout: timeout,    
keepAliveInterval: keepAlive,    
cleanSession: cleanSession,    
useSSL: ssl,    
userName: userName,    
password: password,    
onSuccess: onConnect,    
onFailure: function(e){    
console.log(e);    
}    
};    
client.connect(options);    
function onConnect() {    
console.log("onConnected");    
}    
client.onConnectionLost = onConnectionLost;    
client.onMessageArrived = onMessageArrived;    
function onConnectionLost(responseObject) {    
console.log(responseObject);    
if (responseObject.errorCode !== 0) {    
console.log("onConnectionLost:"+responseObject.errorMessage);    
console.log("連接已斷開");    
}    
}    
function onMessageArrived(message) {    
console.log("收到消息:"+message.payloadString);    
}    
function send(){    
var s = document.getElementById("msg").value;    
if(s.length > 0){    
message = new Paho.MQTT.Message(s);    
message.destinationName = topic;    
client.send(message);    
document.getElementById("msg").value = "";    
console.log("消息發送成功"+s);    
}    
else {    
alert("發送的消息不能為空");    
}    
}    
var count = 0;    
function subscribe(){    
client.subscribe(topic, { qos: 2});    
console.log("訂閱主題:"+topic);    
}    
function unsubscribe(){    
client.unsubscribe(topic);    
console.log("取消訂閱主題:"+topic);    
}    
</script>

總結

以上是生活随笔為你收集整理的前端web页面支持MQTT消息推送的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

欧美刺激性大交 | 又黄又爽又色的视频 | 亚洲国产精品久久久久久 | 欧美 丝袜 自拍 制服 另类 | 对白脏话肉麻粗话av | 中文字幕乱码人妻无码久久 | 亚洲日本在线电影 | 欧美freesex黑人又粗又大 | 亚洲精品一区三区三区在线观看 | 狠狠亚洲超碰狼人久久 | 成年美女黄网站色大免费全看 | 一本色道久久综合狠狠躁 | 性做久久久久久久久 | 亚洲 a v无 码免 费 成 人 a v | 成人免费视频视频在线观看 免费 | 国产熟妇另类久久久久 | 99久久无码一区人妻 | 97久久超碰中文字幕 | 六月丁香婷婷色狠狠久久 | 欧美午夜特黄aaaaaa片 | 国产一区二区三区四区五区加勒比 | 狠狠躁日日躁夜夜躁2020 | 99久久精品国产一区二区蜜芽 | 久久精品99久久香蕉国产色戒 | 色五月五月丁香亚洲综合网 | 中文字幕人妻丝袜二区 | 青春草在线视频免费观看 | 无码一区二区三区在线观看 | 成人aaa片一区国产精品 | 亚洲色欲色欲天天天www | 领导边摸边吃奶边做爽在线观看 | 国产亚洲精品久久久久久大师 | 人人澡人人妻人人爽人人蜜桃 | 无码一区二区三区在线 | 国产乡下妇女做爰 | 免费播放一区二区三区 | 久久久久久a亚洲欧洲av冫 | 色婷婷欧美在线播放内射 | 亚洲色偷偷男人的天堂 | 久久国内精品自在自线 | 九一九色国产 | 2020久久超碰国产精品最新 | 国产午夜福利100集发布 | 国产成人久久精品流白浆 | 精品人妻人人做人人爽 | 日日摸天天摸爽爽狠狠97 | 国产精品久久久久9999小说 | 色婷婷综合中文久久一本 | 一本大道伊人av久久综合 | 乌克兰少妇xxxx做受 | 国产在线精品一区二区高清不卡 | 欧美一区二区三区 | 亚洲中文字幕乱码av波多ji | 久久97精品久久久久久久不卡 | 领导边摸边吃奶边做爽在线观看 | 97夜夜澡人人爽人人喊中国片 | 欧美熟妇另类久久久久久多毛 | 日本一本二本三区免费 | 国产乱码精品一品二品 | 国产精品自产拍在线观看 | 永久免费精品精品永久-夜色 | 永久免费精品精品永久-夜色 | 久久久久久国产精品无码下载 | 伊在人天堂亚洲香蕉精品区 | 久久国产自偷自偷免费一区调 | 国产黄在线观看免费观看不卡 | 无码精品国产va在线观看dvd | 国内精品人妻无码久久久影院蜜桃 | 精品亚洲成av人在线观看 | 亚洲 欧美 激情 小说 另类 | 欧美亚洲日韩国产人成在线播放 | 亚洲国产精品毛片av不卡在线 | 成人精品天堂一区二区三区 | 国产成人av免费观看 | 草草网站影院白丝内射 | 国内揄拍国内精品少妇国语 | 日日躁夜夜躁狠狠躁 | 国产亚洲精品久久久久久久久动漫 | 亚洲高清偷拍一区二区三区 | 亚洲国产精品久久人人爱 | 精品人妻人人做人人爽夜夜爽 | 久久zyz资源站无码中文动漫 | 国模大胆一区二区三区 | 欧美老妇与禽交 | 亚洲精品中文字幕乱码 | 人人爽人人澡人人高潮 | 中文字幕av无码一区二区三区电影 | 欧美人与物videos另类 | 国产成人精品无码播放 | 乱码午夜-极国产极内射 | 婷婷五月综合缴情在线视频 | 在线成人www免费观看视频 | 亚洲自偷精品视频自拍 | 欧美成人免费全部网站 | 国产免费久久精品国产传媒 | 偷窥日本少妇撒尿chinese | 在线a亚洲视频播放在线观看 | 美女扒开屁股让男人桶 | 国产无遮挡吃胸膜奶免费看 | 国产成人综合在线女婷五月99播放 | 欧美黑人性暴力猛交喷水 | 真人与拘做受免费视频 | 亚洲国产精品一区二区美利坚 | 国产热a欧美热a在线视频 | 欧美人与牲动交xxxx | 国产另类ts人妖一区二区 | 亚洲精品无码人妻无码 | 永久免费观看国产裸体美女 | 日本va欧美va欧美va精品 | 乱码av麻豆丝袜熟女系列 | yw尤物av无码国产在线观看 | 国产精品99久久精品爆乳 | 久久久久久九九精品久 | 丰满少妇人妻久久久久久 | 特黄特色大片免费播放器图片 | 亚洲色大成网站www国产 | 久久久精品456亚洲影院 | 久久国产精品二国产精品 | www成人国产高清内射 | 丝袜美腿亚洲一区二区 | 国产口爆吞精在线视频 | 亚洲国产成人a精品不卡在线 | 人人爽人人澡人人高潮 | 亚洲娇小与黑人巨大交 | 国产精品沙发午睡系列 | 国产人妖乱国产精品人妖 | 免费视频欧美无人区码 | 久久久久av无码免费网 | 亚洲无人区午夜福利码高清完整版 | 久久亚洲国产成人精品性色 | 亚洲人成网站色7799 | 国产精品亚洲lv粉色 | 国产国语老龄妇女a片 | 国内精品久久久久久中文字幕 | 国产午夜亚洲精品不卡 | 十八禁真人啪啪免费网站 | 最新国产麻豆aⅴ精品无码 | 欧美35页视频在线观看 | 久久综合香蕉国产蜜臀av | 丝袜人妻一区二区三区 | 国产成人午夜福利在线播放 | 特级做a爰片毛片免费69 | 夜先锋av资源网站 | 日韩视频 中文字幕 视频一区 | 日本www一道久久久免费榴莲 | 国产成人一区二区三区在线观看 | 国産精品久久久久久久 | 狠狠噜狠狠狠狠丁香五月 | 超碰97人人做人人爱少妇 | 中文字幕无码视频专区 | 亚洲午夜福利在线观看 | 色综合久久久无码网中文 | 丰满人妻一区二区三区免费视频 | 理论片87福利理论电影 | 日本精品人妻无码免费大全 | 又紧又大又爽精品一区二区 | 欧美亚洲日韩国产人成在线播放 | 精品国产一区二区三区四区 | 亚洲中文字幕成人无码 | 一本加勒比波多野结衣 | 中文无码精品a∨在线观看不卡 | 天天av天天av天天透 | 国产无套粉嫩白浆在线 | 亚洲色无码一区二区三区 | 丰满人妻精品国产99aⅴ | 精品人妻人人做人人爽 | 久久97精品久久久久久久不卡 | 国产两女互慰高潮视频在线观看 | 国产成人综合色在线观看网站 | 国产美女精品一区二区三区 | 国产成人人人97超碰超爽8 | 婷婷色婷婷开心五月四房播播 | 清纯唯美经典一区二区 | 国产另类ts人妖一区二区 | 国产精品高潮呻吟av久久 | 亚洲色欲久久久综合网东京热 | 欧洲美熟女乱又伦 | 亚洲 另类 在线 欧美 制服 | 亚洲国产精品成人久久蜜臀 | 老头边吃奶边弄进去呻吟 | 黑人粗大猛烈进出高潮视频 | 超碰97人人射妻 | 亚洲自偷精品视频自拍 | 伦伦影院午夜理论片 | 亚洲 a v无 码免 费 成 人 a v | 欧美日韩视频无码一区二区三 | 夜夜高潮次次欢爽av女 | 国产 精品 自在自线 | 亚洲一区二区三区无码久久 | 动漫av网站免费观看 | 久久久久久九九精品久 | 色五月五月丁香亚洲综合网 | 日本一区二区三区免费播放 | 久久99久久99精品中文字幕 | 久久综合九色综合欧美狠狠 | 麻豆av传媒蜜桃天美传媒 | 亚洲中文字幕在线无码一区二区 | 131美女爱做视频 | 久久国产36精品色熟妇 | 国产成人无码av片在线观看不卡 | 国产亚洲精品久久久久久国模美 | 国产精品久久久一区二区三区 | 一个人看的视频www在线 | 97久久超碰中文字幕 | 野狼第一精品社区 | 亚洲一区二区三区含羞草 | 国产在线无码精品电影网 | 夜夜影院未满十八勿进 | 亚洲成色在线综合网站 | 日本精品高清一区二区 | 亚洲精品无码人妻无码 | 亚洲成av人在线观看网址 | 久久精品国产亚洲精品 | 精品久久久无码中文字幕 | 初尝人妻少妇中文字幕 | 日本丰满熟妇videos | 麻豆国产人妻欲求不满 | 久久久国产精品无码免费专区 | 无码人妻出轨黑人中文字幕 | 性欧美videos高清精品 | 国产内射爽爽大片视频社区在线 | 99久久无码一区人妻 | 夜夜高潮次次欢爽av女 | 兔费看少妇性l交大片免费 | 亚洲乱码国产乱码精品精 | 国产婷婷色一区二区三区在线 | 久久99精品国产.久久久久 | 精品成人av一区二区三区 | 欧美性猛交内射兽交老熟妇 | 丝袜美腿亚洲一区二区 | 国产人妻精品一区二区三区不卡 | 人人澡人摸人人添 | 久久亚洲精品中文字幕无男同 | 六月丁香婷婷色狠狠久久 | 1000部夫妻午夜免费 | 兔费看少妇性l交大片免费 | 人妻互换免费中文字幕 | 十八禁视频网站在线观看 | 国模大胆一区二区三区 | 激情国产av做激情国产爱 | 亚洲综合久久一区二区 | 动漫av一区二区在线观看 | 欧美国产日韩亚洲中文 | 丰满少妇弄高潮了www | 国产av剧情md精品麻豆 | 久久久久亚洲精品中文字幕 | 久久久久免费看成人影片 | 国产内射爽爽大片视频社区在线 | 无码人妻出轨黑人中文字幕 | 国产成人精品一区二区在线小狼 | 欧美日韩在线亚洲综合国产人 | 中文字幕无码av激情不卡 | 成 人 网 站国产免费观看 | 最新国产乱人伦偷精品免费网站 | 国产成人av免费观看 | 国产又爽又猛又粗的视频a片 | 欧美日韩在线亚洲综合国产人 | 欧美日韩色另类综合 | 在线播放免费人成毛片乱码 | 日韩亚洲欧美中文高清在线 | 中文字幕 人妻熟女 | 国产亚洲日韩欧美另类第八页 | www一区二区www免费 | 日韩精品无码免费一区二区三区 | 久精品国产欧美亚洲色aⅴ大片 | 最近的中文字幕在线看视频 | 国产亚洲视频中文字幕97精品 | 色一情一乱一伦一区二区三欧美 | 欧洲熟妇色 欧美 | 性开放的女人aaa片 | 色婷婷综合激情综在线播放 | 中国大陆精品视频xxxx | 久久久精品成人免费观看 | 国产免费无码一区二区视频 | 熟妇人妻中文av无码 | 久久人人97超碰a片精品 | 亚洲欧美日韩国产精品一区二区 | 55夜色66夜色国产精品视频 | 在线观看欧美一区二区三区 | 天天摸天天碰天天添 | 久久精品国产一区二区三区肥胖 | 久久久av男人的天堂 | 国产欧美亚洲精品a | 国产尤物精品视频 | 伊人色综合久久天天小片 | 亚洲自偷自拍另类第1页 | 国产日产欧产精品精品app | 中文亚洲成a人片在线观看 | 99re在线播放 | 国产在热线精品视频 | 中文字幕 人妻熟女 | 国内精品人妻无码久久久影院蜜桃 | 国产精品亚洲а∨无码播放麻豆 | 亚洲精品国产精品乱码不卡 | 人妻无码久久精品人妻 | 男人的天堂av网站 | 日韩视频 中文字幕 视频一区 | 黄网在线观看免费网站 | 丁香啪啪综合成人亚洲 | 日韩亚洲欧美精品综合 | 性啪啪chinese东北女人 | 国产精品久久精品三级 | 丰满人妻翻云覆雨呻吟视频 | 亚洲精品www久久久 | 强辱丰满人妻hd中文字幕 | 国产sm调教视频在线观看 | 国产va免费精品观看 | 最近的中文字幕在线看视频 | 欧美三级a做爰在线观看 | 亚洲乱码国产乱码精品精 | 亚洲日韩一区二区三区 | 国产亚洲精品久久久久久久 | 亚洲精品久久久久avwww潮水 | 亚洲欧洲日本综合aⅴ在线 | 天天做天天爱天天爽综合网 | 欧美老妇与禽交 | 欧美人与善在线com | 国产真实乱对白精彩久久 | 99精品久久毛片a片 | 久久精品人人做人人综合试看 | 97精品人妻一区二区三区香蕉 | 久久99精品久久久久婷婷 | 中文久久乱码一区二区 | 日本爽爽爽爽爽爽在线观看免 | 东北女人啪啪对白 | 亚洲一区二区三区 | 婷婷五月综合缴情在线视频 | 丰满岳乱妇在线观看中字无码 | 老熟妇乱子伦牲交视频 | 亚洲色无码一区二区三区 | 精品无码一区二区三区爱欲 | 大地资源中文第3页 | 国产无遮挡又黄又爽免费视频 | 亚洲日韩av片在线观看 | 久久精品国产亚洲精品 | 免费乱码人妻系列无码专区 | 亚洲综合久久一区二区 | 人人妻人人澡人人爽欧美一区 | 野外少妇愉情中文字幕 | 国产在线aaa片一区二区99 | 婷婷丁香五月天综合东京热 | 亚洲狠狠色丁香婷婷综合 | 欧洲极品少妇 | 久久午夜无码鲁丝片 | 亚洲国产精品无码一区二区三区 | 国产精品久久国产精品99 | 欧美真人作爱免费视频 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 无遮挡啪啪摇乳动态图 | 亚洲精品鲁一鲁一区二区三区 | 久久久久成人精品免费播放动漫 | 国产成人精品一区二区在线小狼 | 日韩成人一区二区三区在线观看 | 领导边摸边吃奶边做爽在线观看 | 图片区 小说区 区 亚洲五月 | 亚洲成av人综合在线观看 | 久久精品人人做人人综合 | 精品厕所偷拍各类美女tp嘘嘘 | 国产精品久久精品三级 | 2020久久香蕉国产线看观看 | 国产卡一卡二卡三 | 亚洲毛片av日韩av无码 | av无码电影一区二区三区 | 久久久精品欧美一区二区免费 | 亚洲成色www久久网站 | 亚欧洲精品在线视频免费观看 | 免费人成网站视频在线观看 | 无码人中文字幕 | 国产成人综合美国十次 | 国产精品毛片一区二区 | 性做久久久久久久免费看 | 亚洲欧美日韩成人高清在线一区 | 亚洲色在线无码国产精品不卡 | 国产精品18久久久久久麻辣 | 中文字幕无码av激情不卡 | 无码av最新清无码专区吞精 | 国产精品久久久久无码av色戒 | 在线天堂新版最新版在线8 | 国产精品99爱免费视频 | 欧美精品一区二区精品久久 | 玩弄中年熟妇正在播放 | 国产欧美精品一区二区三区 | 偷窥村妇洗澡毛毛多 | 好屌草这里只有精品 | 性色欲网站人妻丰满中文久久不卡 | 我要看www免费看插插视频 | 在线观看国产午夜福利片 | 18禁止看的免费污网站 | 蜜臀av无码人妻精品 | 国产农村妇女高潮大叫 | 国产人妻精品一区二区三区 | 色爱情人网站 | 国产美女精品一区二区三区 | 亚洲精品综合一区二区三区在线 | 丝袜人妻一区二区三区 | 国产精品美女久久久网av | 国内精品人妻无码久久久影院蜜桃 | 国产人妻人伦精品1国产丝袜 | 俺去俺来也在线www色官网 | 中文字幕无码免费久久9一区9 | 综合网日日天干夜夜久久 | 精品厕所偷拍各类美女tp嘘嘘 | 野外少妇愉情中文字幕 | 国产欧美熟妇另类久久久 | 国产绳艺sm调教室论坛 | 精品无码国产自产拍在线观看蜜 | 色五月丁香五月综合五月 | 少妇无套内谢久久久久 | 亚洲 欧美 激情 小说 另类 | 麻豆国产人妻欲求不满 | 久精品国产欧美亚洲色aⅴ大片 | 日韩人妻系列无码专区 | 三级4级全黄60分钟 | 婷婷综合久久中文字幕蜜桃三电影 | 国产精品欧美成人 | 亚洲国产欧美在线成人 | 小sao货水好多真紧h无码视频 | 麻豆精产国品 | 欧美亚洲日韩国产人成在线播放 | 亚洲中文字幕在线无码一区二区 | 丰满少妇高潮惨叫视频 | 十八禁视频网站在线观看 | 欧洲精品码一区二区三区免费看 | 亚洲精品欧美二区三区中文字幕 | 无码播放一区二区三区 | 精品一区二区三区波多野结衣 | 国产成人精品三级麻豆 | 亚洲の无码国产の无码步美 | 亚洲日本va中文字幕 | 一本久道久久综合婷婷五月 | 久久精品国产99精品亚洲 | 欧洲熟妇精品视频 | 香港三级日本三级妇三级 | 日本熟妇大屁股人妻 | 少妇性荡欲午夜性开放视频剧场 | 久久精品女人的天堂av | 欧美三级a做爰在线观看 | 少妇无套内谢久久久久 | 免费人成网站视频在线观看 | 精品一二三区久久aaa片 | 人妻互换免费中文字幕 | 欧美兽交xxxx×视频 | 国产两女互慰高潮视频在线观看 | 骚片av蜜桃精品一区 | 国产香蕉尹人综合在线观看 | 国产尤物精品视频 | 88国产精品欧美一区二区三区 | 在线欧美精品一区二区三区 | 又大又硬又黄的免费视频 | 曰韩少妇内射免费播放 | 88国产精品欧美一区二区三区 | 久久久无码中文字幕久... | 国产午夜精品一区二区三区嫩草 | 人人爽人人澡人人高潮 | 中文字幕人妻无码一区二区三区 | 无码人妻精品一区二区三区不卡 | 女高中生第一次破苞av | 色诱久久久久综合网ywww | 野外少妇愉情中文字幕 | 少妇无码一区二区二三区 | 东京热男人av天堂 | 55夜色66夜色国产精品视频 | 精品久久综合1区2区3区激情 | 在线播放免费人成毛片乱码 | 亚洲码国产精品高潮在线 | 精品一区二区三区无码免费视频 | www成人国产高清内射 | 久久久久国色av免费观看性色 | 国产艳妇av在线观看果冻传媒 | 久久久久se色偷偷亚洲精品av | 亚洲成av人综合在线观看 | 亚洲精品成a人在线观看 | 国产特级毛片aaaaaa高潮流水 | 98国产精品综合一区二区三区 | 人妻少妇精品无码专区二区 | 又大又黄又粗又爽的免费视频 | 青春草在线视频免费观看 | 国产精品无码一区二区三区不卡 | 疯狂三人交性欧美 | 色一情一乱一伦一视频免费看 | 在教室伦流澡到高潮hnp视频 | 激情综合激情五月俺也去 | 欧洲vodafone精品性 | 国产精品手机免费 | 欧美日韩人成综合在线播放 | ass日本丰满熟妇pics | 精品久久综合1区2区3区激情 | 免费无码一区二区三区蜜桃大 | 国产精品久久国产精品99 | 99国产精品白浆在线观看免费 | 麻豆果冻传媒2021精品传媒一区下载 | 少妇人妻偷人精品无码视频 | 久久亚洲a片com人成 | 欧美成人高清在线播放 | 国产无套内射久久久国产 | 精品国产青草久久久久福利 | 少妇高潮一区二区三区99 | 久久综合九色综合97网 | 亚洲乱码国产乱码精品精 | 真人与拘做受免费视频 | 青草青草久热国产精品 | 日韩少妇白浆无码系列 | 色偷偷人人澡人人爽人人模 | 又湿又紧又大又爽a视频国产 | 美女黄网站人色视频免费国产 | 精品久久久中文字幕人妻 | 精品人妻人人做人人爽夜夜爽 | 女人被男人爽到呻吟的视频 | 2019午夜福利不卡片在线 | 国产精品自产拍在线观看 | 精品欧洲av无码一区二区三区 | 九九在线中文字幕无码 | 国产成人综合美国十次 | 亚洲熟悉妇女xxx妇女av | 欧美老熟妇乱xxxxx | 色偷偷人人澡人人爽人人模 | 亚洲另类伦春色综合小说 | 无套内谢老熟女 | 东京无码熟妇人妻av在线网址 | 国产一区二区三区日韩精品 | 激情亚洲一区国产精品 | 天天拍夜夜添久久精品大 | 露脸叫床粗话东北少妇 | 精品国产一区二区三区av 性色 | 精品国产一区二区三区四区在线看 | 国产欧美精品一区二区三区 | 强辱丰满人妻hd中文字幕 | 午夜福利不卡在线视频 | 人人妻人人澡人人爽人人精品浪潮 | 久久精品中文字幕大胸 | 男人的天堂av网站 | 大地资源中文第3页 | 熟女体下毛毛黑森林 | 内射老妇bbwx0c0ck | 精品国产青草久久久久福利 | 性欧美疯狂xxxxbbbb | 国产特级毛片aaaaaa高潮流水 | 狠狠色欧美亚洲狠狠色www | 亚洲日韩一区二区 | 精品水蜜桃久久久久久久 | 东京热一精品无码av | 一二三四在线观看免费视频 | 少妇久久久久久人妻无码 | 成 人 免费观看网站 | 婷婷丁香五月天综合东京热 | 捆绑白丝粉色jk震动捧喷白浆 | 人妻天天爽夜夜爽一区二区 | 又紧又大又爽精品一区二区 | 亚洲成av人片天堂网无码】 | 97久久国产亚洲精品超碰热 | 色 综合 欧美 亚洲 国产 | 中文字幕无码视频专区 | 日本va欧美va欧美va精品 | 亚洲精品国产第一综合99久久 | 久久 国产 尿 小便 嘘嘘 | 无码国产乱人伦偷精品视频 | 丰满人妻被黑人猛烈进入 | 亚洲色大成网站www国产 | 麻豆人妻少妇精品无码专区 | 99国产精品白浆在线观看免费 | 中文毛片无遮挡高清免费 | 成人免费无码大片a毛片 | 国内精品人妻无码久久久影院蜜桃 | 久久人人爽人人人人片 | 日本丰满护士爆乳xxxx | 麻花豆传媒剧国产免费mv在线 | 狠狠噜狠狠狠狠丁香五月 | 久久久国产一区二区三区 | 国产无av码在线观看 | 少女韩国电视剧在线观看完整 | 国产综合久久久久鬼色 | 一本大道伊人av久久综合 | 六月丁香婷婷色狠狠久久 | 蜜臀av在线播放 久久综合激激的五月天 | 水蜜桃亚洲一二三四在线 | 中文字幕无码热在线视频 | 好爽又高潮了毛片免费下载 | 精品无人国产偷自产在线 | 丰满岳乱妇在线观看中字无码 | 精品国产一区二区三区四区 | 国产精品无套呻吟在线 | 国产精品久久久一区二区三区 | 国产超碰人人爽人人做人人添 | 思思久久99热只有频精品66 | 国产精品久久久久久久影院 | 中文字幕久久久久人妻 | 亚洲午夜福利在线观看 | 99久久亚洲精品无码毛片 | 在教室伦流澡到高潮hnp视频 | 青青青手机频在线观看 | 久久午夜无码鲁丝片秋霞 | 精品国精品国产自在久国产87 | 精品久久久久久亚洲精品 | 少妇被黑人到高潮喷出白浆 | 高清国产亚洲精品自在久久 | 婷婷综合久久中文字幕蜜桃三电影 | 中文毛片无遮挡高清免费 | 97久久国产亚洲精品超碰热 | 性开放的女人aaa片 | 国产精品国产三级国产专播 | 性欧美牲交xxxxx视频 | 国产精品资源一区二区 | 中文字幕av日韩精品一区二区 | 日韩精品久久久肉伦网站 | 久久久久免费看成人影片 | 亚洲爆乳精品无码一区二区三区 | 国产精品久久久久久久影院 | 欧美精品无码一区二区三区 | 精品国产精品久久一区免费式 | 国产成人亚洲综合无码 | 国产香蕉尹人综合在线观看 | 久久久精品456亚洲影院 | 亚洲中文字幕无码中字 | 2020久久超碰国产精品最新 | 老头边吃奶边弄进去呻吟 | 激情国产av做激情国产爱 | 欧美丰满少妇xxxx性 | 欧美日韩色另类综合 | 久青草影院在线观看国产 | 少妇无码吹潮 | 国产 浪潮av性色四虎 | 300部国产真实乱 | 大乳丰满人妻中文字幕日本 | 国内丰满熟女出轨videos | 亚洲日韩乱码中文无码蜜桃臀网站 | 欧美大屁股xxxxhd黑色 | 波多野42部无码喷潮在线 | 日日麻批免费40分钟无码 | 国产内射爽爽大片视频社区在线 | 人人妻人人藻人人爽欧美一区 | 国产精品久久久久久亚洲影视内衣 | 女人色极品影院 | 亚洲色欲色欲天天天www | 成人无码精品一区二区三区 | 婷婷综合久久中文字幕蜜桃三电影 | 日本熟妇大屁股人妻 | 亚洲色在线无码国产精品不卡 | 久久人人爽人人爽人人片ⅴ | a在线亚洲男人的天堂 | 综合网日日天干夜夜久久 | 鲁一鲁av2019在线 | 任你躁国产自任一区二区三区 | 97久久精品无码一区二区 | 精品国产一区二区三区av 性色 | 国产精品第一区揄拍无码 | 中文字幕人妻无码一区二区三区 | 2020久久超碰国产精品最新 | 国产一区二区三区精品视频 | 鲁大师影院在线观看 | 99久久人妻精品免费二区 | 中国女人内谢69xxxx | 亚洲欧美精品伊人久久 | 久久午夜无码鲁丝片秋霞 | 成人av无码一区二区三区 | 久久久久久久久蜜桃 | 国产无套内射久久久国产 | 99久久人妻精品免费一区 | 人人爽人人爽人人片av亚洲 | 国产手机在线αⅴ片无码观看 | 色噜噜亚洲男人的天堂 | 99久久久国产精品无码免费 | 最近的中文字幕在线看视频 | 久久久中文久久久无码 | 中文字幕乱码人妻二区三区 | 无码人妻丰满熟妇区毛片18 | 国内综合精品午夜久久资源 | 久久国产精品偷任你爽任你 | 国产九九九九九九九a片 | 欧美 日韩 人妻 高清 中文 | 中文精品无码中文字幕无码专区 | 亚洲国产午夜精品理论片 | 亚洲国产成人av在线观看 | 啦啦啦www在线观看免费视频 | 欧美熟妇另类久久久久久多毛 | 色综合久久88色综合天天 | 97se亚洲精品一区 | 牲欲强的熟妇农村老妇女视频 | 久久伊人色av天堂九九小黄鸭 | 国产精品久久久一区二区三区 | 亚洲日本一区二区三区在线 | 男人和女人高潮免费网站 | 少妇久久久久久人妻无码 | 亚洲s码欧洲m码国产av | 呦交小u女精品视频 | 国产av无码专区亚洲a∨毛片 | 天天摸天天透天天添 | 亚洲成av人影院在线观看 | 亚洲欧美色中文字幕在线 | 亚洲精品一区二区三区在线 | 草草网站影院白丝内射 | 特黄特色大片免费播放器图片 | 欧美日韩一区二区三区自拍 | 2020久久香蕉国产线看观看 | 久9re热视频这里只有精品 | 久久久久久国产精品无码下载 | 国产黑色丝袜在线播放 | 亚洲国产精品毛片av不卡在线 | 99久久99久久免费精品蜜桃 | 久久午夜无码鲁丝片午夜精品 | 国产乱人伦偷精品视频 | 丁香花在线影院观看在线播放 | 国产成人无码一二三区视频 | 国产又爽又黄又刺激的视频 | 波多野结衣 黑人 | 在线欧美精品一区二区三区 | 久久精品无码一区二区三区 | 国产热a欧美热a在线视频 | 99久久99久久免费精品蜜桃 | 18禁止看的免费污网站 | 精品国产av色一区二区深夜久久 | 国产精品亚洲一区二区三区喷水 | 国产一区二区三区四区五区加勒比 | 中文字幕av无码一区二区三区电影 | 亚洲成av人片天堂网无码】 | 黑人玩弄人妻中文在线 | 漂亮人妻洗澡被公强 日日躁 | 日韩欧美中文字幕公布 | 女人色极品影院 | 久久无码人妻影院 | 久久亚洲国产成人精品性色 | 国产肉丝袜在线观看 | 性欧美疯狂xxxxbbbb | 国产一区二区三区四区五区加勒比 | 亚洲 另类 在线 欧美 制服 | av无码久久久久不卡免费网站 | 天天摸天天碰天天添 | 牲交欧美兽交欧美 | 亚洲精品午夜国产va久久成人 | 亚洲另类伦春色综合小说 | 啦啦啦www在线观看免费视频 | 亚洲精品久久久久avwww潮水 | 六十路熟妇乱子伦 | 亚洲中文字幕在线无码一区二区 | 国产两女互慰高潮视频在线观看 | 国产又爽又猛又粗的视频a片 | 好男人社区资源 | 人人妻人人澡人人爽欧美一区九九 | 久久无码中文字幕免费影院蜜桃 | 国产农村乱对白刺激视频 | 国产免费无码一区二区视频 | 成人免费视频在线观看 | 免费无码一区二区三区蜜桃大 | 久久精品国产大片免费观看 | 人人妻人人澡人人爽人人精品浪潮 | 亚洲中文字幕成人无码 | 无码av中文字幕免费放 | 亚洲自偷自拍另类第1页 | 99久久久国产精品无码免费 | 色诱久久久久综合网ywww | 亚洲精品国产精品乱码视色 | 亚无码乱人伦一区二区 | 国内老熟妇对白xxxxhd | 亚洲色欲色欲天天天www | 久久久精品456亚洲影院 | 东京一本一道一二三区 | 久久久久99精品国产片 | 亚洲 激情 小说 另类 欧美 | 人妻与老人中文字幕 | 日本熟妇大屁股人妻 | 久久国产精品精品国产色婷婷 | 精品人人妻人人澡人人爽人人 | 曰本女人与公拘交酡免费视频 | 国产精品对白交换视频 | 国产69精品久久久久app下载 | 纯爱无遮挡h肉动漫在线播放 | 欧美三级不卡在线观看 | 亚洲成a人一区二区三区 | 久久久久99精品成人片 | 精品无码成人片一区二区98 | 精品久久久久久人妻无码中文字幕 | 东京无码熟妇人妻av在线网址 | 无人区乱码一区二区三区 | 中文字幕乱妇无码av在线 | 人人妻人人澡人人爽欧美精品 | 国产精品久久久一区二区三区 | 又湿又紧又大又爽a视频国产 | 亚洲码国产精品高潮在线 | 国产精品亚洲专区无码不卡 | 网友自拍区视频精品 | 成人性做爰aaa片免费看不忠 | 久久综合九色综合欧美狠狠 | 永久免费观看美女裸体的网站 | 激情爆乳一区二区三区 | 成人av无码一区二区三区 | 少妇的肉体aa片免费 | 精品国偷自产在线 | 国产亚洲日韩欧美另类第八页 | 欧美精品国产综合久久 | 久久人人爽人人爽人人片av高清 | 大地资源网第二页免费观看 | 日日摸日日碰夜夜爽av | 粉嫩少妇内射浓精videos | 青春草在线视频免费观看 | 国产精品怡红院永久免费 | 丰满人妻一区二区三区免费视频 | 国产又爽又黄又刺激的视频 | 人妻少妇被猛烈进入中文字幕 | 高清国产亚洲精品自在久久 | 国产成人无码av一区二区 | 妺妺窝人体色www婷婷 | 日韩精品成人一区二区三区 | 无人区乱码一区二区三区 | 我要看www免费看插插视频 | 一个人看的www免费视频在线观看 | 久久精品国产99久久6动漫 | 日韩精品乱码av一区二区 | 18禁黄网站男男禁片免费观看 | 成熟人妻av无码专区 | 中文毛片无遮挡高清免费 | 国产精品高潮呻吟av久久 | 精品一区二区不卡无码av | 在线视频网站www色 | 日本精品少妇一区二区三区 | 久青草影院在线观看国产 | 亚洲欧美国产精品专区久久 | 精品无码成人片一区二区98 | 在线精品国产一区二区三区 | 97色伦图片97综合影院 | 色噜噜亚洲男人的天堂 | 激情国产av做激情国产爱 | 综合激情五月综合激情五月激情1 | 久在线观看福利视频 | 亚洲精品一区国产 | 性啪啪chinese东北女人 | 欧美激情内射喷水高潮 | 欧美三级不卡在线观看 | 天天做天天爱天天爽综合网 | 色老头在线一区二区三区 | 99久久人妻精品免费二区 | 国产精品无码成人午夜电影 | 无码免费一区二区三区 | 国产精品久久久久久亚洲毛片 | 国产超级va在线观看视频 | 免费播放一区二区三区 | 亚洲中文字幕乱码av波多ji | 日本爽爽爽爽爽爽在线观看免 | 激情内射日本一区二区三区 | 一本大道伊人av久久综合 | 成年美女黄网站色大免费全看 | 天堂а√在线中文在线 | 一本色道婷婷久久欧美 | 精品国产麻豆免费人成网站 | 国产真实乱对白精彩久久 | 中文字幕无码av激情不卡 | 亚洲欧洲日本综合aⅴ在线 | 国产精品igao视频网 | 日韩av无码中文无码电影 | 亚洲人成人无码网www国产 | 清纯唯美经典一区二区 | 97夜夜澡人人双人人人喊 | 欧美日韩一区二区三区自拍 | 国产成人无码区免费内射一片色欲 | 久久亚洲精品成人无码 | 在线观看国产午夜福利片 | 国产99久久精品一区二区 | 又色又爽又黄的美女裸体网站 | 波多野结衣乳巨码无在线观看 | 成年美女黄网站色大免费视频 | 国产综合在线观看 | 欧美大屁股xxxxhd黑色 | 99久久婷婷国产综合精品青草免费 | 久久精品国产一区二区三区 | 免费看男女做好爽好硬视频 | 无码人妻精品一区二区三区不卡 | 亚洲一区二区三区四区 | 久久久久久亚洲精品a片成人 | 人人爽人人澡人人高潮 | 久久人妻内射无码一区三区 | 双乳奶水饱满少妇呻吟 | 久久久久99精品成人片 | 青青青手机频在线观看 | 亚洲日韩av一区二区三区四区 | 亚洲精品无码国产 | 无码精品国产va在线观看dvd | 无码纯肉视频在线观看 | 日韩精品a片一区二区三区妖精 | 97夜夜澡人人爽人人喊中国片 | 午夜福利试看120秒体验区 | 欧美 日韩 人妻 高清 中文 | 久久视频在线观看精品 | 国产精品-区区久久久狼 | 精品亚洲韩国一区二区三区 | 久久人人爽人人爽人人片av高清 | 国产热a欧美热a在线视频 | 在线欧美精品一区二区三区 | www国产精品内射老师 | 中国女人内谢69xxxx | 中文字幕乱码亚洲无线三区 | 国产精品18久久久久久麻辣 | 午夜时刻免费入口 | 内射老妇bbwx0c0ck | 在线成人www免费观看视频 | 欧美性色19p | 国产成人无码专区 | 中文毛片无遮挡高清免费 | 在线天堂新版最新版在线8 | 精品 日韩 国产 欧美 视频 | 亚洲小说图区综合在线 | 日韩人妻无码一区二区三区久久99 | 黑森林福利视频导航 | 四虎国产精品一区二区 | 自拍偷自拍亚洲精品被多人伦好爽 | 欧洲欧美人成视频在线 | 亚洲性无码av中文字幕 | 国产精华av午夜在线观看 | 中文无码成人免费视频在线观看 | 东京无码熟妇人妻av在线网址 | 国产绳艺sm调教室论坛 | 又色又爽又黄的美女裸体网站 | 无码国产色欲xxxxx视频 | 亚洲成av人综合在线观看 | 久久久久久久久蜜桃 | 伊人久久婷婷五月综合97色 | 欧美熟妇另类久久久久久多毛 | 久久视频在线观看精品 | 四虎国产精品免费久久 | 人妻aⅴ无码一区二区三区 | 成人免费视频视频在线观看 免费 | 午夜丰满少妇性开放视频 | 成 人 免费观看网站 | 领导边摸边吃奶边做爽在线观看 | 人人超人人超碰超国产 | 97精品国产97久久久久久免费 | 老熟妇仑乱视频一区二区 | 成人无码精品一区二区三区 | 日日天干夜夜狠狠爱 | 国产精品高潮呻吟av久久 | 国产无遮挡吃胸膜奶免费看 | 亚洲精品中文字幕久久久久 | 男人和女人高潮免费网站 | 3d动漫精品啪啪一区二区中 | 国产一区二区三区精品视频 | 久热国产vs视频在线观看 | 欧美第一黄网免费网站 | 131美女爱做视频 | 欧美刺激性大交 | 在线成人www免费观看视频 | 久久综合色之久久综合 | 久久视频在线观看精品 | 无码一区二区三区在线 | 动漫av网站免费观看 | 亚洲精品一区二区三区四区五区 | 熟妇人妻无乱码中文字幕 | 99精品国产综合久久久久五月天 | 亚洲精品中文字幕乱码 | 欧美成人高清在线播放 | 午夜成人1000部免费视频 | 免费中文字幕日韩欧美 | 88国产精品欧美一区二区三区 | 最新国产乱人伦偷精品免费网站 | 精品国产aⅴ无码一区二区 | 国产精品手机免费 | 午夜福利试看120秒体验区 | 国产亚洲人成a在线v网站 | 亚洲gv猛男gv无码男同 | 国产xxx69麻豆国语对白 | 波多野结衣高清一区二区三区 | 久久久久久九九精品久 | 亚洲日韩精品欧美一区二区 | 一区二区三区乱码在线 | 欧洲 | 天堂久久天堂av色综合 | 在线a亚洲视频播放在线观看 | 亚洲精品中文字幕乱码 | 麻豆国产丝袜白领秘书在线观看 | 亚洲精品中文字幕 | 国产在线aaa片一区二区99 | 亚洲一区二区三区播放 | 扒开双腿疯狂进出爽爽爽视频 | 最新版天堂资源中文官网 | 亚洲国产一区二区三区在线观看 | 欧美丰满熟妇xxxx性ppx人交 | 亚洲精品无码国产 | 扒开双腿吃奶呻吟做受视频 | 精品一区二区三区无码免费视频 | 久久久久成人精品免费播放动漫 | 免费人成网站视频在线观看 | 久久99久久99精品中文字幕 | 永久免费观看国产裸体美女 | 少妇人妻av毛片在线看 | 四虎永久在线精品免费网址 | 日日天日日夜日日摸 | 中文字幕无码av波多野吉衣 | 乌克兰少妇性做爰 | 亚洲第一网站男人都懂 | 亚洲国产成人a精品不卡在线 | 男人和女人高潮免费网站 | 99久久精品无码一区二区毛片 | 国产福利视频一区二区 | 乱码午夜-极国产极内射 | 人妻天天爽夜夜爽一区二区 | 亚洲欧美日韩成人高清在线一区 | 国产在线aaa片一区二区99 | 女人被男人躁得好爽免费视频 | 97se亚洲精品一区 | 久久久精品人妻久久影视 | 国产精品久久久av久久久 | 亚洲人成网站色7799 | 人妻有码中文字幕在线 | 国产一区二区三区精品视频 | 久久天天躁狠狠躁夜夜免费观看 | 久久 国产 尿 小便 嘘嘘 | 国产午夜精品一区二区三区嫩草 | 国产农村乱对白刺激视频 | 无码av最新清无码专区吞精 | 欧美丰满少妇xxxx性 | 又大又黄又粗又爽的免费视频 | 亚洲国产欧美在线成人 | 亚洲男人av香蕉爽爽爽爽 | 成人精品视频一区二区三区尤物 | 久久无码专区国产精品s | 精品国产一区二区三区四区 | 国产av一区二区精品久久凹凸 | 国产后入清纯学生妹 | 夜夜夜高潮夜夜爽夜夜爰爰 | 最近免费中文字幕中文高清百度 | 精品一区二区不卡无码av | 亚洲va欧美va天堂v国产综合 | 久久国产精品萌白酱免费 | www国产亚洲精品久久久日本 | 一个人看的视频www在线 | 天天综合网天天综合色 | 久久国内精品自在自线 | 久久久久久av无码免费看大片 | 精品久久久无码人妻字幂 | 国产精品鲁鲁鲁 | 欧美性猛交xxxx富婆 | 亚洲综合另类小说色区 | 国产亚洲欧美日韩亚洲中文色 | 131美女爱做视频 | 欧美 丝袜 自拍 制服 另类 | 国产精品久久久午夜夜伦鲁鲁 | 国产性生大片免费观看性 | 日本又色又爽又黄的a片18禁 | 日产精品99久久久久久 | 99国产欧美久久久精品 | 天天摸天天碰天天添 | 精品偷拍一区二区三区在线看 | 亚洲色www成人永久网址 | 久久亚洲中文字幕精品一区 | 精品一区二区不卡无码av | 人妻少妇精品视频专区 | aⅴ在线视频男人的天堂 | 亚洲无人区一区二区三区 | 国产精品怡红院永久免费 | 国产在线aaa片一区二区99 | 六月丁香婷婷色狠狠久久 | 精品国偷自产在线 | 三上悠亚人妻中文字幕在线 | 国产无遮挡又黄又爽免费视频 | 人人妻人人澡人人爽欧美精品 | 熟女体下毛毛黑森林 | 国产suv精品一区二区五 | 黄网在线观看免费网站 | 无码人妻av免费一区二区三区 | 欧美一区二区三区视频在线观看 | 亲嘴扒胸摸屁股激烈网站 | 亚洲精品一区三区三区在线观看 | 国产午夜无码精品免费看 | 99riav国产精品视频 | 人妻体内射精一区二区三四 | 国产亚洲精品久久久久久 | 欧美自拍另类欧美综合图片区 | 日本乱偷人妻中文字幕 | 影音先锋中文字幕无码 | 色偷偷人人澡人人爽人人模 | 在线 国产 欧美 亚洲 天堂 | 18禁黄网站男男禁片免费观看 | 欧美大屁股xxxxhd黑色 | 亚洲精品一区国产 | 亚洲成av人片天堂网无码】 | 女高中生第一次破苞av | 久久精品国产一区二区三区肥胖 | 男人的天堂av网站 | 国产超碰人人爽人人做人人添 | 亚洲自偷自偷在线制服 | 色婷婷综合中文久久一本 | 亚洲经典千人经典日产 | 熟妇人妻激情偷爽文 | 国产精品对白交换视频 | 亚洲成a人片在线观看日本 | 免费看少妇作爱视频 | 最新版天堂资源中文官网 | 国产成人无码区免费内射一片色欲 | 激情国产av做激情国产爱 | 欧美日韩人成综合在线播放 | 丰满诱人的人妻3 | 久久综合九色综合欧美狠狠 | 九一九色国产 | 男女超爽视频免费播放 | 亚洲热妇无码av在线播放 | 欧美老人巨大xxxx做受 | 中文字幕精品av一区二区五区 | 18黄暴禁片在线观看 | 东京一本一道一二三区 | 人妻少妇精品无码专区二区 | 欧美成人午夜精品久久久 | 亚洲色欲久久久综合网东京热 | 老子影院午夜伦不卡 | 久久精品女人的天堂av | 无码av最新清无码专区吞精 | 国产午夜精品一区二区三区嫩草 | 青青青爽视频在线观看 | 久精品国产欧美亚洲色aⅴ大片 | 亚洲の无码国产の无码步美 | 帮老师解开蕾丝奶罩吸乳网站 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 俄罗斯老熟妇色xxxx | 人妻少妇被猛烈进入中文字幕 | 日本一卡2卡3卡四卡精品网站 | www国产亚洲精品久久久日本 | 精品无码av一区二区三区 | 国产精品久久国产精品99 | 亚洲狠狠婷婷综合久久 | 成 人 网 站国产免费观看 | 亚洲综合伊人久久大杳蕉 | 国产明星裸体无码xxxx视频 | 欧美 日韩 亚洲 在线 | 国产精品丝袜黑色高跟鞋 | 久久亚洲精品中文字幕无男同 | 精品久久久久久人妻无码中文字幕 | 中文字幕色婷婷在线视频 | 亚洲爆乳精品无码一区二区三区 | 日韩欧美中文字幕在线三区 | 久久99精品久久久久久动态图 | 久久久久久a亚洲欧洲av冫 | 亚洲精品美女久久久久久久 | 377p欧洲日本亚洲大胆 | 亚洲欧美国产精品久久 | 女人高潮内射99精品 | 福利一区二区三区视频在线观看 | 中国女人内谢69xxxx | 欧美亚洲日韩国产人成在线播放 | 少妇无码一区二区二三区 | 日本免费一区二区三区最新 | 久久久婷婷五月亚洲97号色 | 亚洲男人av香蕉爽爽爽爽 | 亚洲の无码国产の无码影院 | 国产在线aaa片一区二区99 | 欧美国产亚洲日韩在线二区 | 国产三级精品三级男人的天堂 | 99久久久国产精品无码免费 | 国产精品.xx视频.xxtv | 97人妻精品一区二区三区 | www成人国产高清内射 | 麻花豆传媒剧国产免费mv在线 | 国产真实伦对白全集 | 狠狠cao日日穞夜夜穞av | 久久精品人人做人人综合 | 99久久久无码国产aaa精品 | 欧美老妇交乱视频在线观看 | 性欧美疯狂xxxxbbbb | 欧美日本日韩 | 免费人成网站视频在线观看 | 性史性农村dvd毛片 | 国语精品一区二区三区 | 一本久久伊人热热精品中文字幕 | 久久综合给久久狠狠97色 | 俺去俺来也www色官网 | 国产高潮视频在线观看 | √天堂资源地址中文在线 | 亚洲一区二区三区 | 99精品无人区乱码1区2区3区 | 牲欲强的熟妇农村老妇女 | 精品国产一区二区三区四区在线看 | 精品成在人线av无码免费看 | 丰腴饱满的极品熟妇 | 欧美人与动性行为视频 | 久久午夜夜伦鲁鲁片无码免费 | 岛国片人妻三上悠亚 | 丰满人妻翻云覆雨呻吟视频 | 国产成人精品一区二区在线小狼 | 色婷婷香蕉在线一区二区 | 牲欲强的熟妇农村老妇女视频 | 欧美性黑人极品hd | 在线观看国产午夜福利片 | 男女作爱免费网站 | 亚洲爆乳无码专区 | 久久久久久九九精品久 | 亚洲国产av精品一区二区蜜芽 | 桃花色综合影院 | 精品国产一区二区三区四区 | 亚洲精品国偷拍自产在线麻豆 | 中文无码成人免费视频在线观看 | 婷婷丁香六月激情综合啪 | 久久zyz资源站无码中文动漫 | 国内少妇偷人精品视频免费 | 久久无码中文字幕免费影院蜜桃 | 欧美日韩精品 | 免费看男女做好爽好硬视频 | 久久精品国产精品国产精品污 | 日本乱人伦片中文三区 | 国产人妻精品午夜福利免费 | 天天躁夜夜躁狠狠是什么心态 | 中文字幕久久久久人妻 | 亚洲天堂2017无码 | 国产精品人人爽人人做我的可爱 | 国产成人av免费观看 | 国产成人精品一区二区在线小狼 | 国产精品欧美成人 | 久久精品女人的天堂av | 日本精品少妇一区二区三区 | 成人试看120秒体验区 | 国产精品无码成人午夜电影 | 国产真实乱对白精彩久久 | 国产莉萝无码av在线播放 | 爆乳一区二区三区无码 | 精品国产国产综合精品 | 性色欲情网站iwww九文堂 | 亚洲日韩av一区二区三区四区 | 一本一道久久综合久久 | 天堂亚洲2017在线观看 | 精品aⅴ一区二区三区 | 国产无套内射久久久国产 | 色婷婷av一区二区三区之红樱桃 | 日日摸日日碰夜夜爽av | 精品夜夜澡人妻无码av蜜桃 | 亚洲午夜无码久久 | 中国女人内谢69xxxx | 中文字幕无码av激情不卡 | 亚洲伊人久久精品影院 | 国产色精品久久人妻 | 欧美亚洲国产一区二区三区 | 国产精品资源一区二区 | 亚洲乱码中文字幕在线 | 国产精品美女久久久网av | 成人精品视频一区二区三区尤物 | 欧美丰满老熟妇xxxxx性 | 亚洲理论电影在线观看 | 扒开双腿吃奶呻吟做受视频 | 国产性生交xxxxx无码 | 久久人人97超碰a片精品 | 国产性生交xxxxx无码 | 亚洲另类伦春色综合小说 | 精品少妇爆乳无码av无码专区 | 高潮毛片无遮挡高清免费视频 | 玩弄人妻少妇500系列视频 | 丰满人妻精品国产99aⅴ | 久久精品国产大片免费观看 | 搡女人真爽免费视频大全 | 精品无码国产自产拍在线观看蜜 | 国产精品手机免费 | 国产97色在线 | 免 | 性色欲网站人妻丰满中文久久不卡 | 噜噜噜亚洲色成人网站 | 一本色道久久综合狠狠躁 | 丁香花在线影院观看在线播放 | 成人欧美一区二区三区 | 亚洲精品国产精品乱码视色 | 婷婷五月综合缴情在线视频 | 色一情一乱一伦一视频免费看 | 久久精品人人做人人综合 | 东京热男人av天堂 | 久久久无码中文字幕久... | 亚洲娇小与黑人巨大交 | 精品国产一区二区三区四区 | 欧美野外疯狂做受xxxx高潮 | 免费无码午夜福利片69 | 国产又粗又硬又大爽黄老大爷视 | 秋霞成人午夜鲁丝一区二区三区 | 狠狠亚洲超碰狼人久久 | 水蜜桃亚洲一二三四在线 | 亚洲精品一区二区三区在线观看 | 国内少妇偷人精品视频免费 | 亚洲 日韩 欧美 成人 在线观看 | 无码成人精品区在线观看 | 青青青爽视频在线观看 | 牛和人交xxxx欧美 | 色综合久久久无码中文字幕 | a国产一区二区免费入口 | 免费观看黄网站 | 夜先锋av资源网站 | 成人免费无码大片a毛片 | 亚拍精品一区二区三区探花 | 一个人看的www免费视频在线观看 | 狠狠色欧美亚洲狠狠色www | 欧美人与禽zoz0性伦交 | 国产区女主播在线观看 | 国产suv精品一区二区五 | 亚洲国产精品久久久天堂 | 婷婷六月久久综合丁香 | 在线播放免费人成毛片乱码 | 亚洲の无码国产の无码影院 | 亚洲天堂2017无码中文 | 丰满少妇熟乱xxxxx视频 | 性欧美videos高清精品 | 国产精品久久久久久亚洲毛片 | 国产免费无码一区二区视频 | 精品久久久中文字幕人妻 | 在线欧美精品一区二区三区 | 日韩亚洲欧美精品综合 | 亚洲精品综合五月久久小说 | 欧美丰满熟妇xxxx性ppx人交 | 窝窝午夜理论片影院 | 亚洲日韩av一区二区三区中文 | 99久久人妻精品免费二区 | 久久99精品久久久久久 | 精品熟女少妇av免费观看 | 奇米影视7777久久精品人人爽 | 少妇厨房愉情理9仑片视频 | 人妻尝试又大又粗久久 | 久久99国产综合精品 | 风流少妇按摩来高潮 | 精品水蜜桃久久久久久久 | 久久精品一区二区三区四区 | 免费网站看v片在线18禁无码 | 日日鲁鲁鲁夜夜爽爽狠狠 | 国内精品九九久久久精品 | 国产精品毛片一区二区 | 色婷婷综合中文久久一本 | 亚洲精品一区二区三区在线 | 欧美丰满老熟妇xxxxx性 | 日本大香伊一区二区三区 | 99国产精品白浆在线观看免费 | 国产成人无码一二三区视频 | 亚洲午夜无码久久 | 九月婷婷人人澡人人添人人爽 | 亲嘴扒胸摸屁股激烈网站 | 在线欧美精品一区二区三区 | 乌克兰少妇xxxx做受 | 久久久久久国产精品无码下载 | 亚洲成av人在线观看网址 | 伊人久久大香线蕉av一区二区 | 97夜夜澡人人爽人人喊中国片 | 国产三级久久久精品麻豆三级 | 天堂亚洲2017在线观看 | 免费人成在线观看网站 | 成人av无码一区二区三区 | 久久精品人人做人人综合试看 | 日日噜噜噜噜夜夜爽亚洲精品 | 76少妇精品导航 | 色婷婷综合中文久久一本 | 午夜嘿嘿嘿影院 | 国产精品久久久久久亚洲影视内衣 | 97无码免费人妻超级碰碰夜夜 | 中文字幕无码热在线视频 | 澳门永久av免费网站 | 日韩人妻系列无码专区 | 少妇愉情理伦片bd | 少妇无套内谢久久久久 | 国产婷婷色一区二区三区在线 | 国产乱人偷精品人妻a片 | 欧洲vodafone精品性 | 久青草影院在线观看国产 | 色一情一乱一伦一视频免费看 | 午夜精品久久久久久久 | 国产亚洲精品久久久久久大师 | 国产精品毛片一区二区 | 中文字幕无码免费久久99 | 丰满护士巨好爽好大乳 | 国内精品久久久久久中文字幕 | 少妇久久久久久人妻无码 | 成人亚洲精品久久久久软件 | 国产精品第一区揄拍无码 | 最近免费中文字幕中文高清百度 | 国产精品亚洲综合色区韩国 | 日韩精品成人一区二区三区 | 国产在线精品一区二区高清不卡 | 国产精品亚洲lv粉色 | 初尝人妻少妇中文字幕 | 中文字幕乱码中文乱码51精品 | 初尝人妻少妇中文字幕 | 国产精品久久久午夜夜伦鲁鲁 | 双乳奶水饱满少妇呻吟 | 300部国产真实乱 | 亚洲の无码国产の无码步美 | 超碰97人人射妻 | 国产片av国语在线观看 | 中国大陆精品视频xxxx | 中文字幕精品av一区二区五区 | 1000部啪啪未满十八勿入下载 | 成 人影片 免费观看 | 麻豆精产国品 | 欧美人妻一区二区三区 | 精品国产一区二区三区av 性色 | 日韩精品无码一区二区中文字幕 | 亚洲熟女一区二区三区 | 久久国产自偷自偷免费一区调 | 永久免费观看美女裸体的网站 | 日本丰满护士爆乳xxxx | 欧美国产日韩久久mv | 国产精品视频免费播放 | 无码精品国产va在线观看dvd | 久久99精品国产麻豆蜜芽 | av在线亚洲欧洲日产一区二区 | 国产无遮挡吃胸膜奶免费看 | 日本丰满护士爆乳xxxx | 婷婷色婷婷开心五月四房播播 | 午夜精品久久久内射近拍高清 | 成人精品视频一区二区 | 国产精品欧美成人 | 精品国产一区二区三区四区 | 中文字幕乱码人妻二区三区 | 久久伊人色av天堂九九小黄鸭 | 国产精品自产拍在线观看 | 黑人巨大精品欧美一区二区 | 波多野结衣av一区二区全免费观看 | 无码精品人妻一区二区三区av | 亚洲另类伦春色综合小说 | 国内老熟妇对白xxxxhd | 无码一区二区三区在线 | 真人与拘做受免费视频一 | 日日摸夜夜摸狠狠摸婷婷 | 日韩精品乱码av一区二区 | 国产午夜无码视频在线观看 | 中文字幕日产无线码一区 | 无码播放一区二区三区 | 高清国产亚洲精品自在久久 | 精品国产一区二区三区av 性色 | 精品国偷自产在线视频 | 偷窥日本少妇撒尿chinese | 久久亚洲中文字幕无码 | 亚洲一区二区三区在线观看网站 | 无码一区二区三区在线观看 | 亚洲熟妇自偷自拍另类 | 给我免费的视频在线观看 | 最近的中文字幕在线看视频 | 成人一在线视频日韩国产 | 四虎国产精品一区二区 | 国产精品99久久精品爆乳 | 久久久久久亚洲精品a片成人 | 人妻与老人中文字幕 | 蜜桃视频韩日免费播放 | 中文字幕av日韩精品一区二区 | 久久国产精品精品国产色婷婷 | 999久久久国产精品消防器材 | 福利一区二区三区视频在线观看 | 欧美日韩综合一区二区三区 | 日本www一道久久久免费榴莲 | 国产精品-区区久久久狼 | 好屌草这里只有精品 | 亚洲狠狠婷婷综合久久 | 久久午夜夜伦鲁鲁片无码免费 | 亚洲色欲色欲天天天www | 无码成人精品区在线观看 | 小鲜肉自慰网站xnxx | 欧美国产日产一区二区 | 欧美国产日韩久久mv | 欧美日韩一区二区免费视频 | 欧美黑人性暴力猛交喷水 | 国内丰满熟女出轨videos | 一区二区三区乱码在线 | 欧洲 | 精品一区二区不卡无码av | 日日麻批免费40分钟无码 | 欧美激情内射喷水高潮 | 少妇邻居内射在线 | 无码国产激情在线观看 | 国产成人人人97超碰超爽8 | 国产精品久久久久9999小说 | 精品久久久久久人妻无码中文字幕 | 精品 日韩 国产 欧美 视频 | 国产深夜福利视频在线 | 色一情一乱一伦一视频免费看 | 中文字幕乱妇无码av在线 | 97精品人妻一区二区三区香蕉 | 久久久久免费看成人影片 | 成熟人妻av无码专区 | 特黄特色大片免费播放器图片 | 日韩精品一区二区av在线 | 亚洲欧美色中文字幕在线 | 国产suv精品一区二区五 | 欧美激情综合亚洲一二区 | 国产香蕉97碰碰久久人人 | 久久99精品久久久久久 | 国产成人精品无码播放 | 天天综合网天天综合色 | 九九在线中文字幕无码 | 国产99久久精品一区二区 | 久久久精品欧美一区二区免费 | 少妇无码吹潮 | 高潮喷水的毛片 | 精品国产福利一区二区 | 俺去俺来也www色官网 | 亚洲一区av无码专区在线观看 | 成人欧美一区二区三区黑人免费 | 天堂а√在线中文在线 | 日日麻批免费40分钟无码 | 精品日本一区二区三区在线观看 | 欧美第一黄网免费网站 | 草草网站影院白丝内射 | 亚洲日韩av一区二区三区四区 | 国产成人精品久久亚洲高清不卡 | 国产三级久久久精品麻豆三级 | 国产乱人伦av在线无码 | 亚洲日本在线电影 | 久久精品丝袜高跟鞋 | 无码人妻精品一区二区三区下载 | 中文字幕无线码免费人妻 | 国产精品亚洲lv粉色 | 国产特级毛片aaaaaaa高清 | 波多野结衣av一区二区全免费观看 | 桃花色综合影院 | 亚洲男女内射在线播放 | 国产精品久久久午夜夜伦鲁鲁 | 国产精品嫩草久久久久 | 秋霞成人午夜鲁丝一区二区三区 | 亚洲乱码国产乱码精品精 | 99久久婷婷国产综合精品青草免费 | 欧美变态另类xxxx | 免费网站看v片在线18禁无码 | 精品夜夜澡人妻无码av蜜桃 | 成年美女黄网站色大免费视频 | 青青青爽视频在线观看 | 对白脏话肉麻粗话av | 国产精品亚洲а∨无码播放麻豆 | 亚洲男人av天堂午夜在 | 国产精品久久国产三级国 | 国产精品成人av在线观看 | 又湿又紧又大又爽a视频国产 | 牲欲强的熟妇农村老妇女视频 | 国色天香社区在线视频 | 精品熟女少妇av免费观看 | 国产在热线精品视频 | 亚洲国产精品毛片av不卡在线 | 色情久久久av熟女人妻网站 | 久久久久久亚洲精品a片成人 | 日韩人妻系列无码专区 | 亚洲春色在线视频 | 女人被男人躁得好爽免费视频 | 少妇被黑人到高潮喷出白浆 | 亚洲人成人无码网www国产 | 日本高清一区免费中文视频 | 亚洲熟女一区二区三区 | 国产又粗又硬又大爽黄老大爷视 | 国产成人久久精品流白浆 | 国产极品美女高潮无套在线观看 | 色诱久久久久综合网ywww | 荫蒂被男人添的好舒服爽免费视频 | 婷婷五月综合激情中文字幕 | 久久国产自偷自偷免费一区调 | 丰满妇女强制高潮18xxxx | 欧美熟妇另类久久久久久多毛 | 精品久久久久久亚洲精品 | 高潮喷水的毛片 | 亚洲aⅴ无码成人网站国产app | 国产成人人人97超碰超爽8 | 欧美 日韩 人妻 高清 中文 | 久久精品女人天堂av免费观看 | 兔费看少妇性l交大片免费 | 成年美女黄网站色大免费全看 | 亚洲精品欧美二区三区中文字幕 | 无码国产乱人伦偷精品视频 | 亚洲小说图区综合在线 | av无码电影一区二区三区 | 亚洲a无码综合a国产av中文 | 久9re热视频这里只有精品 | 无码毛片视频一区二区本码 | 亚洲色偷偷偷综合网 | 学生妹亚洲一区二区 | 精品欧洲av无码一区二区三区 | 久久精品一区二区三区四区 | 2019午夜福利不卡片在线 | 成人无码精品一区二区三区 | 最近免费中文字幕中文高清百度 | 国产精品igao视频网 | 国产精品人妻一区二区三区四 | 人人妻在人人 | 97夜夜澡人人双人人人喊 | 成熟女人特级毛片www免费 | 永久免费观看国产裸体美女 | 国产九九九九九九九a片 | 日本乱偷人妻中文字幕 | 99er热精品视频 | 大地资源网第二页免费观看 | 中文字幕av日韩精品一区二区 | 最新国产麻豆aⅴ精品无码 | 漂亮人妻洗澡被公强 日日躁 | 亚洲 高清 成人 动漫 | 丰满人妻精品国产99aⅴ | 狠狠cao日日穞夜夜穞av | 给我免费的视频在线观看 | 色欲av亚洲一区无码少妇 | 国产成人无码av片在线观看不卡 | 色情久久久av熟女人妻网站 | 久久99精品久久久久婷婷 | 性史性农村dvd毛片 | 人人妻人人澡人人爽人人精品 | 久久久精品456亚洲影院 | 久久无码人妻影院 | 成人无码精品1区2区3区免费看 | 一本久道久久综合婷婷五月 | 男女下面进入的视频免费午夜 | 中文字幕日产无线码一区 | 中文字幕 人妻熟女 | 日日干夜夜干 | 国产在线精品一区二区高清不卡 | а√资源新版在线天堂 | 久久久久se色偷偷亚洲精品av | 国产精品怡红院永久免费 | 乱人伦人妻中文字幕无码久久网 | 久久久成人毛片无码 | 在线欧美精品一区二区三区 | 国产激情综合五月久久 | 国产香蕉尹人视频在线 | 国产成人午夜福利在线播放 | 无码帝国www无码专区色综合 | 欧美性生交xxxxx久久久 | 人妻夜夜爽天天爽三区 | 无遮挡啪啪摇乳动态图 | 极品尤物被啪到呻吟喷水 | 999久久久国产精品消防器材 | 少妇激情av一区二区 | 在线a亚洲视频播放在线观看 | 国产后入清纯学生妹 | 中文无码精品a∨在线观看不卡 | 丰满妇女强制高潮18xxxx | 夫妻免费无码v看片 | 欧美激情内射喷水高潮 | 欧洲欧美人成视频在线 | 一区二区三区乱码在线 | 欧洲 | 国产精品美女久久久久av爽李琼 | www成人国产高清内射 | 国产av一区二区精品久久凹凸 | 国产美女极度色诱视频www | 中文字幕无码免费久久9一区9 | 18禁黄网站男男禁片免费观看 | 成人影院yy111111在线观看 | 久久综合网欧美色妞网 | 国产精品亚洲五月天高清 | 蜜桃视频插满18在线观看 | 中文字幕无码av激情不卡 | 丰满护士巨好爽好大乳 | 欧美成人家庭影院 | 久久精品国产日本波多野结衣 | 国产女主播喷水视频在线观看 | 精品夜夜澡人妻无码av蜜桃 | 日韩精品无码一区二区中文字幕 | 性欧美熟妇videofreesex | 丰满岳乱妇在线观看中字无码 | 国产特级毛片aaaaaaa高清 | 国产特级毛片aaaaaa高潮流水 | 丰满人妻一区二区三区免费视频 | 中国女人内谢69xxxxxa片 | 呦交小u女精品视频 | 久久午夜无码鲁丝片午夜精品 | 日韩精品无码一本二本三本色 | 欧美日本精品一区二区三区 | 色一情一乱一伦一视频免费看 | 国产午夜手机精彩视频 | 无码人妻丰满熟妇区毛片18 | 国产性生交xxxxx无码 | 精品一区二区三区波多野结衣 | 日本熟妇大屁股人妻 | 久久97精品久久久久久久不卡 | 97色伦图片97综合影院 | 大肉大捧一进一出好爽视频 | 1000部夫妻午夜免费 | 国产艳妇av在线观看果冻传媒 | 精品久久综合1区2区3区激情 | 亚洲gv猛男gv无码男同 | 狠狠躁日日躁夜夜躁2020 | 免费看男女做好爽好硬视频 | 免费视频欧美无人区码 | 国产黑色丝袜在线播放 | 日韩精品a片一区二区三区妖精 | 欧美人与物videos另类 | 亚洲狠狠色丁香婷婷综合 | 亚洲综合色区中文字幕 | 欧美成人高清在线播放 | 国产女主播喷水视频在线观看 | 老司机亚洲精品影院无码 | 国产精品无码一区二区桃花视频 | 人妻少妇被猛烈进入中文字幕 | 久久精品中文字幕一区 | 国产麻豆精品精东影业av网站 | 久久亚洲国产成人精品性色 | 国产乱子伦视频在线播放 | 粗大的内捧猛烈进出视频 | 欧美xxxxx精品 | 欧美 日韩 人妻 高清 中文 | 色婷婷综合激情综在线播放 | 久久99精品国产麻豆 | 欧美老妇与禽交 | 欧洲精品码一区二区三区免费看 | 久久99精品久久久久婷婷 | 午夜精品久久久内射近拍高清 | 激情国产av做激情国产爱 |