[netsniff-ng] Re: [PATCH] flowtop: Redraw screen in 1s if no key was pressed

2015-11-06 Thread Tobias Klauser
On 2015-11-05 at 23:07:45 +0100, Vadim Kochan wrote: > Seems like screen is updating too frequently which > may block some terminals, so lets do it once in 1s > but only if no key was pressed. > > Signed-off-by: Vadim Kochan Applied, thanks Vadim. -- You

[netsniff-ng] Re: [PATCH] curvetun: Move copyright text to separate variable

2015-11-06 Thread Tobias Klauser
On 2015-11-05 at 16:38:51 +0100, Vadim Kochan wrote: > Use copyright text from one place when print it in version or help output. > > Signed-off-by: Vadim Kochan Applied, thanks. -- You received this message because you are subscribed to the Google

[netsniff-ng] Re: [PATCH] lookup: Do not panic if conf file does not exist

2015-11-06 Thread Tobias Klauser
On 2015-11-05 at 16:49:29 +0100, Vadim Kochan wrote: > It is not necessary to do not allow run application if > there is no conf file for port resolving, but instead print > message to stderr. Applied, thanks. -- You received this message because you are subscribed to the

[netsniff-ng] [PATCH] build: Check for libnl-route

2015-11-06 Thread Vadim Kochan
libnl-route is used in netsniff-ng tool for dump nlmsg flags. Signed-off-by: Vadim Kochan --- configure | 36 1 file changed, 36 insertions(+) diff --git a/configure b/configure index 5bf898a..edb10fd 100755 --- a/configure +++

Re: [netsniff-ng] Re: [PATCH] build: Check for libnl-route

2015-11-06 Thread Tobias Klauser
On 2015-11-06 at 16:53:02 +0100, Vadim Kochan wrote: > On Fri, Nov 06, 2015 at 04:36:08PM +0100, Tobias Klauser wrote: > > On 2015-11-06 at 15:46:16 +0100, Vadim Kochan wrote: > > > libnl-route is used in netsniff-ng tool for dump nlmsg flags. > > > > > >

Re: [netsniff-ng] Re: [PATCH] build: Check for libnl-route

2015-11-06 Thread Vadim Kochan
On Fri, Nov 06, 2015 at 05:05:38PM +0100, Tobias Klauser wrote: > On 2015-11-06 at 16:53:02 +0100, Vadim Kochan wrote: > > On Fri, Nov 06, 2015 at 04:36:08PM +0100, Tobias Klauser wrote: > > > On 2015-11-06 at 15:46:16 +0100, Vadim Kochan wrote: > > > >

Re: [netsniff-ng] Re: [PATCH] build: Check for libnl-route

2015-11-06 Thread Tobias Klauser
On 2015-11-06 at 17:06:55 +0100, Vadim Kochan wrote: > On Fri, Nov 06, 2015 at 05:05:38PM +0100, Tobias Klauser wrote: > > On 2015-11-06 at 16:53:02 +0100, Vadim Kochan wrote: > > > On Fri, Nov 06, 2015 at 04:36:08PM +0100, Tobias Klauser wrote: > > > > On

Re: [netsniff-ng] Re: [PATCH] build: Check for libnl-route

2015-11-06 Thread Daniel Borkmann
On 11/06/2015 05:06 PM, Vadim Kochan wrote: On Fri, Nov 06, 2015 at 05:05:38PM +0100, Tobias Klauser wrote: On 2015-11-06 at 16:53:02 +0100, Vadim Kochan wrote: On Fri, Nov 06, 2015 at 04:36:08PM +0100, Tobias Klauser wrote: On 2015-11-06 at 15:46:16 +0100, Vadim Kochan

[netsniff-ng] [PATCH 2/3] flowtop: Add runtime command to change rate units

2015-11-06 Thread Vadim Kochan
Add interactive command 'b' to change rate units to show. Signed-off-by: Vadim Kochan --- flowtop.c | 12 1 file changed, 12 insertions(+) diff --git a/flowtop.c b/flowtop.c index 463d12e..a70899a 100644 --- a/flowtop.c +++ b/flowtop.c @@ -1180,6 +1180,12 @@

[netsniff-ng] [PATCH 1/3] flowtop: Add runtime command to show help window

2015-11-06 Thread Vadim Kochan
Show help window by pressing '?' with interactive commands description. Added simple footer bar with help label. Signed-off-by: Vadim Kochan --- flowtop.c | 121 +- 1 file changed, 96 insertions(+), 25 deletions(-)