Changeset df87f00
- Timestamp:
- 05/18/18 11:39:59 (3 years ago)
- Branches:
- cachetimestamps, develop, etsilive, master, rc-4.0.4, ringdecrementfix, ringperformance
- Children:
- b663d33
- Parents:
- bd51874
- git-author:
- Shane Alcock <salcock@…> (11/28/17 16:22:37)
- git-committer:
- Shane Alcock <salcock@…> (05/18/18 11:39:59)
- Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.in
r62ee4ec rdf87f00 215 215 AC_CHECK_HEADER(openssl/evp.h, cryptofound=1, cryptofound=0) 216 216 fi 217 AC_CHECK_LIB(tasn1, asn1_array2tree, asn1found=1, asn1found=0) 217 218 218 219 # Check for libpcap … … 516 517 fi 517 518 519 if test "$asn1found" = 1; then 520 AC_DEFINE(HAVE_LIBTASN1, 1, [Set to 1 if libtasn1 is available]) 521 LIBTRACE_LIBS="$LIBTRACE_LIBS -ltasn1" 522 TOOLS_LIBS="$TOOLS_LIBS -ltasn1" 523 have_asn1=yes 524 else 525 have_asn1=no 526 fi 527 518 528 if test "$have_nsl" = 1; then 519 529 if test "$ac_cv_search_inet_ntop" != "none required"; then … … 695 705 fi 696 706 reportopt "Compiled with LLVM BPF JIT support" $JIT 707 reportopt "Compiled with live ETSI LI support (requires libtasn1)" $have_asn1 697 708 reportopt "Building man pages/documentation" $libtrace_doxygen 698 709 reportopt "Building tracetop (requires libncurses)" $with_ncurses -
lib/Makefile.am
r49969f2 rdf87f00 7 7 data-struct/deque.h data-struct/linked_list.h \ 8 8 data-struct/buckets.h data-struct/sliding_window.h \ 9 data-struct/message_queue.h hash_toeplitz.h 9 data-struct/message_queue.h hash_toeplitz.h \ 10 data-struct/simple_circular_buffer.h 10 11 11 12 AM_CFLAGS=@LIBCFLAGS@ @CFLAG_VISIBILITY@ -pthread … … 55 56 format_rt.c format_helper.c format_helper.h format_pcapfile.c \ 56 57 format_duck.c format_tsh.c $(NATIVEFORMATS) $(BPFFORMATS) \ 57 format_atmhdr.c format_pcapng.c \58 format_atmhdr.c format_pcapng.c format_etsilive.c \ 58 59 libtrace_int.h lt_inttypes.h lt_bswap.h \ 59 60 linktypes.c link_wireless.c byteswap.c \ … … 69 70 data-struct/sliding_window.c data-struct/object_cache.c \ 70 71 data-struct/linked_list.c hash_toeplitz.c combiner_ordered.c \ 71 data-struct/buckets.c \72 data-struct/buckets.c data-struct/simple_circular_buffer.c \ 72 73 combiner_sorted.c combiner_unordered.c \ 73 74 pthread_spinlock.c pthread_spinlock.h -
lib/libtrace.h.in
rc1205bd rdf87f00 398 398 TRACE_FORMAT_NDAG =19, /**< DAG multicast over a network */ 399 399 TRACE_FORMAT_DPDK_NDAG =20, /**< DAG multicast over a network, received via DPDK */ 400 TRACE_FORMAT_ETSILIVE =21, /**< ETSI LI over a network */ 400 401 }; 401 402 -
lib/libtrace_int.h
re375e0f rdf87f00 1242 1242 /** Constructor for the network DAG format module */ 1243 1243 void ndag_constructor(void); 1244 /** Constructor for the live ETSI over TCP format module */ 1245 void etsilive_constructor(void); 1244 1246 #ifdef HAVE_BPF 1245 1247 /** Constructor for the BPF format module */ -
lib/trace.c
rdc27de3 rdf87f00 148 148 rt_constructor(); 149 149 ndag_constructor(); 150 etsilive_constructor(); 150 151 #ifdef HAVE_DAG 151 152 dag_constructor();
Note: See TracChangeset
for help on using the changeset viewer.