GRAYBYTE WORDPRESS FILE MANAGER4644

Server IP : 68.65.123.43 / Your IP : 216.73.216.162
System : Linux server266.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
PHP Version : 8.0.30
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /usr/include/bind9/isc/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /usr/include/bind9/isc//app.h
/*
 * 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 https://mozilla.org/MPL/2.0/.
 *
 * See the COPYRIGHT file distributed with this work for additional
 * information regarding copyright ownership.
 */


#ifndef ISC_APP_H
#define ISC_APP_H 1

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

/*! \file isc/app.h
 * \brief ISC Application Support
 *
 * Dealing with program termination can be difficult, especially in a
 * multithreaded program.  The routines in this module help coordinate
 * the shutdown process.  They are used as follows by the initial (main)
 * thread of the application:
 *
 *\li		isc_app_start();	Call very early in main(), before
 *					any other threads have been created.
 *
 *\li		isc_app_run();		This will post any on-run events,
 *					and then block until application
 *					shutdown is requested.  A shutdown
 *					request is made by calling
 *					isc_app_shutdown(), or by sending
 *					SIGINT or SIGTERM to the process.
 *					After isc_app_run() returns, the
 *					application should shutdown itself.
 *
 *\li		isc_app_finish();	Call very late in main().
 *
 * Applications that want to use SIGHUP/isc_app_reload() to trigger reloading
 * should check the result of isc_app_run() and call the reload routine if
 * the result is ISC_R_RELOAD.  They should then call isc_app_run() again
 * to resume waiting for reload or termination.
 *
 * Use of this module is not required.  In particular, isc_app_start() is
 * NOT an ISC library initialization routine.
 *
 * This module also supports per-thread 'application contexts'.  With this
 * mode, a thread-based application will have a separate context, in which
 * it uses other ISC library services such as tasks or timers.  Signals are
 * not caught in this mode, so that the application can handle the signals
 * in its preferred way.
 *
 * \li MP:
 *	Clients must ensure that isc_app_start(), isc_app_run(), and
 *	isc_app_finish() are called at most once.  isc_app_shutdown()
 *	is safe to use by any thread (provided isc_app_start() has been
 *	called previously).
 *
 *	The same note applies to isc_app_ctxXXX() functions, but in this case
 *	it's a per-thread restriction.  For example, a thread with an
 *	application context must ensure that isc_app_ctxstart() with the
 *	context is called at most once.
 *
 * \li Reliability:
 *	No anticipated impact.
 *
 * \li Resources:
 *	None.
 *
 * \li Security:
 *	No anticipated impact.
 *
 * \li Standards:
 *	None.
 */

#include <stdbool.h>

#include <isc/eventclass.h>
#include <isc/lang.h>
#include <isc/magic.h>
#include <isc/result.h>

/***
 *** Types
 ***/

typedef isc_event_t isc_appevent_t;

#define ISC_APPEVENT_FIRSTEVENT		(ISC_EVENTCLASS_APP + 0)
#define ISC_APPEVENT_SHUTDOWN		(ISC_EVENTCLASS_APP + 1)
#define ISC_APPEVENT_LASTEVENT		(ISC_EVENTCLASS_APP + 65535)

/*%
 * app module methods.  Only app driver implementations use this structure.
 * Other clients should use the top-level interfaces (i.e., isc_app_xxx
 * functions).  magic must be ISCAPI_APPMETHODS_MAGIC.
 */
typedef struct isc_appmethods {
	void		(*ctxdestroy)(isc_appctx_t **ctxp);
	isc_result_t	(*ctxstart)(isc_appctx_t *ctx);
	isc_result_t	(*ctxrun)(isc_appctx_t *ctx);
	isc_result_t	(*ctxsuspend)(isc_appctx_t *ctx);
	isc_result_t	(*ctxshutdown)(isc_appctx_t *ctx);
	void		(*ctxfinish)(isc_appctx_t *ctx);
	void		(*settaskmgr)(isc_appctx_t *ctx,
				      isc_taskmgr_t *timermgr);
	void		(*setsocketmgr)(isc_appctx_t *ctx,
					isc_socketmgr_t *timermgr);
	void		(*settimermgr)(isc_appctx_t *ctx,
				       isc_timermgr_t *timermgr);
	isc_result_t 	(*ctxonrun)(isc_appctx_t *ctx, isc_mem_t *mctx,
				    isc_task_t *task, isc_taskaction_t action,
				    void *arg);
} isc_appmethods_t;

/*%
 * This structure is actually just the common prefix of an application context
 * implementation's version of an isc_appctx_t.
 * \brief
 * Direct use of this structure by clients is forbidden.  app implementations
 * may change the structure.  'magic' must be ISCAPI_APPCTX_MAGIC for any
 * of the isc_app_ routines to work.  app implementations must maintain
 * all app context invariants.
 */
struct isc_appctx {
	unsigned int		impmagic;
	unsigned int		magic;
	isc_appmethods_t	*methods;
};

#define ISCAPI_APPCTX_MAGIC		ISC_MAGIC('A','a','p','c')
#define ISCAPI_APPCTX_VALID(c)		((c) != NULL && \
					 (c)->magic == ISCAPI_APPCTX_MAGIC)

ISC_LANG_BEGINDECLS

isc_result_t
isc_app_ctxstart(isc_appctx_t *ctx);

isc_result_t
isc_app_start(void);
/*!<
 * \brief Start an ISC library application.
 *
 * Notes:
 *	This call should be made before any other ISC library call, and as
 *	close to the beginning of the application as possible.
 *
 * Requires:
 *\li	'ctx' is a valid application context (for app_ctxstart()).
 */

isc_result_t
isc_app_ctxonrun(isc_appctx_t *ctx, isc_mem_t *mctx, isc_task_t *task,
		 isc_taskaction_t action, void *arg);
isc_result_t
isc_app_onrun(isc_mem_t *mctx, isc_task_t *task, isc_taskaction_t action,
	      void *arg);
/*!<
 * \brief Request delivery of an event when the application is run.
 *
 * Requires:
 *\li	isc_app_start() has been called.
 *\li	'ctx' is a valid application context (for app_ctxonrun()).
 *
 * Returns:
 *	ISC_R_SUCCESS
 *	ISC_R_NOMEMORY
 */

isc_result_t
isc_app_ctxrun(isc_appctx_t *ctx);

isc_result_t
isc_app_run(void);
/*!<
 * \brief Run an ISC library application.
 *
 * Notes:
 *\li	The caller (typically the initial thread of an application) will
 *	block until shutdown is requested.  When the call returns, the
 *	caller should start shutting down the application.
 *
 * Requires:
 *\li	isc_app_[ctx]start() has been called.
 *
 * Ensures:
 *\li	Any events requested via isc_app_onrun() will have been posted (in
 *	FIFO order) before isc_app_run() blocks.
 *\li	'ctx' is a valid application context (for app_ctxrun()).
 *
 * Returns:
 *\li	ISC_R_SUCCESS			Shutdown has been requested.
 *\li	ISC_R_RELOAD			Reload has been requested.
 */

bool
isc_app_isrunning(void);
/*!<
 * \brief Return if the ISC library application is running.
 *
 * Returns:
 *\li	true    App is running.
 *\li	false   App is not running.
 */

isc_result_t
isc_app_ctxshutdown(isc_appctx_t *ctx);

isc_result_t
isc_app_shutdown(void);
/*!<
 * \brief Request application shutdown.
 *
 * Notes:
 *\li	It is safe to call isc_app_shutdown() multiple times.  Shutdown will
 *	only be triggered once.
 *
 * Requires:
 *\li	isc_app_[ctx]run() has been called.
 *\li	'ctx' is a valid application context (for app_ctxshutdown()).
 *
 * Returns:
 *\li	ISC_R_SUCCESS
 *\li	ISC_R_UNEXPECTED
 */

isc_result_t
isc_app_ctxsuspend(isc_appctx_t *ctx);
/*!<
 * \brief This has the same behavior as isc_app_ctxsuspend().
 */

isc_result_t
isc_app_reload(void);
/*!<
 * \brief Request application reload.
 *
 * Requires:
 *\li	isc_app_run() has been called.
 *
 * Returns:
 *\li	ISC_R_SUCCESS
 *\li	ISC_R_UNEXPECTED
 */

void
isc_app_ctxfinish(isc_appctx_t *ctx);

void
isc_app_finish(void);
/*!<
 * \brief Finish an ISC library application.
 *
 * Notes:
 *\li	This call should be made at or near the end of main().
 *
 * Requires:
 *\li	isc_app_start() has been called.
 *\li	'ctx' is a valid application context (for app_ctxfinish()).
 *
 * Ensures:
 *\li	Any resources allocated by isc_app_start() have been released.
 */

void
isc_app_block(void);
/*!<
 * \brief Indicate that a blocking operation will be performed.
 *
 * Notes:
 *\li	If a blocking operation is in process, a call to isc_app_shutdown()
 *	or an external signal will abort the program, rather than allowing
 *	clean shutdown.  This is primarily useful for reading user input.
 *
 * Requires:
 * \li	isc_app_start() has been called.
 * \li	No other blocking operations are in progress.
 */

void
isc_app_unblock(void);
/*!<
 * \brief Indicate that a blocking operation is complete.
 *
 * Notes:
 * \li	When a blocking operation has completed, return the program to a
 * 	state where a call to isc_app_shutdown() or an external signal will
 * 	shutdown normally.
 *
 * Requires:
 * \li	isc_app_start() has been called.
 * \li	isc_app_block() has been called by the same thread.
 */

isc_result_t
isc_appctx_create(isc_mem_t *mctx, isc_appctx_t **ctxp);
/*!<
 * \brief Create an application context.
 *
 * Requires:
 *\li	'mctx' is a valid memory context.
 *\li	'ctxp' != NULL && *ctxp == NULL.
 */

void
isc_appctx_destroy(isc_appctx_t **ctxp);
/*!<
 * \brief Destroy an application context.
 *
 * Requires:
 *\li	'*ctxp' is a valid application context.
 *
 * Ensures:
 *\li	*ctxp == NULL.
 */

void
isc_appctx_settaskmgr(isc_appctx_t *ctx, isc_taskmgr_t *taskmgr);
/*!<
 * \brief Associate a task manager with an application context.
 *
 * This must be done before running tasks within the application context.
 *
 * Requires:
 *\li	'ctx' is a valid application context.
 *\li	'taskmgr' is a valid task manager.
 */

void
isc_appctx_setsocketmgr(isc_appctx_t *ctx, isc_socketmgr_t *socketmgr);
/*!<
 * \brief Associate a socket manager with an application context.
 *
 * This must be done before handling socket events within the application
 * context.
 *
 * Requires:
 *\li	'ctx' is a valid application context.
 *\li	'socketmgr' is a valid socket manager.
 */

void
isc_appctx_settimermgr(isc_appctx_t *ctx, isc_timermgr_t *timermgr);
/*!<
 * \brief Associate a socket timer with an application context.
 *
 * This must be done before handling timer events within the application
 * context.
 *
 * Requires:
 *\li	'ctx' is a valid application context.
 *\li	'timermgr' is a valid timer manager.
 */

/*%<
 * See isc_appctx_create() above.
 */
typedef isc_result_t
(*isc_appctxcreatefunc_t)(isc_mem_t *mctx, isc_appctx_t **ctxp);

isc_result_t
isc_app_register(isc_appctxcreatefunc_t createfunc);
/*%<
 * Register a new application implementation and add it to the list of
 * supported implementations.  This function must be called when a different
 * event library is used than the one contained in the ISC library.
 */

isc_result_t
isc__app_register(void);
/*%<
 * A short cut function that specifies the application module in the ISC
 * library for isc_app_register().  An application that uses the ISC library
 * usually do not have to care about this function: it would call
 * isc_lib_register(), which internally calls this function.
 */

ISC_LANG_ENDDECLS

#endif /* ISC_APP_H */

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
February 21 2025 04:13:15
root / root
0755
aes.h
1.055 KB
February 20 2025 09:05:24
root / root
0644
app.h
10.232 KB
February 20 2025 09:05:24
root / root
0644
assertions.h
2.839 KB
February 20 2025 09:05:24
root / root
0644
atomic.h
4.07 KB
February 20 2025 09:05:24
root / root
0644
backtrace.h
3.8 KB
February 20 2025 09:05:24
root / root
0644
base32.h
4.349 KB
February 20 2025 09:05:24
root / root
0644
base64.h
2.799 KB
February 20 2025 09:05:24
root / root
0644
bind9.h
0.811 KB
February 20 2025 09:05:24
root / root
0644
boolean.h
0.58 KB
February 20 2025 09:05:24
root / root
0644
buffer.h
25.652 KB
February 20 2025 09:05:24
root / root
0644
bufferlist.h
1.418 KB
February 20 2025 09:05:24
root / root
0644
cmocka.h
1.351 KB
February 20 2025 09:05:24
root / root
0644
commandline.h
1.673 KB
February 20 2025 09:05:24
root / root
0644
condition.h
1.443 KB
February 20 2025 09:05:24
root / root
0644
counter.h
1.881 KB
February 20 2025 09:05:24
root / root
0644
crc64.h
0.975 KB
February 20 2025 09:05:24
root / root
0644
deprecated.h
0.608 KB
February 20 2025 09:05:24
root / root
0644
dir.h
1.561 KB
February 20 2025 09:05:24
root / root
0644
endian.h
4.666 KB
February 20 2025 09:05:24
root / root
0644
entropy.h
10.13 KB
February 20 2025 09:05:24
root / root
0644
errno.h
0.644 KB
February 20 2025 09:05:24
root / root
0644
errno2result.h
0.881 KB
February 20 2025 09:05:37
root / root
0644
error.h
1.396 KB
February 20 2025 09:05:24
root / root
0644
event.h
2.981 KB
February 20 2025 09:05:24
root / root
0644
eventclass.h
1.349 KB
February 20 2025 09:05:24
root / root
0644
file.h
11.394 KB
February 20 2025 09:05:24
root / root
0644
formatcheck.h
0.872 KB
February 20 2025 09:05:24
root / root
0644
fsaccess.h
7.268 KB
February 20 2025 09:05:24
root / root
0644
hash.h
7.482 KB
February 20 2025 09:05:24
root / root
0644
heap.h
5.141 KB
February 20 2025 09:05:24
root / root
0644
hex.h
2.74 KB
February 20 2025 09:05:24
root / root
0644
hmacmd5.h
1.745 KB
February 20 2025 09:05:24
root / root
0644
hmacsha.h
4.405 KB
February 20 2025 09:05:24
root / root
0644
ht.h
4.293 KB
February 20 2025 09:05:24
root / root
0644
httpd.h
2.264 KB
February 20 2025 09:05:24
root / root
0644
int.h
1.063 KB
February 20 2025 09:05:24
root / root
0644
interfaceiter.h
3.047 KB
February 20 2025 09:05:24
root / root
0644
iterated_hash.h
1.021 KB
February 20 2025 09:05:24
root / root
0644
json.h
1.425 KB
February 20 2025 09:05:24
root / root
0644
keyboard.h
0.966 KB
February 20 2025 09:05:24
root / root
0644
lang.h
0.622 KB
February 20 2025 09:05:24
root / root
0644
lex.h
9.542 KB
February 20 2025 09:05:24
root / root
0644
lfsr.h
2.889 KB
February 20 2025 09:05:24
root / root
0644
lib.h
1.043 KB
February 20 2025 09:05:24
root / root
0644
likely.h
0.799 KB
February 20 2025 09:05:24
root / root
0644
list.h
5.616 KB
February 20 2025 09:05:24
root / root
0644
log.h
28.061 KB
February 20 2025 09:05:24
root / root
0644
magic.h
0.971 KB
February 20 2025 09:05:24
root / root
0644
md5.h
2.324 KB
February 20 2025 09:05:24
root / root
0644
mem.h
20.615 KB
February 20 2025 09:05:24
root / root
0644
meminfo.h
0.693 KB
February 20 2025 09:05:24
root / root
0644
msgcat.h
2.662 KB
February 20 2025 09:05:24
root / root
0644
msgs.h
8.225 KB
February 20 2025 09:05:24
root / root
0644
mutex.h
3.441 KB
February 20 2025 09:05:24
root / root
0644
mutexblock.h
1.343 KB
February 20 2025 09:05:24
root / root
0644
net.h
10.287 KB
February 20 2025 09:05:24
root / root
0644
netaddr.h
4.482 KB
February 20 2025 09:05:24
root / root
0644
netdb.h
0.843 KB
February 20 2025 09:05:24
root / root
0644
netscope.h
0.944 KB
February 20 2025 09:05:24
root / root
0644
offset.h
0.684 KB
February 20 2025 09:05:24
root / root
0644
once.h
0.96 KB
February 20 2025 09:05:24
root / root
0644
ondestroy.h
2.733 KB
February 20 2025 09:05:24
root / root
0644
os.h
0.655 KB
February 20 2025 09:05:24
root / root
0644
parseint.h
1.506 KB
February 20 2025 09:05:24
root / root
0644
platform.h
9.489 KB
February 20 2025 09:05:24
root / root
0644
pool.h
3.42 KB
February 20 2025 09:05:24
root / root
0644
portset.h
3.218 KB
February 20 2025 09:05:24
root / root
0644
print.h
2.417 KB
February 20 2025 09:05:24
root / root
0644
queue.h
5.082 KB
February 20 2025 09:05:24
root / root
0644
quota.h
2.383 KB
February 20 2025 09:05:24
root / root
0644
radix.h
6.339 KB
February 20 2025 09:05:24
root / root
0644
random.h
3.498 KB
February 20 2025 09:05:24
root / root
0644
ratelimiter.h
3.415 KB
February 20 2025 09:05:24
root / root
0644
refcount.h
8.001 KB
February 20 2025 09:05:24
root / root
0644
regex.h
0.749 KB
February 20 2025 09:05:24
root / root
0644
region.h
1.986 KB
February 20 2025 09:05:24
root / root
0644
resource.h
2.795 KB
February 20 2025 09:05:24
root / root
0644
result.h
4.865 KB
February 20 2025 09:05:24
root / root
0644
resultclass.h
1.562 KB
February 20 2025 09:05:24
root / root
0644
rwlock.h
3.718 KB
February 20 2025 09:05:24
root / root
0644
safe.h
1.32 KB
February 20 2025 09:05:24
root / root
0644
serial.h
1.336 KB
February 20 2025 09:05:24
root / root
0644
sha1.h
1.52 KB
February 20 2025 09:05:24
root / root
0644
sha2.h
5.599 KB
February 20 2025 09:05:24
root / root
0644
siphash.h
0.717 KB
February 20 2025 09:05:24
root / root
0644
sockaddr.h
5.897 KB
February 20 2025 09:05:24
root / root
0644
socket.h
35.796 KB
February 20 2025 09:05:24
root / root
0644
stat.h
0.787 KB
February 20 2025 09:05:24
root / root
0644
stats.h
3.622 KB
February 20 2025 09:05:24
root / root
0644
stdatomic.h
5.127 KB
February 20 2025 09:05:24
root / root
0644
stdio.h
1.745 KB
February 20 2025 09:05:24
root / root
0644
stdlib.h
0.688 KB
February 20 2025 09:05:24
root / root
0644
stdtime.h
1.04 KB
February 20 2025 09:05:24
root / root
0644
strerror.h
0.759 KB
February 20 2025 09:05:24
root / root
0644
string.h
5.878 KB
February 20 2025 09:05:24
root / root
0644
symtab.h
4.225 KB
February 20 2025 09:05:24
root / root
0644
syslog.h
0.824 KB
February 20 2025 09:05:24
root / root
0644
task.h
21.039 KB
February 20 2025 09:05:24
root / root
0644
taskpool.h
3.622 KB
February 20 2025 09:05:24
root / root
0644
thread.h
1.471 KB
February 20 2025 09:05:24
root / root
0644
time.h
8.668 KB
February 20 2025 09:05:24
root / root
0644
timer.h
10.542 KB
February 20 2025 09:05:24
root / root
0644
tm.h
0.874 KB
February 20 2025 09:05:24
root / root
0644
types.h
5.645 KB
February 20 2025 09:05:24
root / root
0644
utf8.h
0.906 KB
February 20 2025 09:05:24
root / root
0644
util.h
10.29 KB
February 20 2025 09:05:24
root / root
0644
version.h
0.673 KB
February 20 2025 09:05:24
root / root
0644
xml.h
1.068 KB
February 20 2025 09:05:24
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF