- Timestamp:
- 03/24/05 16:56:06 (16 years ago)
- Branches:
- 4.0.1-hotfixes, cachetimestamps, develop, dpdk-ndag, etsilive, getfragoff, help, libtrace4, master, ndag_format, pfring, rc-4.0.1, rc-4.0.2, rc-4.0.3, rc-4.0.4, ringdecrementfix, ringperformance, ringtimestampfixes
- Children:
- 1b67314
- Parents:
- 23c13e8
- Location:
- examples
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/capture/capture.c
r4389bd1 r05e83dc 32 32 #include <stdlib.h> 33 33 #include <assert.h> 34 #include <unistd.h> 34 35 #include <string.h> 36 #include <inttypes.h> 37 #include <sys/types.h> 35 38 #include <netinet/in.h> 36 39 #include <netinet/ip.h> 37 40 #include <signal.h> 38 41 #include <setjmp.h> 39 #include <unistd.h>40 42 #include <sys/time.h> 41 #include <stdint.h>42 43 #include "zlib.h" 43 44 #include "libtrace.h" -
examples/erfsplit/Makefile
rc773929 r05e83dc 2 2 CFLAGS= -Wall -Wimplicit -Wformat -O2 -pipe -g 3 3 4 INCLUDE = -I/usr/local/ wand/include -I/usr/local/dag/include4 INCLUDE = -I/usr/local/include -I/usr/local/dag/include 5 5 CFLAGS += $(INCLUDE) 6 LDLIBS = -L/usr/local/ wand/lib -ltrace6 LDLIBS = -L/usr/local/lib -ltrace 7 7 8 8 BINS = erfsplit -
examples/munge/Makefile
r5959435 r05e83dc 1 CFLAGS=-W -Wall -g -I/ tmp/include1 CFLAGS=-W -Wall -g -I/usr/local/include 2 2 LDLIBS=-ltrace lib/libtrace_enc.a 3 3 LDFLAGS=-L/tmp/lib -
examples/munge/lib/Makefile
r0013085 r05e83dc 3 3 4 4 CFLAGS = -Wall -Wimplicit -Wformat -pipe -O2 -fPIC -g 5 CFLAGS += -I ../../../ -I/ tmp/include5 CFLAGS += -I ../../../ -I/usr/local/include 6 6 LDFLAGS = -L/tmp/lib -L/usr/local/lib -L. 7 7 -
examples/sample/Makefile
r10b165c r05e83dc 9 9 LDLIBS = $(libdir) -ltrace 10 10 11 BINS = sample 11 BINS = sample printip 12 12 .PHONY: all clean distclean install depend 13 13 … … 15 15 16 16 clean: 17 $(RM) *~ *.o $(BINS) $(OBJS) core17 $(RM) $(BINS) $(OBJS) 18 18 19 19 distclean: 20 $(RM) *~ *.o $(BINS) $(OBJS) core20 $(RM) $(BINS) $(OBJS) 21 21 22 22 install:
Note: See TracChangeset
for help on using the changeset viewer.