1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/media/mtransport/third_party/nrappkit/src/util/util.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,73 @@ 1.4 +/** 1.5 + util.h 1.6 + 1.7 + 1.8 + Copyright (C) 2001-2003, Network Resonance, Inc. 1.9 + Copyright (C) 2006, Network Resonance, Inc. 1.10 + All Rights Reserved 1.11 + 1.12 + Redistribution and use in source and binary forms, with or without 1.13 + modification, are permitted provided that the following conditions 1.14 + are met: 1.15 + 1.16 + 1. Redistributions of source code must retain the above copyright 1.17 + notice, this list of conditions and the following disclaimer. 1.18 + 2. Redistributions in binary form must reproduce the above copyright 1.19 + notice, this list of conditions and the following disclaimer in the 1.20 + documentation and/or other materials provided with the distribution. 1.21 + 3. Neither the name of Network Resonance, Inc. nor the name of any 1.22 + contributors to this software may be used to endorse or promote 1.23 + products derived from this software without specific prior written 1.24 + permission. 1.25 + 1.26 + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' 1.27 + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 1.28 + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 1.29 + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 1.30 + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 1.31 + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 1.32 + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 1.33 + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 1.34 + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 1.35 + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 1.36 + POSSIBILITY OF SUCH DAMAGE. 1.37 + 1.38 + 1.39 + ekr@rtfm.com Wed Dec 26 17:20:23 2001 1.40 + */ 1.41 + 1.42 + 1.43 +#ifndef _util_h 1.44 +#define _util_h 1.45 + 1.46 +#include "registry.h" 1.47 + 1.48 +int nr_get_filename(char *base,char *name, char **namep); 1.49 +#if 0 1.50 +#include <openssl/ssl.h> 1.51 + 1.52 +int read_RSA_private_key(char *base, char *name,RSA **keyp); 1.53 +#endif 1.54 +void nr_errprintf_log(const char *fmt,...); 1.55 +void nr_errprintf_log2(void *ignore, const char *fmt,...); 1.56 +extern int nr_util_default_log_facility; 1.57 + 1.58 +int nr_read_data(int fd,char *buf,int len); 1.59 +int nr_drop_privileges(char *username); 1.60 +int nr_hex_ascii_dump(Data *data); 1.61 +int nr_fwrite_all(FILE *fp,UCHAR *buf,int len); 1.62 +int nr_sha1_file(char *filename,UCHAR *out); 1.63 +int nr_bin2hex(UCHAR *in,int len,UCHAR *out); 1.64 +int nr_rm_tree(char *path); 1.65 +int nr_write_pid_file(char *pid_filename); 1.66 + 1.67 +int nr_reg_uint4_fetch_and_check(NR_registry key, UINT4 min, UINT4 max, int log_fac, int die, UINT4 *val); 1.68 +int nr_reg_uint8_fetch_and_check(NR_registry key, UINT8 min, UINT8 max, int log_fac, int die, UINT8 *val); 1.69 + 1.70 +#ifdef WIN32 1.71 +int snprintf(char *buffer, size_t n, const char *format, ...); 1.72 +const char *inet_ntop(int af, const void *src, char *dst, size_t size); 1.73 +#endif 1.74 + 1.75 +#endif 1.76 +