The test script used is attached to this mail.
What it does:
* It outputs a list of 'a'
* It sleeps 20 seconds
* It outputs a list of 'b'.

It appears that the list server removed the attachment..
inline version of the test script:

$ cat test.pl
#!/usr/bin/perl -l

use strict;
use warnings;

$|++;

my $sleep = shift;
print STDERR "Sending data 'a'";
print "a" x 2048000;
print STDERR "Sending data 'a' done";
sleep $sleep;
print STDERR "Sleep done";
print STDERR "Sending data 'b'";
print "b" x 2048000;
print STDERR "Sending data 'b' done";



--
To unsubscribe from this list go to the following URL and read the
instructions:  https://lists.samba.org/mailman/options/samba

Reply via email to