blob: f59cf44c455669df4b5ed4b308e5ade0cf5cff7f [file] [log] [blame]
Takahiro Suzuki241c10e2020-12-17 20:17:57 +09001/*
2 * Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
3 * Copyright 2020-present Open Networking Foundation
4
5 * 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
8
9 * http://www.apache.org/licenses/LICENSE-2.0
10
11 * 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 */
17 /*
18 * 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// VoipVoiceCtpClassID is the 16-bit ID for the OMCI
29// Managed entity VoIP voice CTP
30const VoipVoiceCtpClassID ClassID = ClassID(139)
31
32var voipvoicectpBME *ManagedEntityDefinition
33
34// VoipVoiceCtp (class ID #139)
35// The VoIP voice CTP defines the attributes necessary to associate a specified VoIP service (SIP,
36// ITUT-H.248) with a POTS UNI. This entity is conditionally required for ONUs that offer VoIP
37// services. If a non-OMCI interface is used to manage VoIP signalling, this ME is unnecessary.
38//
39// An instance of this ME is created and deleted by the OLT. A VoIP voice CTP ME is needed for each
40// PPTP POTS UNI served by VoIP.
41//
42// Relationships
43// An instance of this ME links a PPTP POTS UNI ME with a VoIP media profile and a SIP user data or
44// media gateway controller (MGC) config data ME.
45//
46// Attributes
47// Managed Entity Id
48// Managed entity ID: This attribute uniquely identifies each instance of this ME. (R, setbycreate)
49// (mandatory) (2-bytes)
50//
51// User Protocol Pointer
52// User protocol pointer: This attribute points to signalling protocol data. If the signalling
53// protocol used attribute of the VoIP config data ME specifies that the ONU's signalling protocol
54// is SIP, this attribute points to a SIP user data ME, which in turn points to a SIP agent config
55// data ME. If the signalling protocol is ITU-T-H.248, this attribute points directly to an MGC
56// config data ME. (R,-W, setbycreate) (mandatory) (2-bytes)
57//
58// Pptp Pointer
59// PPTP pointer: This attribute points to the PPTP POTS UNI ME that serves the analogue telephone
60// port. (R,-W, setbycreate) (mandatory) (2-bytes)
61//
62// V O Ip Media Profile Pointer
63// VoIP media profile pointer: This attribute points to an associated VoIP media profile. (R,-W,
64// setbycreate) (mandatory) (2-bytes)
65//
66// Signalling Code
67// (R,-W, setbycreate) (mandatory) (1-byte)
68//
69type VoipVoiceCtp struct {
70 ManagedEntityDefinition
71 Attributes AttributeValueMap
72}
73
74func init() {
75 voipvoicectpBME = &ManagedEntityDefinition{
76 Name: "VoipVoiceCtp",
77 ClassID: 139,
78 MessageTypes: mapset.NewSetWith(
79 Create,
80 Delete,
81 Get,
82 Set,
83 ),
84 AllowedAttributeMask: 0xf000,
85 AttributeDefinitions: AttributeDefinitionMap{
86 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
87 1: Uint16Field("UserProtocolPointer", UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 1),
88 2: Uint16Field("PptpPointer", UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2),
89 3: Uint16Field("VOIpMediaProfilePointer", UnsignedIntegerAttributeType, 0x2000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 3),
90 4: ByteField("SignallingCode", UnsignedIntegerAttributeType, 0x1000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 4),
91 },
92 Access: CreatedByOlt,
93 Support: UnknownSupport,
94 }
95}
96
97// NewVoipVoiceCtp (class ID 139) creates the basic
98// Managed Entity definition that is used to validate an ME of this type that
99// is received from or transmitted to the OMCC.
100func NewVoipVoiceCtp(params ...ParamData) (*ManagedEntity, OmciErrors) {
101 return NewManagedEntity(*voipvoicectpBME, params...)
102}