Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: wlanslovenija/tunneldigger
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: eulenfunk/tunneldigger
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 1 commit
  • 3 files changed
  • 1 contributor

Commits on Dec 17, 2017

  1. back from cmake

    Adorfer committed Dec 17, 2017
    Copy the full SHA
    fd69610 View commit details
Showing with 1,672 additions and 0 deletions.
  1. +14 −0 client/Makefile
  2. +1,495 −0 client/asyncns.c
  3. +163 −0 client/asyncns.h
14 changes: 14 additions & 0 deletions client/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

CFLAGS += -Wall -Werror

all: l2tp_client

l2tp_client: l2tp_client.o asyncns.o
$(CC) $(LDFLAGS) -o $@ $^ -lpthread -lnl -lrt -lresolv

%.o: %.c
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -I. -o $@ $<

clean:
rm -rf *.o l2tp_client

Loading