Files @ 03aea55e2921
Branch filter:

Location: libtransport.git/msvc-deps/curl/tests/server/base64.pl

Anton Ryzhov
Correctly bind to local network
Correct non-root skype backend launch (D-BUS needs to write to ~/)
1
2
3
4
5
6
7
8
9
#!/usr/bin/perl

use MIME::Base64 qw(encode_base64);

my $buf;
while(read(STDIN, $buf, 60*57)) {
    my $enc = encode_base64($buf);
    print "$enc";
}