class Construqt::Flavour::IpsecDelegate

Public Class Methods

new(ipsec) click to toggle source
# File lib/construqt/flavour/delegates.rb, line 347
def initialize(ipsec)
  self.delegate = ipsec
end

Public Instance Methods

_ident() click to toggle source
# File lib/construqt/flavour/delegates.rb, line 387
def _ident
  "Ipsec_#{cfg.left.interface.name}_#{cfg.right.interface.name}"
end
cfg() click to toggle source
# File lib/construqt/flavour/delegates.rb, line 375
def cfg
  self.delegate.cfg
end
cfg=(a) click to toggle source
# File lib/construqt/flavour/delegates.rb, line 371
def cfg=(a)
  self.delegate.cfg = a
end
host() click to toggle source
# File lib/construqt/flavour/delegates.rb, line 351
def host
  self.delegate.host
end
interface() click to toggle source
# File lib/construqt/flavour/delegates.rb, line 383
def interface
  self.delegate.interface
end
interface=(a) click to toggle source
# File lib/construqt/flavour/delegates.rb, line 379
def interface=(a)
  self.delegate.interface = a
end
my() click to toggle source
# File lib/construqt/flavour/delegates.rb, line 355
def my
  self.delegate.my
end
other() click to toggle source
# File lib/construqt/flavour/delegates.rb, line 367
def other
  self.delegate.other
end
other=(a) click to toggle source
# File lib/construqt/flavour/delegates.rb, line 363
def other=(a)
  self.delegate.other = a
end
remote() click to toggle source
# File lib/construqt/flavour/delegates.rb, line 359
def remote
  self.delegate.remote
end