max users

2019-04-27 Thread JP
is there a maximum number of users that can be logged in at a given time?

Re: SSL_library_init not found in libssl in current

2019-04-25 Thread JP
sing something?) > > > > > > I'd think so. Just that mail from JP on this thread says the symbol is > > > present on current amd64. I personally have only evbarm current and 8.0 > > > amd64. > > > > Yeah, but it is not present in amd64 -current a

Re: SSL_library_init not found in libssl in current

2019-04-24 Thread JP
SSL_library_init is in there on current amd64. "library 'ssl' is required" -- is libssl on there at all? On Thu, Apr 25, 2019 at 3:20 AM Mayuresh wrote: > > Got this error when trying to build squid: > > checking for SSL_library_init in -lssl... no > configure: error: library 'ssl' is required f

Re: uniq on open streams

2019-04-23 Thread JP
oh i gotcha, the -c; i need this thing on open streams though i guess it's trivial to implement what i need - i did so with lua in a couple line On Tue, Apr 23, 2019 at 7:51 AM JP wrote: > > it should print the line the first time it sees it and not print the > repeats, in my opin

Re: uniq on open streams

2019-04-23 Thread JP
it should print the line the first time it sees it and not print the repeats, in my opinion On Tue, Apr 23, 2019 at 11:45 AM Andreas Krey wrote: > > On Tue, 23 Apr 2019 05:51:19 +0000, JP wrote: > > I had a need to run uniq on an open stream. It doesn't seem to print > &g

uniq on open streams

2019-04-23 Thread JP
I had a need to run uniq on an open stream. It doesn't seem to print the most recent line. $ lua -e 'print("a");print("b");print("c"); repeat until false' |uniq a b ^ should print the c as well, no?