From c98d5ce17cff7aa736f9acbb625dceaa04eedd48 Mon Sep 17 00:00:00 2001 From: Lennart Buhl Date: Sat, 2 Nov 2013 17:34:02 +0100 Subject: [PATCH] net.h --- Makefile | 2 +- net.h | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 net.h diff --git a/Makefile b/Makefile index 1f98786..0c75b4a 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,6 @@ $(TARGET): $(OBJECTS) $(CC) $(CFLAGS) -c $< clean: - -$(RM) -rf *.o bin + rm -rf *.o bin diff --git a/net.h b/net.h new file mode 100644 index 0000000..b475e96 --- /dev/null +++ b/net.h @@ -0,0 +1,4 @@ +/* This file was automatically generated. Do not edit! */ +int run_client(const struct prog_info *pinfo,void(*framecallback)(long)); +int run_server(const struct prog_info *pinfo); +void *get_in_addr(struct sockaddr *sa);