X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=ntsimulator%2Fsrc%2Futils%2Futils.c;h=af40454dbb406aeba121c0c3c23d9855014b97d8;hb=0c00182421feb00a63a76555844dba5b72639b8e;hp=745718bf84d3638f5c7a24d8db834947c8b2f4d4;hpb=29ce368a8b49cb41f3a1640581ff9958ea50ad8c;p=sim%2Fo1-interface.git diff --git a/ntsimulator/src/utils/utils.c b/ntsimulator/src/utils/utils.c index 745718b..af40454 100644 --- a/ntsimulator/src/utils/utils.c +++ b/ntsimulator/src/utils/utils.c @@ -1,9 +1,19 @@ -/* - * utils.c - * - * Created on: Feb 19, 2019 - * Author: parallels - */ +/************************************************************************* +* +* Copyright 2019 highstreet technologies GmbH and others +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* 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. +***************************************************************************/ #include "utils.h" @@ -192,9 +202,6 @@ cJSON* vesCreateCommonEventHeader(char *domain, char *event_type, char *source_n char dateAndTime[50]; getCurrentDateAndTime(dateAndTime); - char hostname[100]; - sprintf(hostname, "%s", getenv("HOSTNAME")); - long int useconds = getMicrosecondsSinceEpoch; cJSON *commonEventHeader = cJSON_CreateObject(); @@ -211,7 +218,7 @@ cJSON* vesCreateCommonEventHeader(char *domain, char *event_type, char *source_n } char eventId[200]; - sprintf(eventId, "%s_%s", hostname, dateAndTime); + sprintf(eventId, "%s_%s", source_name, dateAndTime); if (cJSON_AddStringToObject(commonEventHeader, "eventId", eventId) == NULL) { @@ -252,7 +259,7 @@ cJSON* vesCreateCommonEventHeader(char *domain, char *event_type, char *source_n return NULL; } - if (cJSON_AddStringToObject(commonEventHeader, "reportingEntityName", hostname) == NULL) + if (cJSON_AddStringToObject(commonEventHeader, "reportingEntityName", source_name) == NULL) { printf("Could not create JSON object: reportingEntityName\n"); return NULL;