From 1adde65db245ec1fca752cfee4c198badf40fb5f Mon Sep 17 00:00:00 2001 From: Jakub Sławiński Date: Tue, 15 Mar 2005 01:22:55 +0100 Subject: v0.6 - Fixed: default password incompatibilities from config file - Added: "client's id" option - Lightly Modified: verbose mode - Added: temporary listen ports - Fixed: bug in printing "client's id" - Added: 'dateformat' option to set format of the date in the logs - Modified: command line option and config file behaviour - Added: logging to a socket - Fixed: parsing config file - Fixed: major bug in packet buffering - Added: several clients-users in one realm - Modified: default hostname used by afserver - Modified: server listening behaviour (for clients) - Fixed: bug in checking options values - Modified: verbose mode - Modified: client initial connection to server - Added: connection time / uptime statistics - Added: first version of remote administration (statistics only) - Fixed: major bug in remove_client routine - Added: 'raclients' option - Added: use of automake/autoconf - Added: creating ~/.apf directory - Modified: the way of creating/managing keys/certificates - Added: 'dnslookups' option - Modified: usage functions - Fixed: no handling of missing 'listen' option after 'newrealm' in config file - Added: 'quit' command in remote administration mode - Modified: logging error messages during initialization - Modified: 'newrealm' changed to 'realm' in config file - Added: realm names - Modified: connection time / uptime - Added: client names / unique numbers - Added: user unique numbers - Fixed: segmentation fault after 'quit' command --- Makefile | 50 -------------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile deleted file mode 100644 index 09c9034..0000000 --- a/Makefile +++ /dev/null @@ -1,50 +0,0 @@ -CC=gcc -CFLAGS=-pedantic -Wall -O2 -programs=afserver afclient -security=server.rsa cacert.pem -serdepends=afserver.c network.o file.o stats.o buflist.o -clidepends=afclient.c network.o stats.o buflist.o modules.o - -all: compi $(programs) ok1 secure - -afserver: $(serdepends) - $(CC) $(CFLAGS) -lssl -lz $(serdepends) -o afserver - -afclient: $(clidepends) - $(CC) $(CFLAGS) -rdynamic -lssl -lz -ldl $(clidepends) -o afclient - -%.o: %.c %.h - $(CC) $(CFLAGS) -c $*.c - -exmodule: exmodule.c - $(CC) -fPIC $(CFLAGS) -c $@.c - $(CC) $(CFLAGS) -shared -o $@ $@.o - -secure: crea $(security) ok2 - -server.rsa: - @openssl genrsa -rand Makefile -out server.rsa 2048 - -client.rsa: - @openssl genrsa -rand server.rsa -out client.rsa 2048 - -cacert.pem: - @echo -e "\n Generating certificate...\n" - @echo -e "pl\nWar-Maz\nOlsztyn\nSHEG\nUtils productions\njeremian\njeremian@poczta.fm" | openssl req -new -x509 -key server.rsa -out cacert.pem -days 1095 > /dev/null 2>&1 - -compi: - @echo -e "\nCompiling program...\n" - -crea: - @echo -e "\nCreating necessary files...\n" - -ok1: - @echo " OK!" - -ok2: - @echo " OK!" - -.PHONY: clean - -clean: - rm -rf a.out *~ *.o $(programs) $(security) exmodule -- cgit v1.1