/usr/share/perl5/SyncUtil/ConduitHost.pm is in syncbbdb 2.3-6.2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | #------------------------------------------------------------------------------
# $Date: 2000/08/06 19:45:02 $
# RCS: $Id: ConduitHost.pm,v 1.6 2000/08/06 19:45:02 deweese Exp $
#------------------------------------------------------------------------------
package ConduitHost;
use strict;
use PDA::Pilot;
sub new {
my $type = shift;
my $self = {};
bless ($self, $type);
$self->{'prefix'} = "ATTN: ";
$self;
}
sub finish {
}
sub output {
my $self = shift;
my $str = shift;
print STDOUT $self->{'prefix'} . $str;
}
sub status {
my $self = shift;
my $msg = shift;
my $done = shift;
print STDOUT "$msg, completed: $done%\n";
}
sub lastSyncDate {
my $self = shift;
return undef;
}
sub thisPC {
my $self = shift;
return undef;
}
# This should be called every now and then so the host can deal with
# anything that needs to be done (tickling the Pilot, updating the UI
# you get the idea..
sub update {
}
1;
|