mirror of
https://git.proxmox.com/git/pve-http-server
synced 2025-07-01 04:44:19 +00:00
move abstract fuctions to end of file
This commit is contained in:
parent
b639f458c5
commit
fbc42b33e7
@ -1636,6 +1636,12 @@ sub atfork_handler {
|
||||
warn $@ if $@;
|
||||
}
|
||||
|
||||
sub run {
|
||||
my ($self) = @_;
|
||||
|
||||
$self->{end_cond}->recv;
|
||||
}
|
||||
|
||||
sub new {
|
||||
my ($this, %args) = @_;
|
||||
|
||||
@ -1721,6 +1727,8 @@ sub new {
|
||||
return $self;
|
||||
}
|
||||
|
||||
# abstract functions - subclass should overwrite/implement them
|
||||
|
||||
sub auth_handler {
|
||||
my ($self, $method, $rel_uri, $ticket, $token) = @_;
|
||||
|
||||
@ -1766,10 +1774,5 @@ sub remote_node_ip {
|
||||
# return $remip;
|
||||
}
|
||||
|
||||
sub run {
|
||||
my ($self) = @_;
|
||||
|
||||
$self->{end_cond}->recv;
|
||||
}
|
||||
|
||||
1;
|
||||
|
Loading…
Reference in New Issue
Block a user