Sha256: b95dad5fac83c54c8347e00d5ca19dde81f642a47694dcdeedebc24c026c4d64
Contents?: true
Size: 669 Bytes
Versions: 1
Compression:
Stored size: 669 Bytes
Contents
# Automatically generated on 2015-04-07T10:52:07-07:00 # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct Hello # { # int protocolVersion; # string versionStr<100>; # int listeningPort; # opaque peerID[32]; # }; # # =========================================================================== module Stellar class Hello < XDR::Struct attribute :protocol_version, XDR::Int attribute :version_str, XDR::String[100] attribute :listening_port, XDR::Int attribute :peer_id, XDR::Opaque[32] end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
stellar-base-0.0.1 | generated/stellar/hello.rb |