blob: df11642c1592e7ab821a87ca8e3e8ca9b840991a [file] [log] [blame]
Chip Boling6e27b352020-02-14 09:10:01 -06001/*
2 * Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
Andrea Campanella7167ebb2020-02-24 09:56:38 +01003 * Copyright 2020-present Open Networking Foundation
4
Chip Boling6e27b352020-02-14 09:10:01 -06005 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
Andrea Campanella7167ebb2020-02-24 09:56:38 +01008
Chip Boling6e27b352020-02-14 09:10:01 -06009 * http://www.apache.org/licenses/LICENSE-2.0
Andrea Campanella7167ebb2020-02-24 09:56:38 +010010
Chip Boling6e27b352020-02-14 09:10:01 -060011 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
David K. Bainbridgeadf422d2021-04-09 16:06:41 +000017/*
Chip Boling6e27b352020-02-14 09:10:01 -060018 * NOTE: This file was generated, manual edits will be overwritten!
19 *
20 * Generated by 'goCodeGenerator.py':
21 * https://github.com/cboling/OMCI-parser/README.md
22 */
23
24package generated
25
26import "github.com/deckarep/golang-set"
27
28// TcpUdpConfigDataClassID is the 16-bit ID for the OMCI
29// Managed entity TCP/UDP config data
Chip Boling610117d2021-09-09 11:24:34 -050030const TcpUdpConfigDataClassID = ClassID(136) // 0x0088
Chip Boling6e27b352020-02-14 09:10:01 -060031
32var tcpudpconfigdataBME *ManagedEntityDefinition
33
Chip Boling610117d2021-09-09 11:24:34 -050034// TcpUdpConfigData (Class ID: #136 / 0x0088)
Chip Boling6e27b352020-02-14 09:10:01 -060035// The TCP/UDP config data ME configures services based on the transmission control protocol (TCP)
36// and user datagram protocol (UDP) that are offered from an IP host. If a non-OMCI interface is
37// used to manage an IP service, this ME is unnecessary; the non-OMCI interface supplies the
38// necessary data.
39//
40// An instance of this ME is created and deleted on request of the OLT.
41//
42// Relationships
43// One or more instances of this ME may be associated with an instance of an IP host config data or
44// IPv6 host config data ME.
45//
46// Attributes
47// Managed Entity Id
Chip Boling610117d2021-09-09 11:24:34 -050048// This attribute uniquely identifies each instance of this ME. It is recommended that the ME ID be
49// the same as the port number. (R, setbycreate) (mandatory) (2-bytes)
Chip Boling6e27b352020-02-14 09:10:01 -060050//
51// Port Id
Chip Boling610117d2021-09-09 11:24:34 -050052// This attribute specifies the port number that offers the TCP/UDP service. (R,-W, setbycreate)
53// (mandatory) (2-bytes)
Chip Boling6e27b352020-02-14 09:10:01 -060054//
55// Protocol
Chip Boling610117d2021-09-09 11:24:34 -050056// This attribute specifies the protocol type as defined by [b-IANA] (protocol numbers), for
57// example UDP (0x11). (R,-W, setbycreate) (mandatory) (1-byte)
Chip Boling6e27b352020-02-14 09:10:01 -060058//
59// Tos_Diffserv Field
60// TOS/diffserv field: This attribute specifies the value of the TOS/diffserv field of the IPv4
61// header. The contents of this attribute may contain the type of service per [IETF RFC 2474] or a
62// DSCP. Valid values for DSCP are as defined by [b-IANA] (differentiated services field code
63// points). (R,-W, set-by-create) (mandatory) (1-byte)
64//
65// Ip Host Pointer
Chip Boling610117d2021-09-09 11:24:34 -050066// This attribute points to the IP host config data or IPv6 host config data ME associated with
67// this TCP/UDP data. Any number of ports and protocols may be associated with an IP host. (R, W,
68// set-by-create) (mandatory) (2 bytes)
Chip Boling6e27b352020-02-14 09:10:01 -060069//
70type TcpUdpConfigData struct {
71 ManagedEntityDefinition
72 Attributes AttributeValueMap
73}
74
75func init() {
76 tcpudpconfigdataBME = &ManagedEntityDefinition{
77 Name: "TcpUdpConfigData",
78 ClassID: 136,
79 MessageTypes: mapset.NewSetWith(
80 Create,
81 Delete,
82 Get,
83 Set,
84 ),
85 AllowedAttributeMask: 0xf000,
86 AttributeDefinitions: AttributeDefinitionMap{
87 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
88 1: Uint16Field("PortId", UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 1),
89 2: ByteField("Protocol", UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2),
90 3: ByteField("TosDiffservField", UnsignedIntegerAttributeType, 0x2000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 3),
91 4: Uint16Field("IpHostPointer", UnsignedIntegerAttributeType, 0x1000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 4),
92 },
93 Access: CreatedByOlt,
94 Support: UnknownSupport,
95 }
96}
97
98// NewTcpUdpConfigData (class ID 136) creates the basic
99// Managed Entity definition that is used to validate an ME of this type that
100// is received from or transmitted to the OMCC.
101func NewTcpUdpConfigData(params ...ParamData) (*ManagedEntity, OmciErrors) {
102 return NewManagedEntity(*tcpudpconfigdataBME, params...)
103}