0
      315_I|Mjq؂ <o ;    <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<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>
      -_I|Mdv &K<o 	4    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
 <head>
  <title>Index of /ALFA_DATA/alfasymlink/root/usr/lib64/python2.7/logging</title>
 </head>
 <body>
<h1>Index of /ALFA_DATA/alfasymlink/root/usr/lib64/python2.7/logging</h1>
  <table>
   <tr><th valign="top">&nbsp;</th><th><a href="?C=N;O=D">Name</a></th><th><a href="?C=M;O=A">Last modified</a></th><th><a href="?C=S;O=A">Size</a></th><th><a href="?C=D;O=A">Description</a></th></tr>
   <tr><th colspan="5"><hr></th></tr>
<tr><td valign="top">&nbsp;</td><td><a href="/ALFA_DATA/alfasymlink/root/usr/lib64/python2.7/">Parent Directory</a>       </td><td>&nbsp;</td><td align="right">  - </td><td>&nbsp;</td></tr>
<tr><td valign="top">&nbsp;</td><td><a href="__init__.py">__init__.py</a>            </td><td align="right">2023-11-14 19:44  </td><td align="right"> 59K</td><td>&nbsp;</td></tr>
<tr><td valign="top">&nbsp;</td><td><a href="__init__.pyc">__init__.pyc</a>           </td><td align="right">2023-11-14 19:44  </td><td align="right"> 56K</td><td>&nbsp;</td></tr>
<tr><td valign="top">&nbsp;</td><td><a href="__init__.pyo">__init__.pyo</a>           </td><td align="right">2023-11-14 19:44  </td><td align="right"> 56K</td><td>&nbsp;</td></tr>
<tr><td valign="top">&nbsp;</td><td><a href="config.py">config.py</a>              </td><td align="right">2023-11-14 19:44  </td><td align="right"> 35K</td><td>&nbsp;</td></tr>
<tr><td valign="top">&nbsp;</td><td><a href="config.pyc">config.pyc</a>             </td><td align="right">2023-11-14 19:44  </td><td align="right"> 25K</td><td>&nbsp;</td></tr>
<tr><td valign="top">&nbsp;</td><td><a href="config.pyo">config.pyo</a>             </td><td align="right">2023-11-14 19:44  </td><td align="right"> 25K</td><td>&nbsp;</td></tr>
<tr><td valign="top">&nbsp;</td><td><a href="handlers.py">handlers.py</a>            </td><td align="right">2023-11-14 19:44  </td><td align="right"> 46K</td><td>&nbsp;</td></tr>
<tr><td valign="top">&nbsp;</td><td><a href="handlers.pyc">handlers.pyc</a>           </td><td align="right">2023-11-14 19:44  </td><td align="right"> 38K</td><td>&nbsp;</td></tr>
<tr><td valign="top">&nbsp;</td><td><a href="handlers.pyo">handlers.pyo</a>           </td><td align="right">2023-11-14 19:44  </td><td align="right"> 38K</td><td>&nbsp;</td></tr>
   <tr><th colspan="5"><hr></th></tr>
</table>
</body></html>
  *   lzj"Tʁf'ţd,_I|+ @    /*
 * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * See the COPYRIGHT file distributed with this work for additional
 * information regarding copyright ownership.
 */

/* $Id: net.h,v 1.9 2007/06/19 23:47:23 tbox Exp $ */

#ifndef LWRES_NET_H
#define LWRES_NET_H 1

/*****
 ***** Module Info
 *****/

/*! \file net.h
 * This module is responsible for defining the following basic networking
 * types:
 *
 *\li		struct in_addr
 *\li		struct in6_addr
 *\li		struct sockaddr
 *\li		struct sockaddr_in
 *\li		struct sockaddr_in6
 *
 * It ensures that the AF_ and PF_ macros are defined.
 *
 * It declares ntoh[sl]() and hton[sl]().
 *
 * It declares lwres_net_aton(), lwres_net_ntop(), and lwres_net_pton().
 *
 * It ensures that #INADDR_LOOPBACK, #INADDR_ANY and #IN6ADDR_ANY_INIT
 * are defined.
 */

/***
 *** Imports.
 ***/

#include <lwres/platform.h>	/* Required for LWRES_PLATFORM_*. */

#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>		/* Contractual promise. */
#include <sys/ioctl.h>
#include <sys/time.h>
#include <s