Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions 2026/Ottaviano/addresses.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
192.168.1.192
192.168.1.191
192.168.1.120
192.168.1.122
192.168.1.190
192.168.1.123
192.168.1.154
192.168.1.90
192.168.1.100
Binary file added 2026/Ottaviano/gestione_reti_relazione.pdf
Binary file not shown.
28 changes: 28 additions & 0 deletions 2026/Ottaviano/makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
CC = gcc
CFLAGS = -Wall

all: mybridge sender pcount

pcount: pcount.o
$(CC) $(CFLAGS) -o pcount pcount.o -lpcap

sender: sender.o
$(CC) $(CFLAGS) -o sender sender.o -lpcap

mybridge: mybdrige.o utils.o
$(CC) $(CFLAGS) -o mybridge mybridge.o utils.o -lpcap

mybdrige.o: mybridge.c utils_leaky_bucket.h
$(CC) $(CFLAGS) -c mybridge.c

pcount.o: pcount.c structure.h
$(CC) $(CFLAGS) -c pcount.c

sender.o: sender.c structure.h
$(CC) $(CFLAGS) -c sender.c

utils.o: utils.c utils_leaky_bucket.h structure.h
$(CC) $(CFLAGS) -c utils.c

clean:
rm -f *.o mybridge sender pcount
Loading