blob: 19c6a674cd1a373cf15a875da64fd6ca84c860d5 [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
20// #cgo CFLAGS: -I../asn1codec/inc/ -I../asn1codec/e2ap_engine/
21// #cgo LDFLAGS: -L ../asn1codec/lib/ -L../asn1codec/e2ap_engine/ -le2ap_codec -lasncodec
22// #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 {
38 return fmt.Errorf("#reset_response.prepareX2ResetResponsePDU - failed to build and pack the reset response message %s ", C.GoString(&errorBuffer[0]))
39
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}