Author: remm
Date: Thu Oct 25 09:26:43 2018
New Revision: 1844818
URL: http://svn.apache.org/viewvc?rev=1844818&view=rev
Log:
Fix javadoc as XmlBase cannot be a URL (getConfigBaseFile, which is actually
used, will only handle files).
Modified:
tomcat/trunk/java/org/apache/catalina/Host.java
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256
All,
Bump.
I have a full patch at this point (still without documentation), but
this one includes resolution of the IV issue and also a set of unit
tests which pass.
I'd appreciate it if someone could install this into their cluster and
see if it
On Thu, Oct 25, 2018 at 5:15 PM Christopher Schultz <
ch...@christopherschultz.net> wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA256
>
> All,
>
> Bump.
>
> I have a full patch at this point (still without documentation), but
> this one includes resolution of the IV issue and also a set o
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256
Rémy,
On 10/25/18 11:54, Rémy Maucherat wrote:
> On Thu, Oct 25, 2018 at 5:15 PM Christopher Schultz <
> ch...@christopherschultz.net> wrote:
>
>> -BEGIN PGP SIGNED MESSAGE- Hash: SHA256
>>
>> All,
>>
>> Bump.
>>
>> I have a full patch
Hi Chris!
Because the argument svc is basically passed the value of SND_RX_SEQ (1) |
Channel.SND_TX_SEQ (2) | MBR_RX_SEQ (4) | MBR_TX_SEQ (8),
so you need to fix the following in start method.
==
if(Channel.SND_TX_SEQ == svc)
->
if (Channel.SND_TX_SEQ == (svc & Channel.SND_TX_SEQ))
==
In order