stun

simple point to point tunnel
git clone git://git.2f30.org/stun
Log | Files | Refs | README

commit ac13c3d064f18ac41b1d8fd0a3f330811d5eba97
parent 6e63a724cbce44a1a3f98fa4ba278ac4c833661b
Author: sin <sin@2f30.org>
Date:   Tue, 12 Apr 2016 12:07:11 +0100

rename net.c to netpkt.c

Diffstat:
MMakefile | 4++--
Rnet.c -> netpkt.c | 0
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -2,8 +2,8 @@ include config.mk DISTFILES = Makefile README WHATSNEW UNLICENSE arg.h auth.c \ config.mk crypto.c dev_bsd.c dev_linux.c log.c \ - net.c stun.8 stun.c stun.h util.c -OBJ = $(EXTRAOBJ) auth.o crypto.o log.o net.o stun.o util.o + netpkt.c stun.8 stun.c stun.h util.c +OBJ = $(EXTRAOBJ) auth.o crypto.o log.o netpkt.o stun.o util.o BIN = stun all: $(BIN) diff --git a/net.c b/netpkt.c