[SSHD] dynamic port forwarding

2013-07-10 Thread Sean Zhang
Hi,

I am looking for dynamic port forwarding feature in sshd. I don't think it
is supported now. Can anyone give some hints on where to start and how
complicated it is?

Thanks,
Sean


Re: [VOTE] release Apache MINA 3.0.0-M1

2013-07-10 Thread Emmanuel Lécharny
Le 7/10/13 9:03 PM, Julien Vermillard a écrit :
> I heard (from Emmanuel I think) we don't need to put notice files for
> apache products (thrift and log4j).
Yes. The are apache projects, covered by the MINA NOTICE file. No need
to add an extra file for each one of them, or to list them all.
>
> So (if true) the only missing is netty used for benchmark which is
> just tests no ?

slf4j is not an Apache project, AFAICT.

We are also using junit and mockito...


-- 
Regards,
Cordialement,
Emmanuel Lécharny
www.iktek.com 



Re: [VOTE] release Apache MINA 3.0.0-M1

2013-07-10 Thread Julien Vermillard
I heard (from Emmanuel I think) we don't need to put notice files for
apache products (thrift and log4j).

So (if true) the only missing is netty used for benchmark which is
just tests no ?
--
Julien Vermillard  http://people.apache.org/~jvermillard/


On Wed, Jul 10, 2013 at 8:01 AM, Ashish  wrote:
> Build works fine, Rat check passes.
>
> Licence file needs to be updated to have entry for Netty, Log4j and Thrift
> are missing. Need to be added.
>
> Also do we need to provided .bz2 files as well? Most projects I have seen
> don't provide this.
> Haven't verified the signatures yet. I remember KEYS being moved to some
> central place. Not sure where.
>
>
> On Tue, Jul 9, 2013 at 7:57 PM, Julien Vermillard 
> wrote:
>
>> Hi !
>>
>> Here the first milestone release for MINA 3.
>>
>> Please take a look at the artifact here :
>> http://people.apache.org/~jvermillard/mina-3.0.0-M1-vote/
>>
>> and vote :
>>
>> [ ] +1 release Apache MINA 3.0.0-M1
>> [ ] +0 I don't care
>> [ ] -1 don't release !
>> --
>> Julien Vermillard  http://people.apache.org/~jvermillard/
>>
>
>
>
> --
> thanks
> ashish
>
> Blog: http://www.ashishpaliwal.com/blog
> My Photo Galleries: http://www.pbase.com/ashishpaliwal


RE: LIST command behaviour

2013-07-10 Thread Uma Maheswara Rao G
Thanks a lot, Niklas for your quick reply.

You are right, my view implementation did not construct that currentDir. Thanks 
again for the help.
I have just checked the NativeFtpFile view implementation. I think the rootPath 
constructions should be similar.

Regards,
Uma

-Original Message-
From: Niklas Gustavsson [mailto:nik...@protocol7.com] 
Sent: 09 July 2013 21:05
To: dev@mina.apache.org
Subject: Re: LIST command behaviour

On Wed, Jul 10, 2013 at 7:56 AM, Uma Maheswara Rao G  
wrote:
>   I am implementing HDFSFileSystemView instead of NativeFileSystemView. Most 
> of the commands working with my changes. I met one scenario when I try to 
> connect to FTPServer via FileZilla client.
> When I try to open one particular folder, it is sending CWD command first to 
> change the currentWorking directory. Things are happening fine. The current 
> directory changed to the specified folder excluding root path.
> Next command would be LIST command. Here looks like FileZilla does not 
> specify the arguments. So, as per the documentation of LIST command, if 
> argument is null, it should list the files from currentWorkingDirectory. But 
> here I am seeing that Passed argement coming up with root path. So, list 
> command is always giving the listing result root path only.  I am not sure I 
> missed something here.
>
>// parse argument
>ListArgument parsedArg = ListArgumentParser.parse(request
>  .getArgument());
>
> Any idea what could be the behavior here?

Not sure I follow. Your view implementation must keep state on what's the cwd 
and merge that with parsedArg.getFile() in the code above.
What am I missing here?

/niklas


Re: [VOTE] release Apache MINA 3.0.0-M1

2013-07-10 Thread Julien Vermillard
ok, let's cancel the vote and revert the release for fixing NOTICE files.
--
Julien Vermillard  http://people.apache.org/~jvermillard/


On Wed, Jul 10, 2013 at 10:36 AM, Julien Vermillard
 wrote:
> Keys file are here : http://apache.org/dist/mina/KEYS
> --
> Julien Vermillard  http://people.apache.org/~jvermillard/
>
>
> On Wed, Jul 10, 2013 at 8:01 AM, Ashish  wrote:
>> Build works fine, Rat check passes.
>>
>> Licence file needs to be updated to have entry for Netty, Log4j and Thrift
>> are missing. Need to be added.
>>
>> Also do we need to provided .bz2 files as well? Most projects I have seen
>> don't provide this.
>> Haven't verified the signatures yet. I remember KEYS being moved to some
>> central place. Not sure where.
>>
>>
>> On Tue, Jul 9, 2013 at 7:57 PM, Julien Vermillard 
>> wrote:
>>
>>> Hi !
>>>
>>> Here the first milestone release for MINA 3.
>>>
>>> Please take a look at the artifact here :
>>> http://people.apache.org/~jvermillard/mina-3.0.0-M1-vote/
>>>
>>> and vote :
>>>
>>> [ ] +1 release Apache MINA 3.0.0-M1
>>> [ ] +0 I don't care
>>> [ ] -1 don't release !
>>> --
>>> Julien Vermillard  http://people.apache.org/~jvermillard/
>>>
>>
>>
>>
>> --
>> thanks
>> ashish
>>
>> Blog: http://www.ashishpaliwal.com/blog
>> My Photo Galleries: http://www.pbase.com/ashishpaliwal


Re: LIST command behaviour

2013-07-10 Thread Niklas Gustavsson
On Wed, Jul 10, 2013 at 7:56 AM, Uma Maheswara Rao G
 wrote:
>   I am implementing HDFSFileSystemView instead of NativeFileSystemView. Most 
> of the commands working with my changes. I met one scenario when I try to 
> connect to FTPServer via FileZilla client.
> When I try to open one particular folder, it is sending CWD command first to 
> change the currentWorking directory. Things are happening fine. The current 
> directory changed to the specified folder excluding root path.
> Next command would be LIST command. Here looks like FileZilla does not 
> specify the arguments. So, as per the documentation of LIST command, if 
> argument is null, it should list the files from currentWorkingDirectory. But 
> here I am seeing that
> Passed argement coming up with root path. So, list command is always giving 
> the listing result root path only.  I am not sure I missed something here.
>
>// parse argument
>ListArgument parsedArg = ListArgumentParser.parse(request
>  .getArgument());
>
> Any idea what could be the behavior here?

Not sure I follow. Your view implementation must keep state on what's
the cwd and merge that with parsedArg.getFile() in the code above.
What am I missing here?

/niklas


Re: [VOTE] release Apache MINA 3.0.0-M1

2013-07-10 Thread Julien Vermillard
Keys file are here : http://apache.org/dist/mina/KEYS
--
Julien Vermillard  http://people.apache.org/~jvermillard/


On Wed, Jul 10, 2013 at 8:01 AM, Ashish  wrote:
> Build works fine, Rat check passes.
>
> Licence file needs to be updated to have entry for Netty, Log4j and Thrift
> are missing. Need to be added.
>
> Also do we need to provided .bz2 files as well? Most projects I have seen
> don't provide this.
> Haven't verified the signatures yet. I remember KEYS being moved to some
> central place. Not sure where.
>
>
> On Tue, Jul 9, 2013 at 7:57 PM, Julien Vermillard 
> wrote:
>
>> Hi !
>>
>> Here the first milestone release for MINA 3.
>>
>> Please take a look at the artifact here :
>> http://people.apache.org/~jvermillard/mina-3.0.0-M1-vote/
>>
>> and vote :
>>
>> [ ] +1 release Apache MINA 3.0.0-M1
>> [ ] +0 I don't care
>> [ ] -1 don't release !
>> --
>> Julien Vermillard  http://people.apache.org/~jvermillard/
>>
>
>
>
> --
> thanks
> ashish
>
> Blog: http://www.ashishpaliwal.com/blog
> My Photo Galleries: http://www.pbase.com/ashishpaliwal