diff options
author | Jakub Sławiński | 2005-03-15 01:22:55 +0100 |
---|---|---|
committer | Joshua Judson Rosen | 2014-07-17 21:14:58 +0200 |
commit | 1adde65db245ec1fca752cfee4c198badf40fb5f (patch) | |
tree | bba33f3b1fe7d469f9df7a89af9dac77b27fa3bb /Makefile | |
parent | udp_patch (diff) | |
download | apf-1adde65db245ec1fca752cfee4c198badf40fb5f.tar.gz |
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
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 50 |
1 files changed, 0 insertions, 50 deletions
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 |