4:49
      4:41
  
   315 ;    <!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>
  /   lm_JJh Ȯ2ok_5#y[fH     /* XPM */
static char * combobox_xpm[] = {
"50 40 4 1",
" 	s None	c None",
".	c black",
"X	c #FFFF80808080",
"o	c gray70",
"                                                  ",
"                                                  ",
"                                                  ",
"   ....................................  .......  ",
"   .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.  .  .  .  ",
"   .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.  .  .  .  ",
"   .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.  .  .  .  ",
"   .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.  .  .  .  ",
"   .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.  . ... .  ",
"   .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.  .  .  .  ",
"   .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.  .     .  ",
"   ....................................  .......  ",
"                                                  ",
"   .............................................  ",
"   .ooooooooooooooooooooooooooooooooooooo.ooooo.  ",
"   .ooooooooooooooooooooooooooooooooooooo.ooooo.  ",
"   .o...................................o.ooooo.  ",
"   .o...................................o.ooooo.  ",
"   .o...................................o.ooooo.  ",
"   .o...................................o.ooooo.  ",
"   .ooooooooooooooooooooooooooooooooooooo.ooooo.  ",
"   .ooooooooooooooooooooooooooooooooooooo.ooooo.  ",
"   .ooooooooooooooooooooooooooooooooooooo.ooooo.  ",
"   .ooooooooooooooooooooooooooooooooooooo.ooooo.  ",
"   .ooooooooooooooooooooooooooooooooooooo.ooooo.  ",
"   .ooooooooooooooooooooooooooooooooooooo.ooooo.  ",
"   .ooooooooooooooooooooooooooooooooooooo.ooooo.  ",
"   .ooooooooooooooooooooooooooooooooooooo.ooooo.  ",
"   .ooooooooooooooooooooooooooooooooooooo.ooooo.  ",
"   .ooooooooooooooooooooooooooooooooooooo.ooooo.  ",
"   .ooooooooooooooooooooooooooooooooooooo.ooooo.  ",
"   .ooooooooooooooooooooooooooooooooooooo.ooooo.  ",
"   .ooooooooooooooooooooooooooooooooooooo.ooooo.  ",
"   .ooooooooooooooooooooooooooooooooooooo.ooooo.  ",
"   .............................................  ",
"                                                  ",
"                                                  ",
"                                                  ",
"                                                  ",
"                                                  "};
     iA z    /*
 * 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.
 */


#ifndef ISC_RESULT_H
#define ISC_RESULT_H 1

/*! \file isc/result.h */

#include <isc/lang.h>
#include <isc/types.h>

#define ISC_R_SUCCESS			0	/*%< success */
#define ISC_R_NOMEMORY			1	/*%< out of memory */
#define ISC_R_TIMEDOUT			2	/*%< timed out */
#define ISC_R_NOTHREADS			3	/*%< no available threads */
#define ISC_R_ADDRNOTAVAIL		4	/*%< address not available */
#define ISC_R_ADDRINUSE			5	/*%< address in use */
#define ISC_R_NOPERM			6	/*%< permission denied */
#define ISC_R_NOCONN			7	/*%< no pending connections */
#define ISC_R_NETUNREACH		8	/*%< network unreachable */
#define ISC_R_HOSTUNREACH		9	/*%< host unreachable */
#define ISC_R_NETDOWN			10	/*%< network down */
#define ISC_R_HOSTDOWN			11	/*%< host down */
#define ISC_R_CONNREFUSED		12	/*%< connection refused */
#define ISC_R_NORESOURCES		13	/*%< not enough free resources */
#define ISC_R_EOF			14	/*%< end of file */
#define ISC_R_BOUND			15	/*%< socket already bound */
#define ISC_R_