G release step 2 of 2
[ric-plt/e2mgr.git] / E2Manager / e2pdus / x2_setup_requests.go
index b22e59d..7b91f5a 100644 (file)
@@ -1,5 +1,4 @@
-/*******************************************************************************
- *
+/*
  *   Copyright (c) 2019 AT&T Intellectual Property.
  *
  *   Licensed under the Apache License, Version 2.0 (the "License");
  *   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../asn1codec/inc/ -I../asn1codec/e2ap_engine/
-// #cgo LDFLAGS: -L ../asn1codec/lib/ -L../asn1codec/e2ap_engine/ -le2ap_codec -lasncodec
+// #cgo CFLAGS: -I../3rdparty/asn1codec/inc/ -I../3rdparty/asn1codec/e2ap_engine/
+// #cgo LDFLAGS: -L ../3rdparty/asn1codec/lib/ -L../3rdparty/asn1codec/e2ap_engine/ -le2ap_codec -lasncodec
 // #include <asn1codec_utils.h>
 // #include <x2setup_request_wrapper.h>
 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)
        }