X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=E2Manager%2Fe2pdus%2Fx2_setup_requests.go;h=7b91f5a255bd96c3cee452627bd516249704c938;hb=76709204dfd7968156b5fa81190f146a8991812d;hp=52613f757db2140f59a6646e0af1e5072ba6916e;hpb=6df73c6bad82b1cbc3fe487bbe746b0c3b141b80;p=ric-plt%2Fe2mgr.git diff --git a/E2Manager/e2pdus/x2_setup_requests.go b/E2Manager/e2pdus/x2_setup_requests.go index 52613f7..7b91f5a 100644 --- a/E2Manager/e2pdus/x2_setup_requests.go +++ b/E2Manager/e2pdus/x2_setup_requests.go @@ -1,5 +1,4 @@ -/******************************************************************************* - * +/* * Copyright (c) 2019 AT&T Intellectual Property. * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -13,8 +12,13 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * - *******************************************************************************/ + */ + +/* + * This source code is part of the near-RT RIC (RAN Intelligent Controller) + * platform project (RICP). + */ + package e2pdus // #cgo CFLAGS: -I../3rdparty/asn1codec/inc/ -I../3rdparty/asn1codec/e2ap_engine/ @@ -25,7 +29,6 @@ import "C" import ( "fmt" "github.com/pkg/errors" - "os" "unsafe" ) @@ -129,9 +132,7 @@ func parseRicID(ricId string) error { func init() { var err error - ricId := os.Getenv(EnvRicId) - //ricId="bbbccc-ffff0e/20" - //ricId="bbbccc-abcd0e/20" + ricId := "bbbccc-abcd0e/20" if err = parseRicID(ricId); err != nil { panic(err) }