0
      l4(mJq@q6꘴o0      355_I|Mjq؂ <o c    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>
  "   l=J*e8n	1hh      disabled
  	   	0     H403358 f    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<title>403 Forbidden</title>
</head><body>
<h1>Forbidden</h1>
<p>You don't have permission to access this resource.</p>
<p>Additionally, a 403 Forbidden
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>
  "   lY>C]
f!Tţs P    
c`c           @   s2  d  Z  d Z d e  Z e d Z e d Z e d Z e d Z e d Z e d Z e d Z	 e d	 Z
 e d Z e d Z e d Z e d
 Z d e  Z e d Z e d Z e d Z e d Z e d Z e d Z d e  Z e d Z e d Z e d Z e d Z e d Z e d Z e d Z e d Z d S(   i   i   s   org.fedoraproject.FirewallD%ds   .zones   .directs	   .policiess   .ipsets   .configs   .services	   .icmptypes   .helpers   /org/fedoraproject/FirewallD%ds   /configs   /config/icmptypes   /config/services   /config/zones   /config/ipsets   /config/helpers   .infos   .allN(   t   DBUS_INTERFACE_VERSIONt   DBUS_INTERFACE_REVISIONt   DBUS_INTERFACEt   DBUS_INTERFACE_ZONEt   DBUS_INTERFACE_DIRECTt   DBUS_INTERFACE_POLICIESt   DBUS_INTERFACE_IPSETt   DBUS_INTERFACE_CONFIGt   DBUS_INTERFACE_CONFIG_ZONEt   DBUS_INTERFACE_CONFIG_SERVICEt   DBUS_INTERFACE_CONFIG_ICMPTYPEt   DBUS_INTERFACE_CONFIG_POLICIESt   DBUS_INTERFACE_CONFIG_DIRECTt   DBUS_INTERFACE_CONFIG_IPSETt   DBUS_INTERFACE_CONFIG_HELPERt	   DBUS_PATHt   DBUS_PATH_CONFIGt   DBUS_PATH_CONFIG_ICMPTYPEt   DBUS_PATH_CONFIG_SERVICEt   DBUS_PATH_CONFIG_ZONEt   DBUS_PATH_CONFIG_IPSETt   DBUS_PATH_CONFIG_HELPERt
   _PK_ACTIONt   PK_ACTION_POLICIESt   PK_ACTION_POLICIES_INFOt   PK_ACTION_CONFIGt   PK_ACTION_CONFIG_INFOt   PK_ACTION_DIRECTt   PK_ACTION_DIRECT_INFOt   PK_ACTION_INFOt   PK_ACTION_ALL(    (    (    s8   /usr/lib/python2.7/site-packages/firewall/config/dbus.pyt   <module>   s<   



























  "   lY>ja,jmA3p/\m1hdO     import socket
try:
    from select import poll, POLLIN
except ImportError:  # `poll` doesn't exist on OSX and other platforms
    poll = False
    try:
        from select import select
    except ImportError:  # `select` doesn't exist on AppEngine.
        select = False


def is_connection_dropped(conn):  # Platform-specific
    """
    Returns True if the connection is dropped and should be closed.

    :param conn:
        :class:`httplib.HTTPConnection` object.

    Note: For platforms like AppEngine, this will always return ``False`` to
    let the platform handle connection recycling transparently for us.
    """
    sock = getattr(conn, 'sock', False)
    if sock is False:  # Platform-specific: AppEngine
        return False
    if sock is None:  # Connection already closed (such as by httplib).
        return True

    if not poll:
        if not select:  # Platform-specific: AppEngine
            return False

        try:
            return select([sock], [], [], 0.0)[0]
        except socket.error:
            return True

    # This version is better on platforms that support it.
    p = poll()
    p.register(sock, POLLIN)
    for (fno, ev) in p.poll(0.0):
        if fno == sock.fileno():
            # Either data is buffered (bad), or the connection is dropped.
            return True


# This function is copied from socket.py in the Python 2.7 standard
# library test suite. Added to its signature is only `socket_options`