Add License information in every source file or script.
[sim/o1-interface.git] / ntsimulator / src / utils / utils.c
index 745718b..af40454 100644 (file)
@@ -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;