You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by Mladen Turk <mt...@apache.org> on 2008/11/13 16:33:27 UTC

[RESULT] [VOTE] Releasing Apache Tomcat Native 1.1.16

Mladen Turk wrote:
 > Hello to the Tomcat team,
 >
 > Native 1.1.16 has been available for testing for almost a week,
 > so I would like to proceed with the release vote.
 >

So far only one binding vote has been recorded
(Thanks Henri), and mine by presumption.

So, Native 1.1.16 won't be released due to lack of
developers interest :(


Regards
-- 
^(TM)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [RESULT] [VOTE] Releasing Apache Tomcat Native 1.1.16

Posted by Lorenz Breu <br...@hot-shot.com>.
Too bad :(

I am just the new guy here and I only use tcn for my MINA APR transport 
extensions. As I couldn't build tomcat native on my windows box I was 
looking forward to the new release, even though the only problems I ever 
encountered (I don't use tcn extensively at the moment) were the typos 
in multicast.c and network.c, which I guess you would have fixed in 1.1.16.

cheers,
Lorenz

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [RESULT] [VOTE] Releasing Apache Tomcat Native 1.1.16

Posted by Henri Gomez <he...@gmail.com>.
Sad :(

2008/11/13 Mladen Turk <mt...@apache.org>:
> Mladen Turk wrote:
>> Hello to the Tomcat team,
>>
>> Native 1.1.16 has been available for testing for almost a week,
>> so I would like to proceed with the release vote.
>>
>
> So far only one binding vote has been recorded
> (Thanks Henri), and mine by presumption.
>
> So, Native 1.1.16 won't be released due to lack of
> developers interest :(
>
>
> Regards
> --
> ^(TM)
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
> For additional commands, e-mail: dev-help@tomcat.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [RESULT] [VOTE] Releasing Apache Tomcat Native 1.1.16

Posted by Peter Rossbach <pr...@objektpark.de>.
Hi Mladen,

last weeks are conference time... Sorry are also test tcnative today.

regards
Peter



Am 13.11.2008 um 20:47 schrieb Rainer Jung:

> Mladen Turk schrieb:
>> Mladen Turk wrote:
>>> Hello to the Tomcat team,
>>>
>>> Native 1.1.16 has been available for testing for almost a week,
>>> so I would like to proceed with the release vote.
>>>
>>
>> So far only one binding vote has been recorded
>> (Thanks Henri), and mine by presumption.
>>
>> So, Native 1.1.16 won't be released due to lack of
>> developers interest :(
>
> If you are able to accept a late vote, I'll test later today ...
>
> Rainer
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
> For additional commands, e-mail: dev-help@tomcat.apache.org
>


Re: [RESULT] [VOTE] Releasing Apache Tomcat Native 1.1.16

Posted by Rainer Jung <ra...@kippdata.de>.
Mladen Turk schrieb:
> Mladen Turk wrote:
>> Hello to the Tomcat team,
>>
>> Native 1.1.16 has been available for testing for almost a week,
>> so I would like to proceed with the release vote.
>>
> 
> So far only one binding vote has been recorded
> (Thanks Henri), and mine by presumption.
> 
> So, Native 1.1.16 won't be released due to lack of
> developers interest :(

If you are able to accept a late vote, I'll test later today ...

Rainer

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [RESULT] [VOTE] Releasing Apache Tomcat Native 1.1.16

Posted by jean-frederic clere <jf...@gmail.com>.
Mladen Turk wrote:
> sebb wrote:
>> I happened to spot the following in ssl.c:
>>
>> static int jbs_gets(BIO *b, char *out, int outl)
>> ...
>> int l = (int)strlen(J2S(o));
>> if (l < outl) {
>>     strcpy(out, J2S(o));
>>     ret = outl;
>> }
>> ...
>> return ret;
>>
>> It looks a bit odd to me - I would have expected it to return l rather
>> than outl.
>>
>> However, I've no idea what the function API is supposed to be - and
>> the caller can use strlen(out) to find l -  so I'm probably wrong.
>>
>>
> 
> You are probably right, but the entire BIO code
> isn't used anywhere. It was something we
> (Jean-Frederic I think) experimented at the
> beginning.

Yep.... It seems the correct code is
ret = l;
(See http://www.openssl.org/docs/crypto/BIO_read.html#)

Cheers

Jean-Frederic

> 
> Regards


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [RESULT] [VOTE] Releasing Apache Tomcat Native 1.1.16

Posted by sebb <se...@gmail.com>.
On 18/11/2008, Mladen Turk <mt...@apache.org> wrote:
> sebb wrote:
>
> > I happened to spot the following in ssl.c:
> >
> > static int jbs_gets(BIO *b, char *out, int outl)
> > ...
> > int l = (int)strlen(J2S(o));
> > if (l < outl) {
> >    strcpy(out, J2S(o));
> >    ret = outl;
> > }
> > ...
> > return ret;
> >
> > It looks a bit odd to me - I would have expected it to return l rather
> > than outl.
> >
> > However, I've no idea what the function API is supposed to be - and
> > the caller can use strlen(out) to find l -  so I'm probably wrong.
> >
> >
> >
>
>  You are probably right, but the entire BIO code
>  isn't used anywhere. It was something we
>  (Jean-Frederic I think) experimented at the
>  beginning.

Perhaps it should be removed then, or at least commented out.
Seems rather risky to me to have unused JNI code in a release.

>  Regards
>  --
>  ^(TM)
>
> ---------------------------------------------------------------------
>  To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
>  For additional commands, e-mail: dev-help@tomcat.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [RESULT] [VOTE] Releasing Apache Tomcat Native 1.1.16

Posted by Mladen Turk <mt...@apache.org>.
sebb wrote:
> I happened to spot the following in ssl.c:
> 
> static int jbs_gets(BIO *b, char *out, int outl)
> ...
> int l = (int)strlen(J2S(o));
> if (l < outl) {
>     strcpy(out, J2S(o));
>     ret = outl;
> }
> ...
> return ret;
> 
> It looks a bit odd to me - I would have expected it to return l rather
> than outl.
> 
> However, I've no idea what the function API is supposed to be - and
> the caller can use strlen(out) to find l -  so I'm probably wrong.
> 
> 

You are probably right, but the entire BIO code
isn't used anywhere. It was something we
(Jean-Frederic I think) experimented at the
beginning.

Regards
-- 
^(TM)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [RESULT] [VOTE] Releasing Apache Tomcat Native 1.1.16

Posted by sebb <se...@gmail.com>.
I happened to spot the following in ssl.c:

static int jbs_gets(BIO *b, char *out, int outl)
...
int l = (int)strlen(J2S(o));
if (l < outl) {
    strcpy(out, J2S(o));
    ret = outl;
}
...
return ret;

It looks a bit odd to me - I would have expected it to return l rather
than outl.

However, I've no idea what the function API is supposed to be - and
the caller can use strlen(out) to find l -  so I'm probably wrong.


On 18/11/2008, Mladen Turk <mt...@apache.org> wrote:
> William A. Rowe, Jr. wrote:
>
> > Mladen Turk wrote:
> >
> > You are the chair... and further you had called the vote.  Feel free
> > to reverse yourself :)
> >
> >
>
>  Wow, and I thought the chair is the slave that
>  collects and writes board reports ;)
>
>  Cheers
>  --
>  ^(TM)
>
>
> ---------------------------------------------------------------------
>  To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
>  For additional commands, e-mail: dev-help@tomcat.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [RESULT] [VOTE] Releasing Apache Tomcat Native 1.1.16

Posted by Mladen Turk <mt...@apache.org>.
William A. Rowe, Jr. wrote:
> Mladen Turk wrote:
> 
> You are the chair... and further you had called the vote.  Feel free
> to reverse yourself :)
>

Wow, and I thought the chair is the slave that
collects and writes board reports ;)

Cheers
-- 
^(TM)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [RESULT] [VOTE] Releasing Apache Tomcat Native 1.1.16

Posted by "William A. Rowe, Jr." <wr...@rowe-clan.net>.
Mladen Turk wrote:
> Mladen Turk wrote:
>> Mladen Turk wrote:
>>  > Hello to the Tomcat team,
>>  >
>>  > Native 1.1.16 has been available for testing for almost a week,
>>  > so I would like to proceed with the release vote.
>>  >
>>
>> So far only one binding vote has been recorded
>> (Thanks Henri), and mine by presumption.
>>
>> So, Native 1.1.16 won't be released due to lack of
>> developers interest :(
>>
> 
> OK, So it seems we've collected enough votes.
> Should I just propagate the files to the dist
> and make an announce or do we need another version
> tag/release.
> I mean nothing changed, so like Peter said,
> it was the wrong time (cause of conferencing)
> to call for an vote.
> 
> I'd just like to go with 1.1.16, and I suppose
> nothing stops us from that.

You are the chair... and further you had called the vote.  Feel free
to reverse yourself :)

Bill

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [RESULT] [VOTE] Releasing Apache Tomcat Native 1.1.16

Posted by Mladen Turk <mt...@apache.org>.
Mladen Turk wrote:
> Mladen Turk wrote:
>  > Hello to the Tomcat team,
>  >
>  > Native 1.1.16 has been available for testing for almost a week,
>  > so I would like to proceed with the release vote.
>  >
> 
> So far only one binding vote has been recorded
> (Thanks Henri), and mine by presumption.
> 
> So, Native 1.1.16 won't be released due to lack of
> developers interest :(
> 

OK, So it seems we've collected enough votes.
Should I just propagate the files to the dist
and make an announce or do we need another version
tag/release.
I mean nothing changed, so like Peter said,
it was the wrong time (cause of conferencing)
to call for an vote.

I'd just like to go with 1.1.16, and I suppose
nothing stops us from that.


Regards
-- 
^(TM)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org