Help for this page

Select Code to Download


  1. or download this
    package SUP::ServerConstants;
    
    ...
    use constant SERVER_ID => '44';
    use constant HTTP_PROXY => '';
    use constant PATH_TO_BINARIES = '/var/foo';
    
  2. or download this
    #!/usr/bin/perl -w
    
    ...
    use SUP::ServerConstants qw/PATH_TO_BINARIES/;
    
    print PATH_TO_BINARIES;