]> git.ipfire.org Git - thirdparty/squid.git/log
thirdparty/squid.git
19 years agoAlex reports getting coredumps (with high debugging) at process
wessels [Tue, 24 Oct 2006 10:48:10 +0000 (10:48 +0000)] 
Alex reports getting coredumps (with high debugging) at process
exit because debug_log got closed, but was not set to NULL.  Seems
like we should not call fclose() before exit so that destructors
can write debugging if necessary.  The file will be closed anyway
when the process truly exits.

19 years agoNeed to #include helper.h in dns.cc for --disable-internal-dns
wessels [Fri, 20 Oct 2006 11:34:20 +0000 (11:34 +0000)] 
Need to #include helper.h in dns.cc for --disable-internal-dns

19 years agobugfix: In clientProcessRequest(), the call to connNoteUseOfBuffer() was
wessels [Thu, 19 Oct 2006 07:39:40 +0000 (07:39 +0000)] 
bugfix: In clientProcessRequest(), the call to connNoteUseOfBuffer() was
moved from the beginning to the end of the function.  This broke request
body processing because "conn->in.notYetUsed" was wrong at the time
of BodyReader creation.  As a workaround we now subtract http->req_sz
from conn->in.notYetUsed when telling the BodyReader how much
data there is on the socket.

19 years agominor nit: format intro comments and GPL text to fit within 80 columns
wessels [Thu, 19 Oct 2006 06:35:35 +0000 (06:35 +0000)] 
minor nit: format intro comments and GPL text to fit within 80 columns
and match all the other source code files.

19 years agoBug #1778: Build error on Irix using SGI MipsPRO compiler
serassio [Sat, 14 Oct 2006 19:43:18 +0000 (19:43 +0000)] 
Bug #1778: Build error on Irix using SGI MipsPRO compiler

Temporary build workaround waiting for Robert's definitive fix

19 years agoBug #1778: Build error on Irix using SGI MipsPRO compiler
serassio [Sat, 14 Oct 2006 19:34:29 +0000 (19:34 +0000)] 
Bug #1778: Build error on Irix using SGI MipsPRO compiler

Single bit field must be unsigned

19 years agoRemoving port 563 from the default SSL_ports and Safe_ports ACLs
wessels [Fri, 13 Oct 2006 02:46:42 +0000 (02:46 +0000)] 
Removing port 563 from the default SSL_ports and Safe_ports ACLs
under the assumption that this port (for secure NNTP) is very
rarely used through Squid, and that allowing it by default increases
the chance that it can be abused for generic tunneling.

19 years agoBug #1794: Allow 00:00-24:00 time specifications even if redundant
hno [Mon, 9 Oct 2006 18:43:02 +0000 (18:43 +0000)] 
Bug #1794: Allow 00:00-24:00 time specifications even if redundant

00:00-23:59 covers all 24 hours of the day, but it's easier to use 24:00.

19 years agoBug #1775: cachemgr storedir segfault with cache_dir null
serassio [Sun, 8 Oct 2006 19:34:09 +0000 (19:34 +0000)] 
Bug #1775: cachemgr storedir segfault with cache_dir null

19 years agoForward port of patches for Bug #1719 and Bug #1695 from 2.6.
serassio [Sun, 8 Oct 2006 19:10:34 +0000 (19:10 +0000)] 
Forward port of patches for Bug #1719 and Bug #1695 from 2.6.

Bug #1719: Incorrect error message on invalid cache_peer specifications

aborted with an assertion on the first request instead of rejecting the
configuration as invalid.

Bug #1695: http_port and other directives accept invalid ports

This patch rejects invalid port specifications in http_port and numerous
other directives as invalid.

19 years agoFix more stupid off-by-one errors parsing the request line.
adrian [Mon, 2 Oct 2006 18:08:20 +0000 (18:08 +0000)] 
Fix more stupid off-by-one errors parsing the request line.

19 years agoInclude missing profiling defines.
adrian [Mon, 2 Oct 2006 17:39:46 +0000 (17:39 +0000)] 
Include missing profiling defines.

19 years agoRemove another instance of temporary string abuse.
adrian [Mon, 2 Oct 2006 17:35:39 +0000 (17:35 +0000)] 
Remove another instance of temporary string abuse.

19 years agoReduce a couple of obvious string copies by using String references and filling them.
adrian [Mon, 2 Oct 2006 15:52:06 +0000 (15:52 +0000)] 
Reduce a couple of obvious string copies by using String references and filling them.

19 years agoOnly enforce HTTP version if we parsed a full request line.
adrian [Mon, 2 Oct 2006 12:03:23 +0000 (12:03 +0000)] 
Only enforce HTTP version if we parsed a full request line.

19 years agoDon't try parsing a blank request!
adrian [Mon, 2 Oct 2006 08:22:22 +0000 (08:22 +0000)] 
Don't try parsing a blank request!

19 years agoAdd in a missing \n for the Squid access log format routine.
adrian [Mon, 2 Oct 2006 08:21:50 +0000 (08:21 +0000)] 
Add in a missing \n for the Squid access log format routine.

19 years agoFix/Add request-line parser debugging; fix bug with pipelined connection parsing
adrian [Mon, 2 Oct 2006 07:34:18 +0000 (07:34 +0000)] 
Fix/Add request-line parser debugging; fix bug with pipelined connection parsing

The unparsed request buffer was being relocated before the headers were being
parsed. That was fine - the request parsing used to happen with a copy of the
buffer - but now a copy isn't being made. The buffer relocation needed to be
changed to happen after the request was parsed.

19 years agoFix an off-by-one bug in the UFS code. Thanks go to valgrind!
adrian [Mon, 2 Oct 2006 07:31:59 +0000 (07:31 +0000)] 
Fix an off-by-one bug in the UFS code. Thanks go to valgrind!

19 years agoBug #1782: Memory leak in ncsa_auth on password changes
serassio [Mon, 2 Oct 2006 00:40:29 +0000 (00:40 +0000)] 
Bug #1782: Memory leak in ncsa_auth on password changes

Forward port of a 2.6 patch.

19 years agoSlightly change the request line demarcation logic a little in an attempt to find
adrian [Sun, 1 Oct 2006 23:27:10 +0000 (23:27 +0000)] 
Slightly change the request line demarcation logic a little in an attempt to find
'badly parsed' lines.

19 years agoAdd in some more refresh-related debugging
adrian [Sun, 1 Oct 2006 23:26:34 +0000 (23:26 +0000)] 
Add in some more refresh-related debugging

19 years agoUpdated .cvsignore file
serassio [Sat, 30 Sep 2006 23:16:24 +0000 (23:16 +0000)] 
Updated .cvsignore file

19 years agoBug #1784: access_log syslog results in blanks syslog lines between every access...
serassio [Sat, 30 Sep 2006 22:51:41 +0000 (22:51 +0000)] 
Bug #1784: access_log syslog results in blanks syslog lines between every access log entry.

workaround: define a custom log format.

Forward port of 2.6 patch.

19 years agoAdd profiling points for the string library.
adrian [Thu, 28 Sep 2006 13:33:59 +0000 (13:33 +0000)] 
Add profiling points for the string library.

19 years agoAdd in profiling points for header parsing and cleaning.
adrian [Thu, 28 Sep 2006 13:13:12 +0000 (13:13 +0000)] 
Add in profiling points for header parsing and cleaning.

19 years agoAdd more profiling points
adrian [Thu, 28 Sep 2006 07:04:54 +0000 (07:04 +0000)] 
Add more profiling points

19 years agoCreate "inlined" Macro versions of the offset functions with the new request parser
adrian [Wed, 27 Sep 2006 19:47:53 +0000 (19:47 +0000)] 
Create "inlined" Macro versions of the offset functions with the new request parser

19 years agoAdd profiling for the new request line parser
adrian [Wed, 27 Sep 2006 19:31:02 +0000 (19:31 +0000)] 
Add profiling for the new request line parser

19 years agoReplace the client-side request line parser
adrian [Wed, 27 Sep 2006 19:17:52 +0000 (19:17 +0000)] 
Replace the client-side request line parser

* remove the 'inbuf' copy during parsing;
* .. but create a 'url' temporary copy for now since the *URL() routines
  in client_side.cc expect a mutable zero-terminated string;
  I looked into it and it won't take much work to rework those routines
  to take an immutable buffer.

19 years agoBootstrapped
hno [Wed, 27 Sep 2006 06:10:48 +0000 (06:10 +0000)] 
Bootstrapped

19 years agoVarious changes to break out the request parsing state and remove extra malloc/copies
adrian [Tue, 26 Sep 2006 21:19:22 +0000 (21:19 +0000)] 
Various changes to break out the request parsing state and remove extra malloc/copies
* Create a HttpParser structure to encapsulate the current parsing state
* Add some functions to return the current request/header length with some checks
  (which are expensive and should be inlined later once the code is proven to
  work.)
* Use the connection buffer rather than a temporary buffer to parse the request
  headers, saving a malloc and copy (the 'prefix' buffer)

19 years agoBack out other unrelated change
hno [Tue, 26 Sep 2006 20:46:16 +0000 (20:46 +0000)] 
Back out other unrelated change

19 years agoLink Squid SNMP library as a .a library directly to avoid conflicts with
hno [Tue, 26 Sep 2006 20:45:00 +0000 (20:45 +0000)] 
Link Squid SNMP library as a .a library directly to avoid conflicts with
system libraries

19 years agoDo some small changes to the HTTP parser and client side code to (eventually) save...
adrian [Tue, 26 Sep 2006 19:30:09 +0000 (19:30 +0000)] 
Do some small changes to the HTTP parser and client side code to (eventually) save on strlen() and similar calls

19 years agotcp-banger2 support for status validation and custom HTTP headers
hno [Tue, 26 Sep 2006 18:31:11 +0000 (18:31 +0000)] 
tcp-banger2 support for status validation and custom HTTP headers

19 years agoAdd in more profiling points to identify CPU usage
adrian [Mon, 25 Sep 2006 21:04:06 +0000 (21:04 +0000)] 
Add in more profiling points to identify CPU usage

19 years agoAdd in a missing check for whether the new dlink-based pending comm callbacks are...
adrian [Sat, 23 Sep 2006 13:16:07 +0000 (13:16 +0000)] 
Add in a missing check for whether the new dlink-based pending comm callbacks are ready

19 years agoBug #1769: near-hit and filedescriptor usage missing in SNMP MIB
hno [Fri, 22 Sep 2006 08:48:51 +0000 (08:48 +0000)] 
Bug #1769: near-hit and filedescriptor usage missing in SNMP MIB

Add cacheHttpNhSvcTime, cacheCurrentFileDescrCnt & cacheCurrentFileDescrMax
to the SNMP mib.

19 years agoBug #1774: ncsa_auth support for cramfs timestamps
hno [Fri, 22 Sep 2006 08:18:35 +0000 (08:18 +0000)] 
Bug #1774: ncsa_auth support for cramfs timestamps

19 years agoICAP cleanup of some cbdataReference misunderstanding.
hno [Thu, 21 Sep 2006 04:26:24 +0000 (04:26 +0000)] 
ICAP cleanup of some cbdataReference misunderstanding.

cbdataReference should only be used to create additional callback references
to a cbdata object. The owner of the object is the owner and has automatic
rights to the object, and should not call cbdataReference.

19 years agoClean up cbdataReference() use to comply with the API and make GCC happy
hno [Thu, 21 Sep 2006 04:15:00 +0000 (04:15 +0000)] 
Clean up cbdataReference() use to comply with the API and make GCC happy

19 years agoModify StoreEntry::write() probe to not overlap but still give accurate call numbers
adrian [Wed, 20 Sep 2006 20:25:05 +0000 (20:25 +0000)] 
Modify StoreEntry::write() probe to not overlap but still give accurate call numbers

19 years agoAdd in more profiling points
adrian [Wed, 20 Sep 2006 17:38:13 +0000 (17:38 +0000)] 
Add in more profiling points

19 years agoAdd profiling points for Membuf::grow, ::append and ::consume
adrian [Wed, 20 Sep 2006 14:13:38 +0000 (14:13 +0000)] 
Add profiling points for Membuf::grow, ::append and ::consume

19 years agoAdditional hi-res probes
adrian [Wed, 20 Sep 2006 12:29:10 +0000 (12:29 +0000)] 
Additional hi-res probes

19 years agoBypass the expensive check to the allocator getStats() when obtaining inuse data
adrian [Wed, 20 Sep 2006 06:59:26 +0000 (06:59 +0000)] 
Bypass the expensive check to the allocator getStats() when obtaining inuse data

A lot of busy code calls getStats() to get the inuse values when calculating
queue length (diskthreads) and store memory use for object memory expiry.
This was destroying performance.

The changes implement a "shortcut" to obtain the inuse values for both the
malloc and mempool allocator. getStats() is still expensive for mempools
(as it does GC before updating all the statistics to get accurate information)
but code has been modified to not use getStats() where all it wanted was
inuse info.

19 years agoFix a forgotten change during recent comm layer rework
serassio [Tue, 19 Sep 2006 23:17:52 +0000 (23:17 +0000)] 
Fix a forgotten change during recent comm layer rework

19 years agoFirst part of a comm layer rework
adrian [Tue, 19 Sep 2006 13:56:57 +0000 (13:56 +0000)] 
First part of a comm layer rework

* Remove new-style CommWrite, CommFill
* Add in a low-overhead C replacement for comm_read and comm_write
* Remove the difference between comm_write and comm_old_write; everything
  is back to using the same API for now
* create a simple C-based read/write IO callback mechanism, used by
  comm_read and comm_write

Whats left to do:

* convert accept/connect to using the new C-based read/write IO callback
  mechanism (and remove the requirement to allocate/free transient
  structures)
* rework the deferred read manager code somewhat
* then, remove the new-style CommRead code and use comm_read + whatever
  the deferred read manager has become
* remove whats not being used

19 years agoUn-astyle a flags definition
adrian [Tue, 19 Sep 2006 13:52:06 +0000 (13:52 +0000)] 
Un-astyle a flags definition

19 years agoBug #1768: Redundant DNS PTR lookups
hno [Tue, 19 Sep 2006 05:17:19 +0000 (05:17 +0000)] 
Bug #1768: Redundant DNS PTR lookups

Fix PTR lookup cache management to find pending queries.

19 years agoBug #1760: FTP related memory leak
hno [Tue, 19 Sep 2006 05:14:46 +0000 (05:14 +0000)] 
Bug #1760: FTP related memory leak

A small memory leak was found in the handling of certain ftp requests

19 years agoBug #1758: HEAD on ftp:// URLs always returned 200 OK.
hno [Tue, 19 Sep 2006 05:13:21 +0000 (05:13 +0000)] 
Bug #1758: HEAD on ftp:// URLs always returned 200 OK.

The FTP gateway took a little to narrow shortcut when processing HEAD
requests, not even verifying that the file esists (only directory).

19 years agoBug #1770: wccp2_weight directive
hno [Tue, 19 Sep 2006 05:05:43 +0000 (05:05 +0000)] 
Bug #1770: wccp2_weight directive

The WCCP2 implementation was missing weighted assignment, useful when the farm
is built from unequally powered servers.

19 years agoBootstrapped
hno [Sun, 17 Sep 2006 06:10:47 +0000 (06:10 +0000)] 
Bootstrapped

19 years agoaio_win32.cc and aiops_win32.cc must be compiled only on MinGW
serassio [Sun, 17 Sep 2006 02:44:21 +0000 (02:44 +0000)] 
aio_win32.cc and aiops_win32.cc must be compiled only on MinGW

19 years agoPortability fix: use memset() instead of deprecated bzero()
serassio [Sat, 16 Sep 2006 02:49:49 +0000 (02:49 +0000)] 
Portability fix: use memset() instead of deprecated bzero()

19 years agoFix a typo in recent commit
serassio [Sat, 16 Sep 2006 02:40:29 +0000 (02:40 +0000)] 
Fix a typo in recent commit

19 years agoFix astyle munging of flags.
adrian [Fri, 15 Sep 2006 23:30:13 +0000 (23:30 +0000)] 
Fix astyle munging of flags.

19 years agoBootstrapped
hno [Fri, 15 Sep 2006 21:02:28 +0000 (21:02 +0000)] 
Bootstrapped

19 years agoDist test headers for make check
hno [Fri, 15 Sep 2006 21:01:25 +0000 (21:01 +0000)] 
Dist test headers for make check

19 years agoConvert a debug() to debugs() to make GCC happy about formatting
hno [Fri, 15 Sep 2006 20:52:19 +0000 (20:52 +0000)] 
Convert a debug() to debugs() to make GCC happy about formatting

19 years agoBootstrapped
hno [Fri, 15 Sep 2006 20:33:26 +0000 (20:33 +0000)] 
Bootstrapped

19 years agoNeed to dist PeerDigest.h
hno [Fri, 15 Sep 2006 20:26:38 +0000 (20:26 +0000)] 
Need to dist PeerDigest.h

19 years agoBootstrapped
hno [Fri, 15 Sep 2006 06:10:47 +0000 (06:10 +0000)] 
Bootstrapped

19 years agoBootstrapped
serassio [Fri, 15 Sep 2006 02:17:11 +0000 (02:17 +0000)] 
Bootstrapped

19 years agoFix make check on MinGW
serassio [Fri, 15 Sep 2006 02:13:23 +0000 (02:13 +0000)] 
Fix make check on MinGW

19 years agoAdd missing files from bugfix for COSS config-failures.
robertc [Thu, 14 Sep 2006 14:34:51 +0000 (14:34 +0000)] 
Add missing files from bugfix for COSS config-failures.

19 years agoAvoid a string copy/reference operation in a reasonably critical path in the Header...
adrian [Thu, 14 Sep 2006 12:04:27 +0000 (12:04 +0000)] 
Avoid a string copy/reference operation in a reasonably critical path in the Header code

19 years agoFix bug 1218 by adding tests for the io engine of coss and ufs swapdirs after parsing...
robertc [Thu, 14 Sep 2006 06:51:09 +0000 (06:51 +0000)] 
Fix bug 1218 by adding tests for the io engine of coss and ufs swapdirs after parsing completes, and providing a heuristic lookup for finding a DiskIOModule when none is specified.

19 years agoBootstrapped
hno [Thu, 14 Sep 2006 06:10:48 +0000 (06:10 +0000)] 
Bootstrapped

19 years agoBootstrapped
serassio [Thu, 14 Sep 2006 02:10:48 +0000 (02:10 +0000)] 
Bootstrapped

19 years agoOn MinGW store tests need win32.cc
serassio [Thu, 14 Sep 2006 02:09:50 +0000 (02:09 +0000)] 
On MinGW store tests need win32.cc

19 years agoBootstrapped
serassio [Thu, 14 Sep 2006 01:06:15 +0000 (01:06 +0000)] 
Bootstrapped

19 years agoWindows port: split Windows service code into WinSvc.cc, allowing correct execution...
serassio [Thu, 14 Sep 2006 01:05:11 +0000 (01:05 +0000)] 
Windows port: split Windows service code into WinSvc.cc, allowing correct execution of make check

19 years agoWindows port: remove obsolete break from command line functionality
serassio [Thu, 14 Sep 2006 00:55:10 +0000 (00:55 +0000)] 
Windows port: remove obsolete break from command line functionality

19 years agoFix a bug which resulted in objects being released after forwarding was complete.
adrian [Wed, 13 Sep 2006 21:54:21 +0000 (21:54 +0000)] 
Fix a bug which resulted in objects being released after forwarding was complete.

This may have been my fault; but the forward code is all a bit weird at
the present time. Bring the forward logic back into line with squid-2.6.
This does need to be verified to be sure its doing the right thing.
It is, at least, resulting in cachable objects once again and hasn't
broken the FTP error page generation.

19 years agoadd in some more debugging to refresh.cc
adrian [Wed, 13 Sep 2006 21:42:15 +0000 (21:42 +0000)] 
add in some more debugging to refresh.cc

19 years agotestURL needs GNUregex library on MinGW
serassio [Wed, 13 Sep 2006 21:08:11 +0000 (21:08 +0000)] 
testURL needs GNUregex library on MinGW

19 years agoBootstrapped
serassio [Wed, 13 Sep 2006 19:16:13 +0000 (19:16 +0000)] 
Bootstrapped

19 years agoFix make dist error
serassio [Wed, 13 Sep 2006 18:32:26 +0000 (18:32 +0000)] 
Fix make dist error

19 years agoFix build error on MinGW when using --enable-icmp configure option
serassio [Mon, 11 Sep 2006 15:36:06 +0000 (15:36 +0000)] 
Fix build error on MinGW when using --enable-icmp configure option

19 years agoBug #1759: cachemgr.cgi attempts to write to file system root directory under MSWIN...
serassio [Mon, 11 Sep 2006 02:08:20 +0000 (02:08 +0000)] 
Bug #1759: cachemgr.cgi attempts to write to file system root directory under MSWIN builds

This patch is a minor revision of Windows support of cachemgr.

19 years agoreverse last patch - i missed that the fd_set includes the
adrian [Sun, 10 Sep 2006 09:49:05 +0000 (09:49 +0000)] 
reverse last patch - i missed that the fd_set includes the
unlinkd fd. I'll rethink how to fix this.

19 years agoBug 1579, 1475 - fix unlinkd to reduce the number of fd_set references
adrian [Sun, 10 Sep 2006 09:20:37 +0000 (09:20 +0000)] 
Bug 1579, 1475 - fix unlinkd to reduce the number of fd_set references

Squid_MaxFD is limited to FD_SETSIZE because of the fd_set uses outside of
the select(unix/windows) code. This patch removes one of the last
remaining uses.

19 years agoRework the transaction completion/aborting in the ftp code to fix bug 1592
adrian [Sun, 10 Sep 2006 07:53:00 +0000 (07:53 +0000)] 
Rework the transaction completion/aborting in the ftp code to fix bug 1592

The main problems in the code were:

* fwd->complete() was being called more than once
* everything was being funned through transactionComplete() which just
  wouldn't call abort handlers in the case of an abort.

So, transactionAbort() will call comm_close() to properly kill the
transaction the squid-2 way. this is ugly and should be replaced by some
object state to indicate the connection has been closed and the object
is on its way out; the current way will end up deleting the class data
before the code stack is fully unwound!

transactionForwardComplete() is just a wrapper that makes sure fwd->complete()
is called -once-.

19 years agoUpdated Windows related copyrigth notice
serassio [Sat, 9 Sep 2006 21:29:59 +0000 (21:29 +0000)] 
Updated Windows related copyrigth notice

19 years agoBug 1754: BodyReader was reading too much data from the socket buffer.
adrian [Thu, 7 Sep 2006 07:00:03 +0000 (07:00 +0000)] 
Bug 1754: BodyReader was reading too much data from the socket buffer.

Fix the BodyReader read routine to only empty enough data to satisfy the
given Content-Length; rather than emptying the buffer entirely.
Some clients have a habit of stuffing a \r\n at the end of a POST body and
this was being (over)read and hitting an assertion.

19 years agoBootstrapped
hno [Thu, 7 Sep 2006 06:10:47 +0000 (06:10 +0000)] 
Bootstrapped

19 years agoBootstrapped
serassio [Thu, 7 Sep 2006 01:38:09 +0000 (01:38 +0000)] 
Bootstrapped

19 years agoWindows port: Added Windows threads support to DiskThreads Disk module
serassio [Thu, 7 Sep 2006 01:36:42 +0000 (01:36 +0000)] 
Windows port: Added Windows threads support to DiskThreads Disk module

19 years agoBootstrapped
hno [Tue, 5 Sep 2006 06:10:48 +0000 (06:10 +0000)] 
Bootstrapped

19 years agoBootstrapped
serassio [Tue, 5 Sep 2006 02:16:56 +0000 (02:16 +0000)] 
Bootstrapped

19 years agoWindows port: Added Windows Overlapped I/O support to AIO Disk module
serassio [Tue, 5 Sep 2006 02:15:21 +0000 (02:15 +0000)] 
Windows port: Added Windows Overlapped I/O support to AIO Disk module

19 years agoAdd iiNet to the squid-3 sponsors list. Thanks iiNet!
adrian [Mon, 4 Sep 2006 08:42:19 +0000 (08:42 +0000)] 
Add iiNet to the squid-3 sponsors list. Thanks iiNet!

19 years agoBootstrapped
hno [Mon, 4 Sep 2006 06:10:46 +0000 (06:10 +0000)] 
Bootstrapped

19 years agoSyntax glue to get the MemPool API back in shape.
hno [Mon, 4 Sep 2006 03:05:19 +0000 (03:05 +0000)] 
Syntax glue to get the MemPool API back in shape.

Standalone pool:
  MemAllocator *pool = memPoolCreate(name, size)

Pooled class just as before;

class XXX {
public:
  MEMPROXY_CLASS(XXX)
  ...
}

MEMPROXY_CLASS_INLINE(XXX)

The other MemAllocator derived classes is considered private and should
not be used outside MemPool.cc

19 years agoFix typo in stub_comm.cc
serassio [Mon, 4 Sep 2006 01:34:15 +0000 (01:34 +0000)] 
Fix typo in stub_comm.cc

19 years agoWindows port: merged Windows native IPC support
serassio [Mon, 4 Sep 2006 01:28:10 +0000 (01:28 +0000)] 
Windows port: merged Windows native IPC support

19 years agoForgotten to adjust the pointer type ... :-(
serassio [Mon, 4 Sep 2006 01:12:52 +0000 (01:12 +0000)] 
Forgotten to adjust the pointer type ... :-(