source: perl/lib/BarnOwl/Message/Loopback.pm @ bcde7926

release-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9
Last change on this file since bcde7926 was ee183be, checked in by Nelson Elhage <nelhage@mit.edu>, 15 years ago
Break perlwrap.pm into multiple files. Break perlwrap.pm out into .pm files in perl/lib. With this commit, we keep perlwrap.pm around and still load it as before. The next commit will delete perlwrap.pm and start loading perl files directly from disk at runtime.
  • Property mode set to 100644
File size: 247 bytes
Line 
1use strict;
2use warnings;
3
4package BarnOwl::Message::Loopback;
5
6use base qw( BarnOwl::Message );
7
8# all loopback messages are private
9sub is_private {
10  return 1;
11}
12
13sub replycmd {return 'loopwrite';}
14sub replysendercmd {return 'loopwrite';}
15
16
171;
Note: See TracBrowser for help on using the repository browser.