]> git.ipfire.org Git - thirdparty/squid.git/log
thirdparty/squid.git
12 years agoMake IPC base path absolute in testRock
Francesco Chemolli [Sat, 22 Sep 2012 18:46:52 +0000 (20:46 +0200)] 
Make IPC base path absolute in testRock

12 years agoRelease Notes: document cache_store_log changes in 3.2
Amos Jeffries [Sat, 22 Sep 2012 07:17:28 +0000 (19:17 +1200)] 
Release Notes: document cache_store_log changes in 3.2

Store log uses logFile*() infrastructure and was caught in the access.log
change upgrades (in a good way). But was not documented.

12 years agoRegression fix: Handle dstdomain duplicates and overlapping names better
Amos Jeffries [Sat, 22 Sep 2012 06:39:55 +0000 (18:39 +1200)] 
Regression fix: Handle dstdomain duplicates and overlapping names better

Since 3.2 changes to dstdomain overlap detection teh case of duplicate
wildcards has become a fatal error needlessly.

This silently ignores all exact duplicates, even if they are wildcards.

Also, adjust the message display to always display the longer of the
domains first. Since we are dealing with sub-domains it is the most
reliable indicator of which should be removed to safely fix the detected
issue.

12 years agoBug 3648: Polish String class files
Reinhard Posmyk [Sat, 22 Sep 2012 01:28:35 +0000 (13:28 +1200)] 
Bug 3648: Polish String class files

Fix to correct function parameter const correctness.

Also polishes whitespace to match Squid coding guidelines.

12 years agoBug 3647: parsing hier_code acl fails
Alex Rousskov [Fri, 21 Sep 2012 06:11:10 +0000 (18:11 +1200)] 
Bug 3647: parsing hier_code acl fails

12 years agoSourceFormat Enforcement
Automatic source maintenance [Fri, 14 Sep 2012 00:13:20 +0000 (18:13 -0600)] 
SourceFormat Enforcement

12 years agoCompleted protos.h split and code refactoring
Francesco Chemolli [Thu, 13 Sep 2012 11:39:30 +0000 (13:39 +0200)] 
Completed protos.h split and code refactoring

Complete the task of splitting protos.h into more specific files
Remove inclusion of protos.h from most files
Clean CVS and arch file-tags up
Rework some module initialization code so that it is the callee's task and not the callers' to do feature-enabling
Added ssl-crtd option to the maximus build test
Changed many functions' linkage type from C to C++

12 years agoMerged from trunk
Francesco Chemolli [Thu, 13 Sep 2012 06:56:05 +0000 (08:56 +0200)] 
Merged from trunk

12 years agoDo not reuse persistent connections for PUTs to avoid ERR_ZERO_SIZE_OBJECT.
Alex Rousskov [Mon, 10 Sep 2012 23:07:01 +0000 (17:07 -0600)] 
Do not reuse persistent connections for PUTs to avoid ERR_ZERO_SIZE_OBJECT.

A compliant proxy may retry PUTs, but Squid lacks the [rather complicated]
code required to protect the PUT request body from being nibbled during the
first try or [also tricky] code to send 100-continue expectation requiredto
delay body sending. Thus, Squid cannot safely retry some PUTs today, and
FwdState::checkRetriable() must return false for all PUTs, to avoid
bogus ERR_ZERO_SIZE_OBJECT errors (especially for clients that did not
reuse a pconn and, hence, may not be ready to handle/retry an error response).

In theory, requests with safe or idempotent methods other than PUT might have
bodies so we apply the same logic to them as well.

This reopens Squid bug #3398, undoing trunk r11859 commit which attempted
to close that bug.

12 years agoDo not chunk responses carrying a Content-Range header.
Alex Rousskov [Mon, 10 Sep 2012 22:38:09 +0000 (16:38 -0600)] 
Do not chunk responses carrying a Content-Range header.

When Squid forwards a response with a Content-Range header,
ClientSocketContext::socketState() detects the end of the response range(s)
and returns STREAM_*COMPLETE to ClientSocketContext::writeComplete().
The latter thinks that the writing of the response to the client must be
over and calls keepaliveNextRequest() instead of writing the last-chunk
(if any). If the to-client response was chunked, the client gets stuck
waiting for that missing last-chunk.

The multipart Range request case was already excluded from chunking (or it
would probably suffer from the same problem). With this change, no
Content-Range responses will be chunked.

N.B. Some servers send Content-Range responses to basic GET requests
without a Range header, so the problem affects more than just Range requests.

TODO: A proper fix would be to rewrite ClientSocketContext::writeComplete()
and other code so that it does not mix internal ClientStream completion with
[possibly chunk-encoded] writing completion. This should probably be done
along with fixing ClientSocketContext::socketState() and other state-checking
code to ignore to-client persistence (flags.proxy_keepalive), which is not
related to the internal ClientStream state.

12 years agoMerged from trunk
Francesco Chemolli [Sun, 9 Sep 2012 17:13:42 +0000 (19:13 +0200)] 
Merged from trunk

12 years agoBug fix: TLS/SSL Options does not apply to the dynamically generated certificates
Christos Tsantilas [Thu, 6 Sep 2012 13:12:26 +0000 (16:12 +0300)] 
Bug fix: TLS/SSL Options does not apply to the dynamically generated certificates

The TLS/SSL options configured with http_port configuration parameter does not
used to generate SSL_CTX context objects used to establish SSL connections.
This is means that certificate based authentication, or SSL version selection
and other SSL/TLS http_port options does not work for ssl-bumped connection.
This patch fixes this problem.

This is a Measurement Factory project

12 years agoRemoved duplicate empty lines.
Francesco Chemolli [Mon, 3 Sep 2012 09:02:20 +0000 (11:02 +0200)] 
Removed duplicate empty lines.

12 years agoRemoved Debug.h inclusion in include/Range.h, added it elsewhere.
Francesco Chemolli [Mon, 3 Sep 2012 08:58:40 +0000 (10:58 +0200)] 
Removed Debug.h inclusion in include/Range.h, added it elsewhere.

12 years agoProtos.h doesn't need to reference any external includes anymore.
Francesco Chemolli [Mon, 3 Sep 2012 08:44:53 +0000 (10:44 +0200)] 
Protos.h doesn't need to reference any external includes anymore.

12 years agoRemoved some stale comments.
Francesco Chemolli [Mon, 3 Sep 2012 08:42:58 +0000 (10:42 +0200)] 
Removed some stale comments.

12 years agoMerged from trunk
Francesco Chemolli [Mon, 3 Sep 2012 07:16:45 +0000 (09:16 +0200)] 
Merged from trunk

12 years agoRelease Notes: document ECN vs TOS issue clearer for 3.1
Amos Jeffries [Sun, 2 Sep 2012 10:23:59 +0000 (04:23 -0600)] 
Release Notes: document ECN vs TOS issue clearer for 3.1

12 years agoRemoved gnu-arch file-tags
Francesco Chemolli [Sat, 1 Sep 2012 14:42:17 +0000 (16:42 +0200)] 
Removed gnu-arch file-tags

12 years agoRemoved CVS $ markers
Francesco Chemolli [Sat, 1 Sep 2012 14:38:36 +0000 (16:38 +0200)] 
Removed CVS $ markers

12 years agoMoved windows-related prototypes to new win32.h header file.
Francesco Chemolli [Sat, 1 Sep 2012 14:24:50 +0000 (16:24 +0200)] 
Moved windows-related prototypes to new win32.h header file.

12 years agoMoved Win32-service specific prototypes to own header
Francesco Chemolli [Sat, 1 Sep 2012 10:40:00 +0000 (12:40 +0200)] 
Moved Win32-service specific prototypes to own header

12 years agoreverted kerberos-related functrions to C linkage
Francesco Chemolli [Sat, 1 Sep 2012 08:17:17 +0000 (10:17 +0200)] 
reverted kerberos-related functrions to C linkage

12 years agoFixed linkage convention mismatch in peer_proxy_negotiate_auth.cc
Francesco Chemolli [Sat, 1 Sep 2012 07:52:25 +0000 (09:52 +0200)] 
Fixed linkage convention mismatch in peer_proxy_negotiate_auth.cc

12 years agoRemoved inclusion of protos.h from most clients.
Francesco Chemolli [Fri, 31 Aug 2012 16:57:39 +0000 (18:57 +0200)] 
Removed inclusion of protos.h from most clients.

12 years agoMoved Auth::Init to new specific header file.i
Francesco Chemolli [Fri, 31 Aug 2012 16:28:10 +0000 (18:28 +0200)] 
Moved Auth::Init to new specific header file.i

12 years agoMoved SNMP-related prototypes to a new home.
Francesco Chemolli [Fri, 31 Aug 2012 15:45:51 +0000 (17:45 +0200)] 
Moved SNMP-related prototypes to a new home.

12 years agoMoved peer_proxy_negotiate_auth prototype to new peer_proxy_negotiate_auth.hi
Francesco Chemolli [Fri, 31 Aug 2012 14:15:27 +0000 (16:15 +0200)] 
Moved peer_proxy_negotiate_auth prototype to new peer_proxy_negotiate_auth.hi

12 years agoRemoved some now-useless forward-declarations in protos.h
Francesco Chemolli [Fri, 31 Aug 2012 13:55:28 +0000 (15:55 +0200)] 
Removed some now-useless forward-declarations in protos.h

12 years agoMoved prototypes: snmpStatGet to stat.h and strtokFile to cache_cf.h
Francesco Chemolli [Fri, 31 Aug 2012 13:33:06 +0000 (15:33 +0200)] 
Moved prototypes: snmpStatGet to stat.h and strtokFile to cache_cf.h

12 years agoRemoved Solaris compatibility prototypes from protos.h, they're duplicate from compat/
Francesco Chemolli [Fri, 31 Aug 2012 12:45:28 +0000 (14:45 +0200)] 
Removed Solaris compatibility prototypes from protos.h, they're duplicate from compat/

12 years agoFixed include in AtomicWord.cc
Francesco Chemolli [Fri, 31 Aug 2012 12:03:13 +0000 (14:03 +0200)] 
Fixed include in AtomicWord.cc

12 years agoMoved IPC-related prototypes to newly-created SquidIpc.h
Francesco Chemolli [Fri, 31 Aug 2012 11:52:13 +0000 (13:52 +0200)] 
Moved IPC-related prototypes to newly-created SquidIpc.h

12 years agoMoved some prototypes to newly-created int.h, SquidString.h, disk.h
Francesco Chemolli [Fri, 31 Aug 2012 11:19:34 +0000 (13:19 +0200)] 
Moved some prototypes to newly-created int.h, SquidString.h, disk.h

12 years agoRemoved useless includes in protos.h
p [Fri, 31 Aug 2012 10:57:13 +0000 (12:57 +0200)] 
Removed useless includes in protos.h

12 years agoMoved type definition and methods for squid linked-list to SquidList.h and SquidList.cc
Francesco Chemolli [Fri, 31 Aug 2012 08:48:38 +0000 (10:48 +0200)] 
Moved type definition and methods for squid linked-list to SquidList.h and SquidList.cc

12 years agoMoved some string-related prototypes to SquidString.h
Francesco Chemolli [Fri, 31 Aug 2012 08:11:25 +0000 (10:11 +0200)] 
Moved some string-related prototypes to SquidString.h

12 years agoMoved parseNeighborType to cache_cf.h
Francesco Chemolli [Fri, 31 Aug 2012 08:01:51 +0000 (10:01 +0200)] 
Moved parseNeighborType to cache_cf.h

12 years agoSourceFormat Enforcement
Automatic source maintenance [Fri, 31 Aug 2012 00:13:14 +0000 (18:13 -0600)] 
SourceFormat Enforcement

12 years agoPrep for removing some headers included via protos.h
Francesco Chemolli [Thu, 30 Aug 2012 21:41:23 +0000 (23:41 +0200)] 
Prep for removing some headers included via protos.h

12 years agoMoved unlinkd-related prototypes to own header.
Francesco Chemolli [Thu, 30 Aug 2012 21:01:30 +0000 (23:01 +0200)] 
Moved unlinkd-related prototypes to own header.
Removed preprocessor conditionals from calling code.

12 years agomoved some prototypes to tools.h
Francesco Chemolli [Thu, 30 Aug 2012 17:12:59 +0000 (19:12 +0200)] 
moved some prototypes to tools.h

12 years agoBug 3615: configure check for default max number of FDs is broken
Amos Jeffries [Thu, 30 Aug 2012 16:32:59 +0000 (10:32 -0600)] 
Bug 3615: configure check for default max number of FDs is broken

12 years agoMoved checkNullString to SquidString.h
Francesco Chemolli [Thu, 30 Aug 2012 15:46:37 +0000 (17:46 +0200)] 
Moved checkNullString to SquidString.h

12 years agoFix maximum_single_addr_tries upgrade
Amos Jeffries [Thu, 30 Aug 2012 15:36:03 +0000 (09:36 -0600)] 
Fix maximum_single_addr_tries upgrade

12 years agoFix documentatino on loop detection
Amos Jeffries [Thu, 30 Aug 2012 15:25:50 +0000 (09:25 -0600)] 
Fix documentatino on loop detection

12 years agoMoved some prototypes to tools.h
Francesco Chemolli [Thu, 30 Aug 2012 14:40:50 +0000 (16:40 +0200)] 
Moved some prototypes to tools.h

12 years agoBug 3622: peerClearRRStart scheduling multiple events
Amos Jeffries [Thu, 30 Aug 2012 14:39:04 +0000 (08:39 -0600)] 
Bug 3622: peerClearRRStart scheduling multiple events

12 years agoBug 3626: Forwarding loops on intercepted traffic
Amos Jeffries [Thu, 30 Aug 2012 14:32:41 +0000 (08:32 -0600)] 
Bug 3626: Forwarding loops on intercepted traffic

Changes to interception handling in 3.2 series (namely the preference
for using ORIGINAL_DST) have increased the chances that misconfigured
network systems involving Squid will hit forwarding loops.

Two instances are currently known:
 * passing forward-proxy traffic to a interception port.
 * NAT performed on a separate box.

This enacts an old TODO by removing the loop detection bypass for
intercepted traffic and accelerated traffic. Now we always check for
loops regardless of how the request was received.

NOTE: accel mode was only included due to the TODO.
      If problems are found there it can be re-instated.

12 years agoMoved some prototypes to tools.h
Francesco Chemolli [Thu, 30 Aug 2012 14:18:27 +0000 (16:18 +0200)] 
Moved some prototypes to tools.h

12 years agoMake CpuAffinitySet::applied() method non-const.
Dmitry Kurochkin [Thu, 30 Aug 2012 12:46:47 +0000 (06:46 -0600)] 
Make CpuAffinitySet::applied() method non-const.

According to CPU_SET(3) and, apparently, on some systems (e.g.,
OpenSuSE 10.3) CPU_COUNT macro expects a non-const argument.  The
patch fixes build error on these systems.

12 years agoMoved some methods to tools.h
Francesco Chemolli [Thu, 30 Aug 2012 11:12:40 +0000 (13:12 +0200)] 
Moved some methods to tools.h

12 years agoMoved safeunlink prototype to disk.h
Francesco Chemolli [Thu, 30 Aug 2012 11:02:47 +0000 (13:02 +0200)] 
Moved safeunlink prototype to disk.h

12 years agoMoved some prototypes to tools.h
Francesco Chemolli [Thu, 30 Aug 2012 10:54:54 +0000 (12:54 +0200)] 
Moved some prototypes to tools.h

12 years agoRetrieve client connection information for ACL checks from the related HttpRequest...
Christos Tsantilas [Thu, 30 Aug 2012 09:02:06 +0000 (12:02 +0300)] 
Retrieve client connection information for ACL checks from the related HttpRequest object

This patch enable SSL client certificate ACL checks (user_cert and ca_cert)
in all cases the client connection information can retrieved from the related
HttpRequest object, eg when making peering decisions (peer_cache_access ACL).

Discussed under the "Supply client connection and IDENT information to
peer_cache_access ACL check" thread on squid-dev.

This is a Measurement Factory project

12 years agoMoved some prototypes to StoreClient.h
Francesco Chemolli [Thu, 30 Aug 2012 08:56:00 +0000 (10:56 +0200)] 
Moved some prototypes to StoreClient.h

12 years agoMoved some prototypes to new store_swapin.h
Francesco Chemolli [Thu, 30 Aug 2012 08:41:13 +0000 (10:41 +0200)] 
Moved some prototypes to new store_swapin.h

12 years agoFixed comments in store_rebuild
Francesco Chemolli [Thu, 30 Aug 2012 08:31:43 +0000 (10:31 +0200)] 
Fixed comments in store_rebuild

12 years agoMoved some prototypes to newly-created store_rebuild.h
Francesco Chemolli [Thu, 30 Aug 2012 08:30:12 +0000 (10:30 +0200)] 
Moved some prototypes to newly-created store_rebuild.h

12 years agofix Makefile.am formatting
Francesco Chemolli [Wed, 29 Aug 2012 16:32:12 +0000 (18:32 +0200)] 
fix Makefile.am formatting

12 years agoMoved store_digest-related prototypes to newly-created store_digest.h
Francesco Chemolli [Wed, 29 Aug 2012 16:26:55 +0000 (18:26 +0200)] 
Moved store_digest-related prototypes to newly-created store_digest.h

12 years agoMoved store_log prototypes to newly-created store_log.h
Francesco Chemolli [Wed, 29 Aug 2012 16:01:32 +0000 (18:01 +0200)] 
Moved store_log prototypes to newly-created store_log.h

12 years agoMoved prototype to newly-created repl_modules.h
Francesco Chemolli [Wed, 29 Aug 2012 15:48:14 +0000 (17:48 +0200)] 
Moved prototype to newly-created repl_modules.h

12 years agoRemoved useless waisStart prototype
Francesco Chemolli [Wed, 29 Aug 2012 15:15:03 +0000 (17:15 +0200)] 
Removed useless waisStart prototype

12 years agoMoved prototypes to newly-created send-announce.h
Francesco Chemolli [Wed, 29 Aug 2012 15:14:00 +0000 (17:14 +0200)] 
Moved prototypes to newly-created send-announce.h

12 years agoMoved redirect.cc-related prototype to newly-created redirect.h
Francesco Chemolli [Wed, 29 Aug 2012 14:51:57 +0000 (16:51 +0200)] 
Moved redirect.cc-related prototype to newly-created redirect.h

12 years agoMoved urn.cc-related prototypes to newly-created urn.h
Francesco Chemolli [Wed, 29 Aug 2012 14:39:43 +0000 (16:39 +0200)] 
Moved urn.cc-related prototypes to newly-created urn.h

12 years agoFix 'error: continue statement not within a loop'
Amos Jeffries [Wed, 29 Aug 2012 14:35:29 +0000 (08:35 -0600)] 
Fix 'error: continue statement not within a loop'

12 years agoRemoved unused getOutgoingAddr prototype
Francesco Chemolli [Wed, 29 Aug 2012 14:27:18 +0000 (16:27 +0200)] 
Removed unused getOutgoingAddr prototype
Moved getOutgoingAddress prototype to forward.h

12 years agoMoved multicast.cc-related prototypes to newly-created multicast.h
Francesco Chemolli [Wed, 29 Aug 2012 14:08:06 +0000 (16:08 +0200)] 
Moved multicast.cc-related prototypes to newly-created multicast.h

12 years agoBug 3609: several RADIUS helper improvements
Alan Mizrahi [Wed, 29 Aug 2012 13:51:52 +0000 (07:51 -0600)] 
Bug 3609: several RADIUS helper improvements

12 years agoMoved mime.cc-related prototypes to newly-created mime.h
Francesco Chemolli [Wed, 29 Aug 2012 12:56:25 +0000 (14:56 +0200)] 
Moved mime.cc-related prototypes to newly-created mime.h

12 years agoMoved some MIME header function prototypes to newly-created mime_header.h
Francesco Chemolli [Wed, 29 Aug 2012 12:36:10 +0000 (14:36 +0200)] 
Moved some MIME header function prototypes to newly-created mime_header.h

12 years agoMoved httpHdrMangleList prototype to HttpHeaderTools.h
Francesco Chemolli [Wed, 29 Aug 2012 11:37:22 +0000 (13:37 +0200)] 
Moved httpHdrMangleList prototype to HttpHeaderTools.h

12 years agoRemoved httpHeaderStoreReport from the global namespace.
Francesco Chemolli [Wed, 29 Aug 2012 11:24:49 +0000 (13:24 +0200)] 
Removed httpHeaderStoreReport from the global namespace.

12 years agoMoved getStringPrefix prototype to HttpHeaderTools.h
Francesco Chemolli [Wed, 29 Aug 2012 09:54:30 +0000 (11:54 +0200)] 
Moved getStringPrefix prototype to HttpHeaderTools.h

12 years agoMoved StrList-related functions to StrList.h and .cc
Francesco Chemolli [Wed, 29 Aug 2012 09:34:34 +0000 (11:34 +0200)] 
Moved StrList-related functions to StrList.h and .cc

12 years agoMerged from trunk
Francesco Chemolli [Wed, 29 Aug 2012 07:29:35 +0000 (09:29 +0200)] 
Merged from trunk

12 years agoRegression: login=PASS send no credentials when none available.
Amos Jeffries [Wed, 29 Aug 2012 05:23:15 +0000 (23:23 -0600)] 
Regression: login=PASS send no credentials when none available.

login=PASS should act like PASSTHRU, sending no credentials header, when
no client supplied OR external ACL credentials are available.
3.2 has been found wrongly adding the username "PASS" in this case.

12 years agoSourceFormat Enforcement
Automatic source maintenance [Wed, 29 Aug 2012 00:12:28 +0000 (18:12 -0600)] 
SourceFormat Enforcement

12 years agoprotos.h refactoring, part one.
Francesco Chemolli [Tue, 28 Aug 2012 19:12:13 +0000 (21:12 +0200)] 
protos.h refactoring, part one.

Refactor many function prototypes from protos.h to more specific header files.
Change linkage for moved prototypes to c++.

12 years agoMerged from trunk
Francesco Chemolli [Tue, 28 Aug 2012 13:12:34 +0000 (15:12 +0200)] 
Merged from trunk

12 years agoCleanup: duplicate include of squid.h
Amos Jeffries [Tue, 28 Aug 2012 13:04:48 +0000 (07:04 -0600)] 
Cleanup: duplicate include of squid.h

12 years agoSourceFormat Enforcement
Automatic source maintenance [Tue, 28 Aug 2012 13:00:30 +0000 (07:00 -0600)] 
SourceFormat Enforcement

12 years agoEnable source-formatting tools to collapse multiple whitelines in the source to one.
Francesco Chemolli [Tue, 28 Aug 2012 12:45:52 +0000 (14:45 +0200)] 
Enable source-formatting tools to collapse multiple whitelines in the source to one.

12 years agoSourceFormat Enforcement
Automatic source maintenance [Sat, 25 Aug 2012 00:13:13 +0000 (18:13 -0600)] 
SourceFormat Enforcement

12 years agoBug 3613: relax standard-compliance strctness on clang to enable build
Francesco Chemolli [Fri, 24 Aug 2012 10:54:03 +0000 (12:54 +0200)] 
Bug 3613: relax standard-compliance strctness on clang to enable build

When clang is invoked with the -std=c++0x option, it won't make available some system functions
defined in c99. For some reason configure fails to detect this, and so the built-in implementation is
not invoked. This change prevents enabling the -std=c++0x option for clang.

12 years agoPrep work for automatic sorting of include directives.
Francesco Chemolli [Fri, 24 Aug 2012 09:57:00 +0000 (11:57 +0200)] 
Prep work for automatic sorting of include directives.

Automatic sorting of include files reveals some indirect inclusions, which would break the build.
scripts/sort-includes.pl is the tool to do the automatic header include order sorting.
The other changes in this set fix the issues which that be introduced by running the sorting.

12 years agoBug 3605: memory leak in Negotiate authentication
Daniel Walter [Thu, 23 Aug 2012 01:33:16 +0000 (13:33 +1200)] 
Bug 3605: memory leak in Negotiate authentication

12 years agoAdjusted declarations of debug sections and authors
Francesco Chemolli [Wed, 22 Aug 2012 15:16:11 +0000 (17:16 +0200)] 
Adjusted declarations of debug sections and authors

12 years agomoved HttpHeaderTools.cc-related headers to HttpHeaderTools.h
Francesco Chemolli [Wed, 22 Aug 2012 13:14:01 +0000 (15:14 +0200)] 
moved HttpHeaderTools.cc-related headers to HttpHeaderTools.h

12 years agoMoved some http.cc-related prototypes to http.h
Francesco Chemolli [Wed, 22 Aug 2012 12:27:32 +0000 (14:27 +0200)] 
Moved some http.cc-related prototypes to http.h

12 years agoFixed comments for debug sections and authors.
Francesco Chemolli [Wed, 22 Aug 2012 12:20:55 +0000 (14:20 +0200)] 
Fixed comments for debug sections and authors.

12 years agoMoved whois.cc-related prototypes to new whois.h
Francesco Chemolli [Wed, 22 Aug 2012 11:31:33 +0000 (13:31 +0200)] 
Moved whois.cc-related prototypes to new whois.h

12 years agoMoved ftp.cc-related prototypes to new ftp.h
Francesco Chemolli [Wed, 22 Aug 2012 11:16:04 +0000 (13:16 +0200)] 
Moved ftp.cc-related prototypes to new ftp.h

12 years agoMoved fd.cc-related prototypes to new fd.h
Francesco Chemolli [Wed, 22 Aug 2012 10:49:28 +0000 (12:49 +0200)] 
Moved fd.cc-related prototypes to new fd.h

12 years agoMerged from trunk
Francesco Chemolli [Tue, 21 Aug 2012 16:27:16 +0000 (18:27 +0200)] 
Merged from trunk

12 years agoMerged from trunk
Francesco Chemolli [Tue, 21 Aug 2012 16:26:57 +0000 (18:26 +0200)] 
Merged from trunk

12 years agoMoved some prototypes to disk.h
Francesco Chemolli [Tue, 21 Aug 2012 16:26:29 +0000 (18:26 +0200)] 
Moved some prototypes to disk.h

12 years agoAdded missing includes in adaptation/esi
Francesco Chemolli [Tue, 21 Aug 2012 16:15:33 +0000 (18:15 +0200)] 
Added missing includes in adaptation/esi