/usr/include/net-snmp/library/snmp_assert.h is in libsnmp-dev 5.4.3~dfsg-2.4ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | #ifndef SNMP_ASSERT_H
#define SNMP_ASSERT_H
#ifdef NETSNMP_USE_ASSERT
# include <assert.h>
#else
# include <net-snmp/library/snmp_logging.h>
#endif
/*
* MACROs don't need extern "C"
*/
/*
* define __STRING for systems (*cough* sun *cough*) that don't have it
*/
#ifndef __STRING
# if defined(__STDC__) || defined(_MSC_VER)
# define __STRING(x) #x
# else
# define __STRING(x) "x"
# endif /* __STDC__ */
#endif /* __STRING */
/*
* always use assert if requested
*/
#ifdef NETSNMP_USE_ASSERT
/* void netsnmp_assert( int );*/
# define netsnmp_assert(x) assert( x )
#else
/*
* if asserts weren't requested, just log, unless NETSNMP_NO_DEBUGGING specified
*/
# ifndef NETSNMP_NO_DEBUGGING
# ifdef HAVE_CPP_UNDERBAR_FUNCTION_DEFINED
# define netsnmp_assert(x) do { \
if ( x ) \
; \
else \
snmp_log(LOG_ERR,"netsnmp_assert %s failed %s:%d %s()\n", \
__STRING(x),__FILE__,__LINE__,__FUNCTION__); \
}while(0)
# else
# define netsnmp_assert(x) do { \
if( x )\
; \
else \
snmp_log(LOG_ERR,"netsnmp_assert %s failed %s:%d\n", \
__STRING(x),__FILE__,__LINE__); \
}while(0)
# endif
# else /* NO DEBUGGING */
# define netsnmp_assert(x)
# endif /* NO DEBUGGING */
#endif /* not NETSNMP_USE_ASSERT */
#endif /* SNMP_ASSERT_H */
|