class Smpp::Pdu::EnquireLinkResponse

Public Class Methods

from_wire_data(seq, status, body) click to toggle source
# File lib/smpp/pdu/enquire_link_response.rb, line 8
def self.from_wire_data(seq, status, body)
  new(seq)
end
new(seq = next_sequence_number) click to toggle source
Calls superclass method Smpp::Pdu::Base::new
# File lib/smpp/pdu/enquire_link_response.rb, line 4
def initialize(seq = next_sequence_number)
  super(ENQUIRE_LINK_RESP, ESME_ROK, seq)
end