From 31528bdaa807ab8aa61145daee49cc2fd2040f42 Mon Sep 17 00:00:00 2001 From: Matti Aarnio Date: Thu, 28 Feb 2008 12:40:08 +0000 Subject: [PATCH] Explain files git-svn-id: http://repo.ham.fi/svn/aprsc/trunk@15 3ce903b1-3385-4e86-93cd-f9a4a239f7ac --- src/README.sources | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/README.sources b/src/README.sources index 6eb3d69..04756c1 100644 --- a/src/README.sources +++ b/src/README.sources @@ -37,6 +37,10 @@ outgoing.c Checks which outgoing packets should be sent each client by calling filter functions, and does the actual sending. +filter.c + Filter used by the outgoing packet processing. + It tells if the packet should be sent out on given client socket. + config.c Code to read (and reread) configuration using the services provided by cfgfile.c. Validates configuration and takes @@ -93,3 +97,8 @@ rwlock.c A schoolbook pthread rwlock implementation for systems lacking one (Solaris 2.6 to name one). + +inet_ntop.c, inet_pton.c, getnameinfo.c, gai_strerror.c: + Backup instances of IPv4/IPv6 agnostic resolver library just + in case the operating system does not have it. + (From ZMailer by Matti Aarnio, OH2MQK)