00001 /****************************************************************************** 00002 * Copyright (C) 2013-2014 by Alexander Rykovanov * 00003 * rykovanov.as@gmail.com * 00004 * * 00005 * This library is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU Lesser General Public License as * 00007 * published by the Free Software Foundation; version 3 of the License. * 00008 * * 00009 * This library is distributed in the hope that it will be useful, * 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00012 * GNU Lesser General Public License for more details. * 00013 * * 00014 * You should have received a copy of the GNU Lesser General Public License * 00015 * along with this library; if not, write to the * 00016 * Free Software Foundation, Inc., * 00017 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * 00018 ******************************************************************************/ 00019 00020 00021 #include "opc_tcp_async_parameters.h" 00022 00023 namespace OpcUa 00024 { 00025 namespace Server 00026 { 00027 00028 AsyncOpcTcp::Parameters GetOpcTcpParameters(const Common::AddonParameters& addonParams) 00029 { 00030 AsyncOpcTcp::Parameters result; 00031 for (const Common::Parameter& param : addonParams.Parameters) 00032 { 00033 if (param.Name == "debug") 00034 result.DebugMode = param.Value == "false" || param.Value == "0" ? false : true; 00035 } 00036 return result; 00037 } 00038 00039 } // namespace UaServer 00040 } // namespace OpcUa