SSH::RPC::Shell - The shell, or server side, of an RPC call over SSH.


SSH-RPC documentation  | view source Contained in the SSH-RPC distribution.

Index


NAME

Top

SSH::RPC::Shell - The shell, or server side, of an RPC call over SSH.

SYNOPSIS

Top

To make your own shell with it's own methods:

    package MyShell;

    use base 'SSH::RPC::Shell';

    sub run_time {
        my ($class, $args) = @_;
        return {
            status      => 200,
            response    => time(),
            };
    }

    1;




To create a usuable shell:

    #!/usr/bin/perl

    use strict;
    use MyShell;

    MyShell->run();




DESCRIPTION

Top

SSH::RPC::Shell allows you to quickly implement your own shells that are remotely callable with SSH::RPC::Client.

METHODS

Top

The following methods are available from this class.

processRequest ( request )

run ()

Class method. This method is executed to invoke the shell.

run_noop ()

Class method. This subroutine just returns a successful status so you know that communication is working.

LEGAL

Top


SSH-RPC documentation  | view source Contained in the SSH-RPC distribution.