Skip to content

Commit

Permalink
Merge branch 'main' of github.com:acassen/gtp-guard into main
Browse files Browse the repository at this point in the history
  • Loading branch information
acassen committed Jun 22, 2024
2 parents 2fd6e59 + 43301d1 commit 0d79bc2
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ $(OBJDIR)/libbpf.a:

clean:
@$(MAKE) -C $(LIBBPF)/src clean
rm -f $(OBJDIR)/uapi
@rm -vf $(OBJDIR)/uapi
@set -e; \
for i in $(SUBDIRS); do \
$(MAKE) -C $$i clean; done
rm -f $(BIN)/$(EXEC)
@rm -vf $(BIN)/$(EXEC)
@echo ""
@echo "Make complete"

Expand Down
5 changes: 5 additions & 0 deletions doc/docs/releases/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Download

* June 22th, 2024 -
[Release Notes](release-1.0.5) -
[gtp-guard-1.0.5.tar.xz](/software/gtp-guard-1.0.5.tar.xz) -
MD5SUM:={f5dd2bce6077d6bae4f8ce2f47461e9c}

* November 20th, 2023 -
[Release Notes](release-1.0.3) -
[gtp-guard-1.0.3.tar.xz](/software/gtp-guard-1.0.3.tar.xz) -
Expand Down
10 changes: 10 additions & 0 deletions doc/docs/releases/release-1.0.5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

# Release 1.0.5

June 22th, 2024 -
[Release Notes](release-1.0.5) -
[gtp-guard-1.0.3.tar.xz](/software/gtp-guard-1.0.5.tar.xz) -
MD5SUM:={f5dd2bce6077d6bae4f8ce2f47461e9c}

* resolv: Add support to contextual operations
* switch: Add support to wildcard APN matching & dynamic Realm
4 changes: 2 additions & 2 deletions lib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ HEADERS = $(OBJS:.o=.h)
all: $(OBJS)

clean:
rm -f *.a *.o *~
@rm -vf *.a *.o *~

distclean: clean
rm -f Makefile
@rm -vf Makefile

memory.o: memory.c memory.h
mpool.o: mpool.h memory.h
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ HEADERS = $(OBJS:.o=.h)
all: $(OBJS)

clean:
rm -f *.a *.o *~
@rm -vf *.a *.o *~

0 comments on commit 0d79bc2

Please sign in to comment.