Updated file headers.
Ylian Saint-Hilaire committed
Jan 9, 2021 at 14:31 UTC
b195852399f7aaa0e7bb625fdf3630c59a738f49
64 files changed
+84
-103
LICENSE
+1
-1
@@ -186,7 +186,7 @@
186
same "printed page" as the copyright notice for easier
187
identification within third-party archives.
188
189
- Copyright 2017-2020 Intel Corporation
189
+ Copyright 2017-2021 Intel Corporation
190
191
Licensed under the Apache License, Version 2.0 (the "License");
192
you may not use this file except in compliance with the License.
agents/meshcmd.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2018-2020 Intel Corporation
2
+Copyright 2018-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
agents/meshcore.js
+19
-38
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2018-2020 Intel Corporation
2
+Copyright 2018-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
@@ -488,31 +488,22 @@ function createMeshCore(agent) {
488
mesh.SendCommand(msg);
489
}
490
491
- // If we are running in Duktape, agent will be null
492
- if (agent == null) {
493
- // Running in native agent, Import libraries
494
- db = require('SimpleDataStore').Shared();
495
- sha = require('SHA256Stream');
496
- mesh = require('MeshAgent');
497
- childProcess = require('child_process');
498
- if (mesh.hasKVM == 1) { // if the agent is compiled with KVM support
499
- // Check if this computer supports a desktop
500
- try
501
- {
502
- if ((process.platform == 'win32') || (process.platform == 'darwin') || (require('monitor-info').kvm_x11_support)) {
503
- meshCoreObj.caps |= 1; meshCoreObjChanged();
504
- } else if (process.platform == 'linux' || process.platform == 'freebsd') {
505
- require('monitor-info').on('kvmSupportDetected', function (value) { meshCoreObj.caps |= 1; meshCoreObjChanged(); });
506
- }
507
- } catch (e) { }
508
- }
509
- } else {
510
- // Running in nodejs
511
- meshCoreObj.value += '-NodeJS';
512
- meshCoreObj.caps = 8;
513
- mesh = agent.getMeshApi();
491
+ // Import libraries
492
+ db = require('SimpleDataStore').Shared();
493
+ sha = require('SHA256Stream');
494
+ mesh = require('MeshAgent');
495
+ childProcess = require('child_process');
496
+ if (mesh.hasKVM == 1) { // if the agent is compiled with KVM support
497
+ // Check if this computer supports a desktop
498
+ try
499
+ {
500
+ if ((process.platform == 'win32') || (process.platform == 'darwin') || (require('monitor-info').kvm_x11_support)) {
501
+ meshCoreObj.caps |= 1; meshCoreObjChanged();
502
+ } else if (process.platform == 'linux' || process.platform == 'freebsd') {
503
+ require('monitor-info').on('kvmSupportDetected', function (value) { meshCoreObj.caps |= 1; meshCoreObjChanged(); });
504
+ }
505
+ } catch (e) { }
506
}
515
-
507
mesh.DAIPC = obj.DAIPC;
508
509
/*
@@ -3945,21 +3936,11 @@ function createMeshCore(agent) {
3936
}
3937
3938
//
3948
-// Module startup
3939
+// Startup for Duktape only. This file is not intended to run in NodeJS.
3940
//
3950
-
3941
try {
3952
- var xexports = null, mainMeshCore = null;
3953
- try { xexports = module.exports; } catch (e) { }
3954
-
3955
- if (xexports != null) {
3956
- // If we are running within NodeJS, export the core
3957
- module.exports.createMeshCore = createMeshCore;
3958
- } else {
3959
- // If we are not running in NodeJS, launch the core
3960
- mainMeshCore = createMeshCore();
3961
- mainMeshCore.start(null);
3962
- }
3942
+ mainMeshCore = createMeshCore();
3943
+ mainMeshCore.start(null);
3944
} catch (e) {
3945
require('MeshAgent').SendCommand({ action: 'msg', type: 'console', value: "uncaughtException2: " + ex });
3946
}
agents/meshinstall-linux.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2020 Intel Corporation
2
+Copyright 2020-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
agents/modules_meshcmd/amt-apfclient.js
+2
-2
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2018-2020 Intel Corporation
2
+Copyright 2018-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
@@ -17,7 +17,7 @@ limitations under the License.
17
/**
18
* @description APF/CIRA Client for Duktape
19
* @author Joko Sastriawan & Ylian Saint-Hilaire
20
-* @copyright Intel Corporation 2020
20
+* @copyright Intel Corporation 2020-2021
21
* @license Apache-2.0
22
* @version v0.0.2
23
*/
agents/modules_meshcmd/amt-lme.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2018-2020 Intel Corporation
2
+Copyright 2018-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
agents/modules_meshcmd/amt-mei.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2018-2020 Intel Corporation
2
+Copyright 2018-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
agents/modules_meshcmd/amt-scanner.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2018-2020 Intel Corporation
2
+Copyright 2018-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
agents/modules_meshcmd/amt-wsman-duk.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2018-2020 Intel Corporation
2
+Copyright 2018-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
agents/modules_meshcmd/amt-wsman.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2018-2020 Intel Corporation
2
+Copyright 2018-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
agents/modules_meshcmd/amt-xml.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2018-2020 Intel Corporation
2
+Copyright 2018-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
agents/modules_meshcmd/amt.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2018-2020 Intel Corporation
2
+Copyright 2018-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
agents/modules_meshcmd/sysinfo.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2019-2020 Intel Corporation
2
+Copyright 2019-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
agents/modules_meshcore/amt-apfclient.js
+2
-2
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2018-2020 Intel Corporation
2
+Copyright 2018-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
@@ -17,7 +17,7 @@ limitations under the License.
17
/**
18
* @description APF/CIRA Client for Duktape
19
* @author Joko Sastriawan & Ylian Saint-Hilaire
20
-* @copyright Intel Corporation 2020
20
+* @copyright Intel Corporation 2020-2021
21
* @license Apache-2.0
22
* @version v0.0.2
23
*/
agents/modules_meshcore/amt-lme.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2018-2020 Intel Corporation
2
+Copyright 2018-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
agents/modules_meshcore/amt-manage.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2018-2020 Intel Corporation
2
+Copyright 2018-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
agents/modules_meshcore/amt-mei.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2018-2020 Intel Corporation
2
+Copyright 2018-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
agents/modules_meshcore/monitor-border.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2018-2020 Intel Corporation
2
+Copyright 2018-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
agents/modules_meshcore/sysinfo.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2019-2020 Intel Corporation
2
+Copyright 2019-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
agents/modules_meshcore/wifi-scanner-windows.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2018-2020 Intel Corporation
2
+Copyright 2018-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
agents/modules_meshcore/wifi-scanner.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2018-2020 Intel Corporation
2
+Copyright 2018-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
agents/modules_meshcore/win-console.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2018-2020 Intel Corporation
2
+Copyright 2018-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
agents/modules_meshcore/win-info.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2019-2020 Intel Corporation
2
+Copyright 2019-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
agents/testsuite.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2017-2020 Intel Corporation
2
+Copyright 2017-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
agents/tinycore.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2018-2020 Intel Corporation
2
+Copyright 2018-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
amt-ider.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description MeshCentral Server IDER handler
3
* @author Ylian Saint-Hilaire & Bryan Roe
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.1
7
*/
amt/amt-ider-module.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2020 Intel Corporation
2
+Copyright 2020-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
amt/amt-ider.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2020 Intel Corporation
2
+Copyright 2020-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
amt/amt-redir-mesh.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2020 Intel Corporation
2
+Copyright 2020-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
amt/amt-setupbin.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2020 Intel Corporation
2
+Copyright 2020-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
amt/amt-wsman-comm.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2020 Intel Corporation
2
+Copyright 2020-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
amt/amt-wsman.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2020 Intel Corporation
2
+Copyright 2020-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
amt/amt-xml.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2020 Intel Corporation
2
+Copyright 2020-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
amt/amt.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2020 Intel Corporation
2
+Copyright 2020-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
amtevents.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description MeshCentral Intel(R) AMT Event Parser
3
* @author Ylian Saint-Hilaire & Bryan Roe
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.1
7
*/
amtmanager.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description MeshCentral Intel AMT manager
3
* @author Ylian Saint-Hilaire
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.1
7
*/
amtscanner.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description MeshCentral Intel(R) AMT Local Scanner
3
* @author Ylian Saint-Hilaire & Joko Sastriawan
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.1
7
*/
amtscript.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @fileoverview Script Compiler / Decompiler / Runner
3
* @author Ylian Saint-Hilaire
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.1.0e
7
*/
certoperations.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description Certificate generator
3
* @author Joko Sastriawan / Ylian Saint-Hilaire
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.1
7
*/
common.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description MeshCentral Common Library
3
* @author Ylian Saint-Hilaire
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.1
7
*/
db.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description MeshCentral database module
3
* @author Ylian Saint-Hilaire
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.2
7
*/
exeHandler.js
+1
-1
@@ -1,5 +1,5 @@
1
/*
2
-Copyright 2018-2020 Intel Corporation
2
+Copyright 2018-2021 Intel Corporation
3
4
Licensed under the Apache License, Version 2.0 (the "License");
5
you may not use this file except in compliance with the License.
interceptor.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description MeshCentral Intel(R) AMT Interceptor
3
* @author Ylian Saint-Hilaire
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.3
7
*/
letsencrypt.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description MeshCentral letsEncrypt module, uses GreenLock to do all the work.
3
* @author Ylian Saint-Hilaire
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.2
7
*/
mcrec.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description MeshCentral MeshAgent
3
* @author Ylian Saint-Hilaire
4
-* @copyright Intel Corporation 2019-2020
4
+* @copyright Intel Corporation 2019-2021
5
* @license Apache-2.0
6
* @version v0.0.1
7
*/
meshaccelerator.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description MeshCentral accelerator
3
* @author Ylian Saint-Hilaire
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.1
7
*/
meshagent.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description MeshCentral MeshAgent communication module
3
* @author Ylian Saint-Hilaire & Bryan Roe
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.1
7
*/
meshcentral.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description MeshCentral main module
3
* @author Ylian Saint-Hilaire
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.1
7
*/
meshdesktopmultiplex.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description MeshCentral remote desktop multiplexor
3
* @author Ylian Saint-Hilaire
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.1
7
*/
meshdevicefile.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description MeshCentral device file download relay module
3
* @author Ylian Saint-Hilaire
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.1
7
*/
meshmail.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description MeshCentral e-mail server communication modules
3
* @author Ylian Saint-Hilaire
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.1
7
*/
meshrelay.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description MeshCentral connection relay module
3
* @author Ylian Saint-Hilaire
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.1
7
*/
meshscanner.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description MeshCentral Mesh Agent Local Scanner
3
* @author Ylian Saint-Hilaire
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.1
7
*/
meshsms.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description MeshCentral SMS gateway communication module
3
* @author Ylian Saint-Hilaire
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.1
7
*/
meshuser.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description MeshCentral MeshAgent
3
* @author Ylian Saint-Hilaire & Bryan Roe
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.1
7
*/
mpsserver.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description MeshCentral Intel(R) AMT MPS server
3
* @author Ylian Saint-Hilaire
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.1
7
*/
mqttbroker.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description MQTT broker reference implementation based on AEDES
3
* @author Joko Banu Sastriawan, Ylian Saint-Hilaire
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.1
7
*/
mstsc.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description MeshCentral MSTSC relay
3
* @author Ylian Saint-Hilaire & Bryan Roe
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.1
7
*/
multiserver.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description MeshCentral Multi-Server Support
3
* @author Ylian Saint-Hilaire
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.1
7
*/
redirserver.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description Meshcentral web server
3
* @author Ylian Saint-Hilaire
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.2
7
*/
swarmserver.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description MeshCentral v1 legacy Swarm Server, used to update agents and get them on MeshCentral2
3
* @author Ylian Saint-Hilaire
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.1
7
*/
translate/translate.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description MeshCentral MeshAgent
3
* @author Ylian Saint-Hilaire
4
-* @copyright Intel Corporation 2019-2020
4
+* @copyright Intel Corporation 2019-2021
5
* @license Apache-2.0
6
* @version v0.0.1
7
*/
webserver.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description MeshCentral web server
3
* @author Ylian Saint-Hilaire
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.1
7
*/
winservice.js
+1
-1
@@ -1,7 +1,7 @@
1
/**
2
* @description Windows Service Launcher
3
* @author Ylian Saint-Hilaire
4
-* @copyright Intel Corporation 2018-2020
4
+* @copyright Intel Corporation 2018-2021
5
* @license Apache-2.0
6
* @version v0.0.1
7
*/