File: //usr/lib/python3/dist-packages/urllib3/util/__pycache__/connection.cpython-310.pyc
o
��7e � @ s� d dl mZ d dlZd dlmZ ddlmZ d dlZddlm Z m
Z
dd � Zejddfd
d�Z
dd
� Zdd� Zdd� Zed�ZdS )� )�absolute_importN)�LocationParseError� )�_appengine_environ� )�NoWayToWaitForSocketError�
wait_for_readc C sH t | dd�}|du rdS |du rdS zt|dd�W S ty# Y dS w )a$
Returns True if the connection is dropped and should be closed.
:param conn:
:class:`http.client.HTTPConnection` object.
Note: For platforms like AppEngine, this will always return ``False`` to
let the platform handle connection recycling transparently for us.
�sockFNTg )�timeout)�getattrr r )�connr � r
�9/usr/lib/python3/dist-packages/urllib3/util/connection.py�is_connection_dropped s
�r c C s( | \}}|� d�r|�d�}d}t� }z|�d� W n ty- t�td| �d� Y S w t� |||tj
�D ]Q}|\} }
}}}
d}z't�| |
|�}t||� |tjurY|�
|� |r`|�|� |�|
� |W S tjy� } z|}|dur~|�� d}W Y d}~q7d}~ww |dur�|�t�d��)ak Connect to *address* and return the socket object.
Convenience function. Connect to *address* (a 2-tuple ``(host,
port)``) and return the socket object. Passing the optional
*timeout* parameter will set the timeout on the socket instance
before attempting to connect. If no *timeout* is supplied, the
global default timeout setting returned by :func:`socket.getdefaulttimeout`
is used. If *source_address* is set it must be a tuple of (host, port)
for the socket to bind as a source address before making the connection.
An host of '' or port 0 tells the OS to use the default.
�[z[]N�idnaz'%s', label empty or too longz!getaddrinfo returns an empty list)�
startswith�strip�allowed_gai_family�encode�UnicodeError�six�
raise_fromr �socket�getaddrinfo�SOCK_STREAM�_set_socket_options�_GLOBAL_DEFAULT_TIMEOUT�
settimeout�bind�connect�error�close)�addressr
�source_address�socket_options�host�port�err�family�res�af�socktype�proto� canonname�sar �er
r
r �create_connection&