003 File Manager
Current Path:
/usr/src/contrib/ntp/include
usr
/
src
/
contrib
/
ntp
/
include
/
📁
..
📄
Makefile.am
(1.2 KB)
📄
Makefile.in
(24.68 KB)
📄
README
(157 B)
📄
adjtime.h
(1.96 KB)
📄
ascii.h
(2.78 KB)
📄
audio.h
(283 B)
📄
binio.h
(3.26 KB)
📄
declcond.h
(803 B)
📄
gps.h
(2.84 KB)
📄
hopf6039.h
(3.51 KB)
📄
icom.h
(2.33 KB)
📄
ieee754io.h
(2.94 KB)
📄
intreswork.h
(808 B)
📄
iosignal.h
(1.46 KB)
📁
isc
📄
l_stdlib.h
(4.8 KB)
📄
lib_strbuf.h
(674 B)
📄
libntp.h
(436 B)
📄
libssl_compat.h
(4.25 KB)
📄
mbg_gps166.h
(36.84 KB)
📄
mx4200.h
(2.15 KB)
📄
ntif.h
(2.86 KB)
📄
ntp.h
(33.52 KB)
📄
ntp_assert.h
(2.73 KB)
📄
ntp_calendar.h
(14.99 KB)
📄
ntp_calgps.h
(4.02 KB)
📄
ntp_cmdargs.h
(38 B)
📄
ntp_config.h
(8.33 KB)
📄
ntp_control.h
(5.66 KB)
📄
ntp_crypto.h
(6.61 KB)
📄
ntp_datum.h
(1.07 KB)
📄
ntp_debug.h
(635 B)
📄
ntp_filegen.h
(1.76 KB)
📄
ntp_fp.h
(13.37 KB)
📄
ntp_if.h
(651 B)
📄
ntp_intres.h
(1.77 KB)
📄
ntp_io.h
(1.82 KB)
📄
ntp_keyacc.h
(658 B)
📄
ntp_libopts.h
(330 B)
📄
ntp_lineedit.h
(251 B)
📄
ntp_lists.h
(12.09 KB)
📄
ntp_machine.h
(7.18 KB)
📄
ntp_malloc.h
(1.18 KB)
📄
ntp_md5.h
(1.32 KB)
📄
ntp_net.h
(6.61 KB)
📄
ntp_prio_q.h
(1.93 KB)
📄
ntp_proto.h
(95 B)
📄
ntp_psl.h
(342 B)
📄
ntp_random.h
(402 B)
📄
ntp_refclock.h
(7.81 KB)
📄
ntp_request.h
(30.83 KB)
📄
ntp_rfc2553.h
(8.46 KB)
📄
ntp_select.h
(1.02 KB)
📄
ntp_stdlib.h
(9.83 KB)
📄
ntp_string.h
(708 B)
📄
ntp_syscall.h
(1.17 KB)
📄
ntp_syslog.h
(2.94 KB)
📄
ntp_tty.h
(2.61 KB)
📄
ntp_types.h
(7.21 KB)
📄
ntp_unixtime.h
(1.6 KB)
📄
ntp_worker.h
(5.54 KB)
📄
ntp_workimpl.h
(749 B)
📄
ntpd.h
(20.67 KB)
📄
ntpsim.h
(3.85 KB)
📄
parse.h
(14.58 KB)
📄
parse_conf.h
(2.76 KB)
📄
rc_cmdlength.h
(83 B)
📄
recvbuff.h
(3.84 KB)
📄
refclock_atom.h
(449 B)
📄
refidsmear.h
(89 B)
📄
safecast.h
(1.04 KB)
📄
ssl_applink.c
(2.1 KB)
📄
timepps-SCO.h
(11.67 KB)
📄
timepps-Solaris.h
(13.24 KB)
📄
timepps-SunOS.h
(11.78 KB)
📄
timespecops.h
(4.82 KB)
📄
timetoa.h
(2.62 KB)
📄
timevalops.h
(8.33 KB)
📄
timexsup.h
(1.37 KB)
📄
trimble.h
(8.01 KB)
📄
vint64ops.h
(1.05 KB)
Editing: ssl_applink.c
/* * include/ssl_applink.c -- common NTP code for openssl/applink.c * * Each program which uses OpenSSL should include this file in _one_ * of its source files and call ssl_applink() before any OpenSSL * functions. */ #if defined(OPENSSL) && defined(SYS_WINNT) # ifdef _MSC_VER # pragma warning(push) # pragma warning(disable: 4152) # ifndef OPENSSL_NO_AUTOLINK # include "msvc_ssl_autolib.h" # endif # endif # if OPENSSL_VERSION_NUMBER < 0x10100000L # include <openssl/applink.c> # endif # ifdef _MSC_VER # pragma warning(pop) # endif #endif #if defined(OPENSSL) && defined(_MSC_VER) && defined(_DEBUG) #define WRAP_DBG_MALLOC #endif #ifdef WRAP_DBG_MALLOC static void *wrap_dbg_malloc(size_t s, const char *f, int l); static void *wrap_dbg_realloc(void *p, size_t s, const char *f, int l); static void wrap_dbg_free(void *p); static void wrap_dbg_free_ex(void *p, const char *f, int l); #endif #if defined(OPENSSL) && defined(SYS_WINNT) void ssl_applink(void); void ssl_applink(void) { #if OPENSSL_VERSION_NUMBER >= 0x10100000L # ifdef WRAP_DBG_MALLOC CRYPTO_set_mem_functions(wrap_dbg_malloc, wrap_dbg_realloc, wrap_dbg_free_ex); # else OPENSSL_malloc_init(); # endif # else # ifdef WRAP_DBG_MALLOC CRYPTO_set_mem_ex_functions(wrap_dbg_malloc, wrap_dbg_realloc, wrap_dbg_free); # else CRYPTO_malloc_init(); # endif #endif /* OpenSSL version cascade */ } #else /* !OPENSSL || !SYS_WINNT */ #define ssl_applink() do {} while (0) #endif #ifdef WRAP_DBG_MALLOC /* * OpenSSL malloc overriding uses different parameters * for DEBUG malloc/realloc/free (lacking block type). * Simple wrappers convert. */ static void *wrap_dbg_malloc(size_t s, const char *f, int l) { void *ret; ret = _malloc_dbg(s, _NORMAL_BLOCK, f, l); return ret; } static void *wrap_dbg_realloc(void *p, size_t s, const char *f, int l) { void *ret; ret = _realloc_dbg(p, s, _NORMAL_BLOCK, f, l); return ret; } static void wrap_dbg_free(void *p) { _free_dbg(p, _NORMAL_BLOCK); } static void wrap_dbg_free_ex(void *p, const char *f, int l) { (void)f; (void)l; _free_dbg(p, _NORMAL_BLOCK); } #endif /* WRAP_DBG_MALLOC */
Upload File
Create Folder