Documentation
¶
Overview ¶
Package standards provides international protocol standard integration.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Registry ¶
type Registry struct {
Standards []Standard
}
Registry holds known standards.
func (*Registry) FindByOrg ¶
func (r *Registry) FindByOrg(org StandardOrg) []Standard
FindByOrg finds standards by organization.
func (*Registry) FindByProtocol ¶
FindByProtocol finds standards for a protocol.
type Standard ¶
type Standard struct {
ID string `json:"id"`
Title string `json:"title"`
Org StandardOrg `json:"org"`
Version string `json:"version"`
Protocol string `json:"protocol"`
URL string `json:"url"`
}
Standard represents a protocol standard reference.
type StandardOrg ¶
type StandardOrg string
StandardOrg represents a standards organization.
const ( OrgIETF StandardOrg = "IETF" OrgIEEE StandardOrg = "IEEE" OrgITU StandardOrg = "ITU-T" Org3GPP StandardOrg = "3GPP" )
Click to show internal directories.
Click to hide internal directories.