blob: dd3a7fe4f970f8bdef1f599ec216e1714bc53fa3 [file] [log] [blame]
irina79fa3a32019-09-03 12:24:01 +03001/*******************************************************************************
2 *
3 * Copyright (c) 2019 AT&T Intellectual Property.
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 package e2pdus
19
ss412g6df73c62019-11-13 01:03:50 +020020// #cgo CFLAGS: -I../3rdparty/asn1codec/inc/ -I../3rdparty/asn1codec/e2ap_engine/
21// #cgo LDFLAGS: -L ../3rdparty/asn1codec/lib/ -L../3rdparty/asn1codec/e2ap_engine/ -le2ap_codec -lasncodec
irina79fa3a32019-09-03 12:24:01 +030022// #include <x2reset_response_wrapper.h>
23import "C"
24import (
25 "fmt"
26 "unsafe"
27)
28
29var PackedX2ResetResponse []byte
30
31func prepareX2ResetResponsePDU(maxAsn1PackedBufferSize int, maxAsn1CodecMessageBufferSize int) error {
32
33 packedBuffer := make([]C.uchar, maxAsn1PackedBufferSize)
34 errorBuffer := make([]C.char, maxAsn1CodecMessageBufferSize)
35 var payloadSize = C.ulong(maxAsn1PackedBufferSize)
36
37 if status := C.build_pack_x2reset_response(&payloadSize, &packedBuffer[0], C.ulong(maxAsn1CodecMessageBufferSize), &errorBuffer[0]); !status {
irinab2e5e2b2019-09-03 13:42:05 +030038 return fmt.Errorf("#x2_reset_response.prepareX2ResetResponsePDU - failed to build and pack the reset response message %s ", C.GoString(&errorBuffer[0]))
irina79fa3a32019-09-03 12:24:01 +030039
40 }
41 PackedX2ResetResponse = C.GoBytes(unsafe.Pointer(&packedBuffer[0]), C.int(payloadSize))
42
43 return nil
44}
45
46func init() {
47 if err := prepareX2ResetResponsePDU(MaxAsn1PackedBufferSize, MaxAsn1CodecMessageBufferSize); err != nil {
48 panic(err)
49 }
50}