This commit is contained in:
13118993771@163.com
2022-04-01 17:03:54 +08:00
commit 5e9d0f1e2d
1528 changed files with 1474439 additions and 0 deletions

BIN
bin/Debug/ARI.EAP.HOST.exe Normal file

Binary file not shown.

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>

BIN
bin/Debug/ARI.EAP.HOST.pdb Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,876 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Common.Logging.Core</name>
</assembly>
<members>
<member name="T:Common.Logging.Factory.StringFormatMethodAttribute">
<summary>
Indicates that the marked method builds string by format pattern and (optional) arguments.
Parameter, which contains format string, should be given in constructor. The format string
should be in <see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])"/>-like form
</summary>
<example><code>
[StringFormatMethod("message")]
public void ShowError(string message, params object[] args) { /* do something */ }
public void Foo() {
ShowError("Failed: {0}"); // Warning: Non-existing argument in format string
}
</code></example>
</member>
<member name="M:Common.Logging.Factory.StringFormatMethodAttribute.#ctor(System.String)">
<param name="formatParameterName">
Specifies which parameter of an annotated method should be treated as format-string
</param>
</member>
<member name="P:Common.Logging.Factory.StringFormatMethodAttribute.FormatParameterName">
<summary>
The name of the string parameter being formatted
</summary>
</member>
<member name="T:Common.Logging.FormatMessageHandler">
<summary>
The type of method that is passed into e.g. <see cref="M:Common.Logging.ILog.Debug(System.Action{Common.Logging.FormatMessageHandler})"/>
and allows the callback method to "submit" it's message to the underlying output system.
</summary>
<param name="format">the format argument as in <see cref="M:System.String.Format(System.String,System.Object[])"/></param>
<param name="args">the argument list as in <see cref="M:System.String.Format(System.String,System.Object[])"/></param>
<seealso cref="T:Common.Logging.ILog"/>
<author>Erich Eichinger</author>
</member>
<member name="T:Common.Logging.IConfigurationReader">
<summary>
Interface for basic operations to read .NET application configuration information.
</summary>
<remarks>Provides a simple abstraction to handle BCL API differences between .NET 1.x and 2.0. Also
useful for testing scenarios.</remarks>
<author>Mark Pollack</author>
</member>
<member name="M:Common.Logging.IConfigurationReader.GetSection(System.String)">
<summary>
Parses the configuration section and returns the resulting object.
</summary>
<remarks>
<p>
Primary purpose of this method is to allow us to parse and
load configuration sections using the same API regardless
of the .NET framework version.
</p>
See also <c>System.Configuration.ConfigurationManager</c>
</remarks>
<param name="sectionName">Name of the configuration section.</param>
<returns>Object created by a corresponding IConfigurationSectionHandler.</returns>
</member>
<member name="T:Common.Logging.ILog">
<summary>
A simple logging interface abstracting logging APIs.
</summary>
<remarks>
<para>
Implementations should defer calling a message's <see cref="M:System.Object.ToString"/> until the message really needs
to be logged to avoid performance penalties.
</para>
<para>
Each <see cref="T:Common.Logging.ILog"/> log method offers to pass in a <see cref="T:System.Action`1"/> instead of the actual message.
Using this style has the advantage to defer possibly expensive message argument evaluation and formatting (and formatting arguments!) until the message gets
actually logged. If the message is not logged at all (e.g. due to <see cref="T:Common.Logging.LogLevel"/> settings),
you won't have to pay the peformance penalty of creating the message.
</para>
</remarks>
<example>
The example below demonstrates using callback style for creating the message, where the call to the
<see cref="M:System.Random.NextDouble"/> and the underlying <see cref="M:System.String.Format(System.String,System.Object[])"/> only happens, if level <see cref="F:Common.Logging.LogLevel.Debug"/> is enabled:
<code>
Log.Debug( m=&gt;m("result is {0}", random.NextDouble()) );
Log.Debug(delegate(m) { m("result is {0}", random.NextDouble()); });
</code>
</example>
<seealso cref="T:System.Action`1"/>
<author>Mark Pollack</author>
<author>Bruno Baia</author>
<author>Erich Eichinger</author>
</member>
<member name="M:Common.Logging.ILog.Trace(System.Object)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
</summary>
<param name="message">The message object to log.</param>
</member>
<member name="M:Common.Logging.ILog.Trace(System.Object,System.Exception)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Trace"/> level including
the stack trace of the <see cref="T:System.Exception"/> passed
as a parameter.
</summary>
<param name="message">The message object to log.</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.TraceFormat(System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.TraceFormat(System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.TraceFormat(System.IFormatProvider,System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.TraceFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.Trace(System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Trace(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Trace(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Trace(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Debug(System.Object)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
</summary>
<param name="message">The message object to log.</param>
</member>
<member name="M:Common.Logging.ILog.Debug(System.Object,System.Exception)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Debug"/> level including
the stack trace of the <see cref="T:System.Exception"/> passed
as a parameter.
</summary>
<param name="message">The message object to log.</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.DebugFormat(System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.DebugFormat(System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.DebugFormat(System.IFormatProvider,System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.DebugFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.Debug(System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Debug(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Debug(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Debug(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack Debug.</param>
</member>
<member name="M:Common.Logging.ILog.Info(System.Object)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Info"/> level.
</summary>
<param name="message">The message object to log.</param>
</member>
<member name="M:Common.Logging.ILog.Info(System.Object,System.Exception)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Info"/> level including
the stack trace of the <see cref="T:System.Exception"/> passed
as a parameter.
</summary>
<param name="message">The message object to log.</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.InfoFormat(System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.InfoFormat(System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.InfoFormat(System.IFormatProvider,System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.InfoFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.Info(System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Info(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Info(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Info(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack Info.</param>
</member>
<member name="M:Common.Logging.ILog.Warn(System.Object)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
</summary>
<param name="message">The message object to log.</param>
</member>
<member name="M:Common.Logging.ILog.Warn(System.Object,System.Exception)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Warn"/> level including
the stack trace of the <see cref="T:System.Exception"/> passed
as a parameter.
</summary>
<param name="message">The message object to log.</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.WarnFormat(System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.WarnFormat(System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.WarnFormat(System.IFormatProvider,System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.WarnFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.Warn(System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Warn(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Warn(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Warn(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack Warn.</param>
</member>
<member name="M:Common.Logging.ILog.Error(System.Object)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Error"/> level.
</summary>
<param name="message">The message object to log.</param>
</member>
<member name="M:Common.Logging.ILog.Error(System.Object,System.Exception)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Error"/> level including
the stack trace of the <see cref="T:System.Exception"/> passed
as a parameter.
</summary>
<param name="message">The message object to log.</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.ErrorFormat(System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.ErrorFormat(System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.ErrorFormat(System.IFormatProvider,System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.ErrorFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.Error(System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Error(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Error(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Error(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack Error.</param>
</member>
<member name="M:Common.Logging.ILog.Fatal(System.Object)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
</summary>
<param name="message">The message object to log.</param>
</member>
<member name="M:Common.Logging.ILog.Fatal(System.Object,System.Exception)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level including
the stack trace of the <see cref="T:System.Exception"/> passed
as a parameter.
</summary>
<param name="message">The message object to log.</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.FatalFormat(System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.FatalFormat(System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.FatalFormat(System.IFormatProvider,System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.FatalFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.Fatal(System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Fatal(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Fatal(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Fatal(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack Fatal.</param>
</member>
<member name="P:Common.Logging.ILog.IsTraceEnabled">
<summary>
Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
</summary>
</member>
<member name="P:Common.Logging.ILog.IsDebugEnabled">
<summary>
Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
</summary>
</member>
<member name="P:Common.Logging.ILog.IsErrorEnabled">
<summary>
Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Error"/> level.
</summary>
</member>
<member name="P:Common.Logging.ILog.IsFatalEnabled">
<summary>
Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
</summary>
</member>
<member name="P:Common.Logging.ILog.IsInfoEnabled">
<summary>
Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Info"/> level.
</summary>
</member>
<member name="P:Common.Logging.ILog.IsWarnEnabled">
<summary>
Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
</summary>
</member>
<member name="P:Common.Logging.ILog.GlobalVariablesContext">
<summary>
Returns the global context for variables
</summary>
</member>
<member name="P:Common.Logging.ILog.ThreadVariablesContext">
<summary>
Returns the thread-specific context for variables
</summary>
</member>
<member name="T:Common.Logging.ILoggerFactoryAdapter">
<summary>
LoggerFactoryAdapter interface is used internally by LogManager
Only developers wishing to write new Common.Logging adapters need to
worry about this interface.
</summary>
<author>Gilles Bayon</author>
</member>
<member name="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.Type)">
<summary>
Get a ILog instance by type.
</summary>
<param name="type">The type to use for the logger</param>
<returns></returns>
</member>
<member name="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.String)">
<summary>
Get a ILog instance by key.
</summary>
<param name="key">The key of the logger</param>
<returns></returns>
</member>
<member name="T:Common.Logging.ILogManager">
<summary>
Interface for LogManager
</summary>
</member>
<member name="M:Common.Logging.ILogManager.Reset">
<summary>
Reset the <see cref="N:Common.Logging"/> infrastructure to its default settings. This means, that configuration settings
will be re-read from section <c>&lt;common/logging&gt;</c> of your <c>app.config</c>.
</summary>
<remarks>
This is mainly used for unit testing, you wouldn't normally use this in your applications.<br/>
<b>Note:</b><see cref="T:Common.Logging.ILog"/> instances already handed out from this LogManager are not(!) affected.
Resetting LogManager only affects new instances being handed out.
</remarks>
</member>
<member name="M:Common.Logging.ILogManager.Reset(Common.Logging.IConfigurationReader)">
<summary>
Reset the <see cref="N:Common.Logging"/> infrastructure to its default settings. This means, that configuration settings
will be re-read from section <c>&lt;common/logging&gt;</c> of your <c>app.config</c>.
</summary>
<remarks>
This is mainly used for unit testing, you wouldn't normally use this in your applications.<br/>
<b>Note:</b><see cref="T:Common.Logging.ILog"/> instances already handed out from this LogManager are not(!) affected.
Resetting LogManager only affects new instances being handed out.
</remarks>
<param name="reader">
the <see cref="T:Common.Logging.IConfigurationReader"/> instance to obtain settings for
re-initializing the LogManager.
</param>
</member>
<member name="M:Common.Logging.ILogManager.GetCurrentClassLogger">
<summary>
Gets the logger by calling <see cref="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.Type)"/>
on the currently configured <see cref="P:Common.Logging.ILogManager.Adapter"/> using the type of the calling class.
</summary>
<remarks>
This method needs to inspect the StackTrace in order to determine the calling
class. This of course comes with a performance penalty, thus you shouldn't call it too
often in your application.
</remarks>
<seealso cref="M:Common.Logging.ILogManager.GetLogger(System.Type)"/>
<returns>the logger instance obtained from the current <see cref="P:Common.Logging.ILogManager.Adapter"/></returns>
</member>
<member name="M:Common.Logging.ILogManager.GetLogger``1">
<summary>
Gets the logger by calling <see cref="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.Type)"/>
on the currently configured <see cref="P:Common.Logging.ILogManager.Adapter"/> using the specified type.
</summary>
<returns>the logger instance obtained from the current <see cref="P:Common.Logging.ILogManager.Adapter"/></returns>
</member>
<member name="M:Common.Logging.ILogManager.GetLogger(System.Type)">
<summary>
Gets the logger by calling <see cref="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.Type)"/>
on the currently configured <see cref="P:Common.Logging.ILogManager.Adapter"/> using the specified type.
</summary>
<param name="type">The type.</param>
<returns>the logger instance obtained from the current <see cref="P:Common.Logging.ILogManager.Adapter"/></returns>
</member>
<member name="M:Common.Logging.ILogManager.GetLogger(System.String)">
<summary>
Gets the logger by calling <see cref="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.String)"/>
on the currently configured <see cref="P:Common.Logging.ILogManager.Adapter"/> using the specified key.
</summary>
<param name="key">The key.</param>
<returns>the logger instance obtained from the current <see cref="P:Common.Logging.ILogManager.Adapter"/></returns>
</member>
<member name="P:Common.Logging.ILogManager.COMMON_LOGGING_SECTION">
<summary>
The key of the default configuration section to read settings from.
</summary>
<remarks>
You can always change the source of your configuration settings by setting another <see cref="T:Common.Logging.IConfigurationReader"/> instance
on <see cref="P:Common.Logging.ILogManager.ConfigurationReader"/>.
</remarks>
</member>
<member name="P:Common.Logging.ILogManager.ConfigurationReader">
<summary>
Gets the configuration reader used to initialize the LogManager.
</summary>
<remarks>Primarily used for testing purposes but maybe useful to obtain configuration
information from some place other than the .NET application configuration file.</remarks>
<value>The configuration reader.</value>
</member>
<member name="P:Common.Logging.ILogManager.Adapter">
<summary>
Gets or sets the adapter.
</summary>
<value>The adapter.</value>
</member>
<member name="T:Common.Logging.IVariablesContext">
<summary>
A context for logger variables
</summary>
</member>
<member name="M:Common.Logging.IVariablesContext.Set(System.String,System.Object)">
<summary>
Sets the value of a new or existing variable within the global context
</summary>
<param name="key">The key of the variable that is to be added</param>
<param name="value">The value to add</param>
</member>
<member name="M:Common.Logging.IVariablesContext.Get(System.String)">
<summary>
Gets the value of a variable within the global context
</summary>
<param name="key">The key of the variable to get</param>
<returns>The value or null if not found</returns>
</member>
<member name="M:Common.Logging.IVariablesContext.Contains(System.String)">
<summary>
Checks if a variable is set within the global context
</summary>
<param name="key">The key of the variable to check for</param>
<returns>True if the variable is set</returns>
</member>
<member name="M:Common.Logging.IVariablesContext.Remove(System.String)">
<summary>
Removes a variable from the global context by key
</summary>
<param name="key">The key of the variable to remove</param>
</member>
<member name="M:Common.Logging.IVariablesContext.Clear">
<summary>
Clears the global context variables
</summary>
</member>
<member name="T:Common.Logging.LogLevel">
<summary>
The 7 possible logging levels
</summary>
<author>Gilles Bayon</author>
</member>
<member name="F:Common.Logging.LogLevel.All">
<summary>
All logging levels
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Trace">
<summary>
A trace logging level
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Debug">
<summary>
A debug logging level
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Info">
<summary>
A info logging level
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Warn">
<summary>
A warn logging level
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Error">
<summary>
An error logging level
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Fatal">
<summary>
A fatal logging level
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Off">
<summary>
Do not log anything.
</summary>
</member>
</members>
</doc>

Binary file not shown.

Binary file not shown.

2774
bin/Debug/Common.Logging.xml Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,766 @@
<?xml version="1.0" encoding="utf-8"?>
<Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<connectSetting name="ACOAT_01" deviceId="1" remoteIp="7.185.92.72" remotePort="5000" />
<mQConnectionCfg HostName="mq.picaiba.com" VirtualHost="cigs" UserName="ypfqF66wKskKfpkpJdEmfrCMBVpAP98y" Password="g4NtT55HHzXECDig2BWLvtkZRfD8oiMT" Port="5672" ClientProvidedName="ACOAT_01">
<Exchange>ACOAT_01_Exchange</Exchange>
<Exchange_RTDB>cdte</Exchange_RTDB>
<EAP_Request_Queue>ACOAT_01_EAP_Request_Queue</EAP_Request_Queue>
<EAP_Response_Queue>ACOAT_01_EAP_Response_Queue</EAP_Response_Queue>
<MES_Request_Queue>ACOAT_01_MES_Request_Queue</MES_Request_Queue>
<MES_Response_Queue>ACOAT_01_MES_Response_Queue</MES_Response_Queue>
<EAP_Request_Queue_RTDB>logs</EAP_Request_Queue_RTDB>
<EAP_Request_Queue_RoutingKey>ACOAT_01_EAP_Request_Queue_RoutingKey</EAP_Request_Queue_RoutingKey>
<EAP_Response_Queue_RoutingKey>ACOAT_01_EAP_Response_Queue_RoutingKey</EAP_Response_Queue_RoutingKey>
<MES_Request_Queue_RoutingKey>ACOAT_01_MES_Request_Queue_RoutingKey</MES_Request_Queue_RoutingKey>
<MES_Response_Queue_RoutingKey>ACOAT_01_MES_Response_Queue_RoutingKey</MES_Response_Queue_RoutingKey>
<Exchange_Name_Dle>Dead_Letter_Exchange</Exchange_Name_Dle>
<Dead_Letter_RoutingKey>Dead_Letter_RoutingKey</Dead_Letter_RoutingKey>
</mQConnectionCfg>
<httpConfiguration>
<heartBitUrl>http://localhost:8080/api/mq/EquipmentInterfaceStatus/update</heartBitUrl>
<fileDownloadUrl>http://zzdhg.mes.picaiba.com/api/common/attachment/downloadFile</fileDownloadUrl>
<contentType>application/json</contentType>
</httpConfiguration>
<scenarioCollection>
<Scenarios>
<Scenario Name="Init">
<WorkFlows Step="1">
<MessageName>S1F13</MessageName>
<MessageContent>{}</MessageContent>
</WorkFlows>
<WorkFlows Step="2">
<MessageName>S1F14</MessageName>
<MessageContent>{"HCACK":0,"CPNAME":null,"CPACK":null}</MessageContent>
</WorkFlows>
<WorkFlows Step="3">
<MessageName>S1F17</MessageName>
<MessageContent>{}</MessageContent>
</WorkFlows>
<WorkFlows Step="4">
<MessageName>S1F18</MessageName>
<MessageContent>{"ERACK":0}</MessageContent>
</WorkFlows>
<WorkFlows Step="5">
<MessageName>S1F3</MessageName>
<MessageContent>{"DATAID":0,"Events":[]}</MessageContent>
</WorkFlows>
<WorkFlows Step="6">
<MessageName>S1F4</MessageName>
<MessageContent>{"LRACK":0}</MessageContent>
</WorkFlows>
<WorkFlows Step="7">
<MessageName>S6F23</MessageName>
<MessageContent>{"DATAID":0,"Reports":[]}</MessageContent>
</WorkFlows>
<WorkFlows Step="8">
<MessageName>S6F24</MessageName>
<MessageContent>{"DRACK":0}</MessageContent>
</WorkFlows>
<WorkFlows Step="9">
<MessageName>S2F43</MessageName>
<MessageContent>{}</MessageContent>
</WorkFlows>
<WorkFlows Step="10">
<MessageName>S2F44</MessageName>
<MessageContent>{"DRACK":0}</MessageContent>
</WorkFlows>
<WorkFlows Step="11">
<MessageName>S2F37</MessageName>
<MessageContent>{"CEED":false,"CEIDs":[]}</MessageContent>
</WorkFlows>
<WorkFlows Step="12">
<MessageName>S2F38</MessageName>
<MessageContent>{"ERACK":0}</MessageContent>
</WorkFlows>
<WorkFlows Step="13">
<MessageName>S2F35</MessageName>
<MessageContent>{"DATAID":0,"Events":[]}</MessageContent>
</WorkFlows>
<WorkFlows Step="14">
<MessageName>S2F36</MessageName>
<MessageContent>{"LRACK":0}</MessageContent>
</WorkFlows>
<WorkFlows Step="15">
<MessageName>S2F33</MessageName>
<MessageContent>{"DATAID":0,"Reports":[]}</MessageContent>
</WorkFlows>
<WorkFlows Step="16">
<MessageName>S2F34</MessageName>
<MessageContent>{"DRACK":0}</MessageContent>
</WorkFlows>
<WorkFlows Step="17">
<MessageName>S5F3</MessageName>
<MessageContent>{"ALED":0,"ALID":0}</MessageContent>
</WorkFlows>
<WorkFlows Step="18">
<MessageName>S5F4</MessageName>
<MessageContent>{"ACKC5":0}</MessageContent>
</WorkFlows>
<WorkFlows Step="19">
<MessageName>S2F33</MessageName>
<MessageContent>{"DATAID":0,"Reports":[{"RPTID":1,"SVIDs":[900,301,820,400,401],"SVs":[]},{"RPTID":2,"SVIDs":[900,301,820,400,401],"SVs":[]},{"RPTID":3,"SVIDs":[900,301,820,400,401],"SVs":[]},{"RPTID":11,"SVIDs":[900,301,22700],"SVs":[]},{"RPTID":12,"SVIDs":[900,301,22700],"SVs":[]},{"RPTID":21,"SVIDs":[900,301,804,800,801,802,803],"SVs":[]},{"RPTID":22,"SVIDs":[900,301,804,800,801,802,803],"SVs":[]},{"RPTID":23,"SVIDs":[900,301,804,800,801,802,803],"SVs":[]},{"RPTID":30,"SVIDs":[900,301,701,700],"SVs":[]},{"RPTID":40,"SVIDs":[900,301,20024,600,21900,20012],"SVs":[]},{"RPTID":41,"SVIDs":[900,301,20024,600,21900,20012,22201],"SVs":[]},{"RPTID":45,"SVIDs":[900,301,600,21900,20012],"SVs":[]},{"RPTID":46,"SVIDs":[900,301,600,21900,20012],"SVs":[]},{"RPTID":47,"SVIDs":[900,301,20012],"SVs":[]},{"RPTID":60,"SVIDs":[900,20012,20021],"SVs":[]},{"RPTID":70,"SVIDs":[900,301,810],"SVs":[]},{"RPTID":80,"SVIDs":[900,301,1010,1011],"SVs":[]},{"RPTID":90,"SVIDs":[900,301,22800,22900],"SVs":[]},{"RPTID":91,"SVIDs":[900,301,22800,22900],"SVs":[]},{"RPTID":92,"SVIDs":[900,301,22800,22900],"SVs":[]},{"RPTID":93,"SVIDs":[900,301,22800,22900],"SVs":[]},{"RPTID":110,"SVIDs":[900,1021,20021],"SVs":[]},{"RPTID":111,"SVIDs":[900,1021,20021],"SVs":[]}]}</MessageContent>
</WorkFlows>
<WorkFlows Step="20">
<MessageName>S2F34</MessageName>
<MessageContent>{"DRACK":0}</MessageContent>
</WorkFlows>
<WorkFlows Step="21">
<MessageName>S2F35</MessageName>
<MessageContent>{"DATAID":0,"Events":[{"CEID":1,"RPTIDs":[1]},{"CEID":2,"RPTIDs":[2]},{"CEID":3,"RPTIDs":[3]},{"CEID":11,"RPTIDs":[11]},{"CEID":12,"RPTIDs":[12]},{"CEID":21,"RPTIDs":[21]},{"CEID":22,"RPTIDs":[22]},{"CEID":23,"RPTIDs":[23]},{"CEID":30,"RPTIDs":[30]},{"CEID":40,"RPTIDs":[40]},{"CEID":41,"RPTIDs":[41]},{"CEID":45,"RPTIDs":[45]},{"CEID":46,"RPTIDs":[46]},{"CEID":47,"RPTIDs":[47]},{"CEID":60,"RPTIDs":[60]},{"CEID":70,"RPTIDs":[70]},{"CEID":80,"RPTIDs":[80]},{"CEID":90,"RPTIDs":[90]},{"CEID":91,"RPTIDs":[91]},{"CEID":92,"RPTIDs":[92]},{"CEID":93,"RPTIDs":[93]},{"CEID":110,"RPTIDs":[110]},{"CEID":111,"RPTIDs":[111]}]}</MessageContent>
</WorkFlows>
<WorkFlows Step="22">
<MessageName>S2F36</MessageName>
<MessageContent>{"LRACK":0}</MessageContent>
</WorkFlows>
<WorkFlows Step="23">
<MessageName>S2F37</MessageName>
<MessageContent>{"CEED":true,"CEIDs":[1,2,3,11,12,21,22,23,30,40,41,45,46,47,60,70,80,90,91,92,93,110,111]}</MessageContent>
</WorkFlows>
<WorkFlows Step="24">
<MessageName>S2F38</MessageName>
<MessageContent>{"ERACK":0}</MessageContent>
</WorkFlows>
<WorkFlows Step="25">
<MessageName>S5F3</MessageName>
<MessageContent>{"ALED":128,"ALID":0}</MessageContent>
</WorkFlows>
<WorkFlows Step="26">
<MessageName>S5F4</MessageName>
<MessageContent>{"ACKC5":0}</MessageContent>
</WorkFlows>
<WorkFlows Step="27">
<MessageName>S2F43</MessageName>
<MessageContent>{"Events":[{"STRID":5,"EVENTIDs":[1]}],"Events":[{"STRID":6,"EVENTIDs":[11]}],}</MessageContent>
</WorkFlows>
<WorkFlows Step="28">
<MessageName>S2F44</MessageName>
<MessageContent>{"DRACK":0}</MessageContent>
</WorkFlows>
<WorkFlows Step="29">
<MessageName>S1F3</MessageName>
<MessageContent>{"DATAID":0,"Events":[]}</MessageContent>
</WorkFlows>
<WorkFlows Step="30">
<MessageName>S1F4</MessageName>
<MessageContent>{"LRACK":0}</MessageContent>
</WorkFlows>
<WorkFlows Step="31">
<MessageName>S5F5</MessageName>
<MessageContent>{}</MessageContent>
</WorkFlows>
<WorkFlows Step="32">
<MessageName>S5F6</MessageName>
<MessageContent>{}</MessageContent>
</WorkFlows>
<WorkFlows Step="33">
<MessageName>S7F19</MessageName>
<MessageContent>{}</MessageContent>
</WorkFlows>
<WorkFlows Step="34">
<MessageName>S7F20</MessageName>
<MessageContent>{}</MessageContent>
</WorkFlows>
<WorkFlows Step="35">
<MessageName>S2F13</MessageName>
<MessageContent>{}</MessageContent>
</WorkFlows>
<WorkFlows Step="36">
<MessageName>S2F14</MessageName>
<MessageContent>{}</MessageContent>
</WorkFlows>
<WorkFlows Step="37">
<MessageName>S2F15</MessageName>
<MessageContent>{"ECs":[{"ECID":50400,"ECV":"1","ECV_Type":28}],"ECs":[{"ECID":50500,"ECV":"5","ECV_Type":28}]}</MessageContent>
</WorkFlows>
<WorkFlows Step="38">
<MessageName>S2F16</MessageName>
<MessageContent>{"EAC":0}</MessageContent>
</WorkFlows>
<WorkFlows Step="39">
<MessageName>S1F15</MessageName>
<MessageContent>{}</MessageContent>
</WorkFlows>
<WorkFlows Step="40">
<MessageName>S1F16</MessageName>
<MessageContent>{"ERACK":0}</MessageContent>
</WorkFlows>
<WorkFlows Step="41">
<MessageName>S1F17</MessageName>
<MessageContent>{}</MessageContent>
</WorkFlows>
<WorkFlows Step="42">
<MessageName>S1F18</MessageName>
<MessageContent>{"ERACK":0}</MessageContent>
</WorkFlows>
<WorkFlows Step="43">
<MessageName>S1F3</MessageName>
<MessageContent>{}</MessageContent>
</WorkFlows>
<WorkFlows Step="44">
<MessageName>S1F4</MessageName>
<MessageContent>{"SVs":[]}</MessageContent>
</WorkFlows>
<WorkFlows Step="45">
<MessageName>S2F23</MessageName>
<MessageContent>{"TRID":1,"DSPER_hhmmss":"000030","TOTSMP":10,"REPGSZ":1,"SVID":[600]}</MessageContent>
</WorkFlows>
<WorkFlows Step="46">
<MessageName>S2F24</MessageName>
<MessageContent>{}</MessageContent>
</WorkFlows>
</Scenario>
</Scenarios>
</scenarioCollection>
<commandContentCollection>
<commandContents>
<CommandContent name="S1F3">
<content>
<string>Clock</string>
<string>CommunicationState</string>
<string>CurrentControlState</string>
<string>PreviousControlState</string>
<string>CurrentEquipmentState</string>
<string>PreviousEquipmentState</string>
<string>PPExecName</string>
<string>SpoolingState</string>
<string>SpoolCountActual</string>
<string>SpoolCountTotal</string>
</content>
</CommandContent>
<CommandContent name="S2F15_ControlState">
<content>
<string>DefaultControlState</string>
<string>DefaultOnlineSubState</string>
</content>
</CommandContent>
</commandContents>
</commandContentCollection>
<sRDConfiguration>
<ecvs>
<ECV ecid="10000" name="EnableAlarmReportSend" format="B" min="false" max="true" defaultValue="true" description="disable/enable event report send(AlarmDetected, AlarmCleared)" />
<ECV ecid="10001" name="TimeFormat" format="U1" min="0" max="2" defaultValue="2" />
<ECV ecid="10002" name="MaxTerminalMsgLength" format="U4" min="1" max="254" defaultValue="80" description="Total size of all TerminalMessages of one Terminal Service Message" />
<ECV ecid="10003" name="EstablishCommunicationsTimeout" format="U2" min="15" max="9999" defaultValue="30" description="Delay between S1,F13. For details see E30 GEM chapter 4.1.2" />
<ECV ecid="11000" name="DefaultCommunicationState" format="U1" defaultValue="1" description="The default GEM communication state" />
<ECV ecid="11001" name="DefaultControlState" format="U1" defaultValue="1" description="Default GEM control state" />
<ECV ecid="12000" name="DefaultOnlineSubState" format="U1" min="4" max="5" defaultValue="5" description="The default state of the Online GEM control substate 4=Local and 5=Remote" />
<ECV ecid="12001" name="DefaultOfflineSubState" format="U1" defaultValue="3" description="The default state of the Offline GEM control substate" />
<ECV ecid="13000" name="EnableSpooling" format="B" min="F" max="T" defaultValue="T" description="Enable or disable the Spooling State Machine." />
<ECV ecid="13001" name="OverWriteSpool" format="B" min="F" max="T" defaultValue="T" description="Determine whether to overwrite data in the spool area or to discard further messages when the spool area is full as part of the Spooling State Machine." />
<ECV ecid="13002" name="MaxSpoolMessages" format="U4" min="0" max="10000000" defaultValue="100000" description="Maximum number of messages that can be put into the spool area until it is considered full as part of the Spooling State Machine." />
<ECV ecid="13003" name="MaxSpoolTransmit" format="U4" min="0" max="10000000" defaultValue="0" description="Maximum number of messages that the machine will transmit from the spool area in response to an S6F23 (transmit spooled messages) request as part of the Spooling State Machine." />
<ECV ecid="15000" name="MDLN" format="A" description="Equipment model type, 20 bytes" />
<ECV ecid="15001" name="SOFTREV" format="A" description="Software revison, 20 bytes" />
</ecvs>
<svs>
<SV svid="20200" name="AlarmsEnabled" format="L" description="List of all enabled Alarms" />
<SV svid="20201" name="AlarmsSet" format="L" description="List of all active Alarms" />
<SV svid="20202" name="AlarmID" />
<SV svid="20203" name="AlarmText" />
<SV svid="20204" name="AlarmsCategory" />
<SV svid="20300" name="Clock" format="A" description="Equipment's internal clock in the format defined by the TimeFormat value" />
<SV svid="20400" name="CurrentControlState" format="U1" min="1" max="5" defaultValue="5" description="Current State of the Control State Machine" />
<SV svid="20401" name="PreviousControlState" format="U1" min="1" max="5" defaultValue="5" description="pREVIOUS State of the Control State Machine" />
<SV svid="20500" name="EventsEnabled" format="L" description="List of all enabled Events" />
<SV svid="20600" name="PPExecName" format="A" description="The PPID of the currently selected Process Program" />
<SV svid="20701" name="ProcessingState" format="U1" description="Current state of the Processing State Machine." />
<SV svid="20702" name="PreviousProcessingState" format="L" description="The previous processing state of the equipment. " />
<SV svid="20800" name="SpoolCountActual" format="U4" description="Number of messages actually stored in the spool area." />
<SV svid="20801" name="SpoolCountTotal" format="U4" description="Total number of messages put into spool area from the time spooling was activated" />
<SV svid="20802" name="SpoolFullTime" format="A" description="Timestamp from the time the spool last became full." />
<SV svid="20803" name="SpoolStartTime" format="A" description="Timestamp from the time spooling last became active." />
<SV svid="20804" name="SpoolingState" format="U1" min="0" max="6" defaultValue="0" description="The current state of the GEM spooling state machine" />
<SV svid="20810" name="ECID" format="U4" description="Last Change Equipment Constant ID." />
<SV svid="20820" name="CommunicationState" format="U1" min="0" max="4" defaultValue="0" description="Current GEM communication state" />
<SV svid="21010" name="CurrentEquipmentState" format="U2" min="1000" max="6000" defaultValue="4000" />
<SV svid="21011" name="PreviousEquipmentState" format="U2" min="1000" max="6000" defaultValue="4000" description="Previous equipment state." />
<SV svid="21012" name="UserName" format="A" />
<SV svid="21013" name="PreviousUserName" format="A" />
</svs>
<dvs>
<DV dvid="40000" name="SubstrateID" />
<DV dvid="40001" name="LocationID" />
<DV dvid="40002" name="MaterialStatus" />
<DV dvid="40003" name="StateFlag" />
<DV dvid="40004" name="PPChangeStatus" />
<DV dvid="40005" name="PPChangeName" />
<DV dvid="40010" name="Target A" />
<DV dvid="40011" name="Target B" />
<DV dvid="40012" name="Target C" />
<DV dvid="40013" name="Target D" />
<DV dvid="40014" name="Reroute A" />
<DV dvid="40015" name="Reroute B" />
<DV dvid="40016" name="Reroute C" />
<DV dvid="40017" name="Reroute D" />
<DV dvid="41000" name="Data1" />
<DV dvid="41002" name="Data2" format="U1" />
<DV dvid="41003" name="Data3" />
<DV dvid="41004" name="Data4" />
<DV dvid="41005" name="Data5" />
<DV dvid="41006" name="Data6" />
<DV dvid="41007" name="Data7" />
<DV dvid="30507" name="StationID" />
<DV dvid="22600" name="VirtualSubstrateID" />
<DV dvid="20008" name="PortID" />
<DV dvid="25001" name="SourceLocation" />
<DV dvid="250120" name="PalletID" />
<DV dvid="250130" name="Grade" />
<DV dvid="250101" name="ContainerSlotMap" />
<DV dvid="26000" name="SlotList" />
<DV dvid="40006" name="ContainerID" />
<DV dvid="40007" name="SlotID" />
</dvs>
<events>
<EVENT ceid="1" name="EquipmentOffline" reportid="1">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>20400</unsignedInt>
<unsignedInt>20401</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="2" name="ControlStateLocal" reportid="2">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40003</unsignedInt>
<unsignedInt>20400</unsignedInt>
<unsignedInt>20401</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="3" name="ControlStateRemote" reportid="3">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40003</unsignedInt>
<unsignedInt>20400</unsignedInt>
<unsignedInt>20401</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="11" name="AlarmDetected" reportid="11">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40003</unsignedInt>
<unsignedInt>20202</unsignedInt>
<unsignedInt>20203</unsignedInt>
<unsignedInt>20204</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="12" name="AlarmCleared" reportid="12">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40003</unsignedInt>
<unsignedInt>20202</unsignedInt>
<unsignedInt>20203</unsignedInt>
<unsignedInt>20204</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="21" name="SpoolTransmitFailure" reportid="21">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>20400</unsignedInt>
<unsignedInt>20405</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="22" name="SpoolingActivated" reportid="22">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>20400</unsignedInt>
<unsignedInt>20406</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="23" name="SpoolingDeactivated" reportid="23">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>20400</unsignedInt>
<unsignedInt>20407</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="120" name="MaintenanceStart" reportid="120">
<validVariables>
<unsignedInt>20300</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="121" name="MaintenanceEnd" reportid="121">
<validVariables>
<unsignedInt>20300</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="300011" name="Material_Received" reportid="200011">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40003</unsignedInt>
<unsignedInt>40001</unsignedInt>
<unsignedInt>40000</unsignedInt>
<unsignedInt>20600</unsignedInt>
<unsignedInt>40002</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="300012" name="Material_Removed" reportid="200012">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40003</unsignedInt>
<unsignedInt>40000</unsignedInt>
<unsignedInt>40001</unsignedInt>
<unsignedInt>40002</unsignedInt>
<unsignedInt>40010</unsignedInt>
<unsignedInt>40011</unsignedInt>
<unsignedInt>40012</unsignedInt>
<unsignedInt>40013</unsignedInt>
<unsignedInt>40014</unsignedInt>
<unsignedInt>40015</unsignedInt>
<unsignedInt>40016</unsignedInt>
<unsignedInt>40017</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="300013" name="Material_Hold" reportid="200013">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40003</unsignedInt>
<unsignedInt>40000</unsignedInt>
<unsignedInt>40001</unsignedInt>
<unsignedInt>40002</unsignedInt>
<unsignedInt>40010</unsignedInt>
<unsignedInt>40011</unsignedInt>
<unsignedInt>40012</unsignedInt>
<unsignedInt>40013</unsignedInt>
<unsignedInt>40014</unsignedInt>
<unsignedInt>40015</unsignedInt>
<unsignedInt>40016</unsignedInt>
<unsignedInt>40017</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="300014" name="Material_Scrap" reportid="200014">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40003</unsignedInt>
<unsignedInt>40000</unsignedInt>
<unsignedInt>40001</unsignedInt>
<unsignedInt>40002</unsignedInt>
<unsignedInt>40010</unsignedInt>
<unsignedInt>40011</unsignedInt>
<unsignedInt>40012</unsignedInt>
<unsignedInt>40013</unsignedInt>
<unsignedInt>40014</unsignedInt>
<unsignedInt>40015</unsignedInt>
<unsignedInt>40016</unsignedInt>
<unsignedInt>40017</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="300021" name="Process_Start" reportid="200021">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40003</unsignedInt>
<unsignedInt>40000</unsignedInt>
<unsignedInt>20600</unsignedInt>
<unsignedInt>21010</unsignedInt>
<unsignedInt>21011</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="300022" name="Process_Finish" reportid="200022">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40003</unsignedInt>
<unsignedInt>40000</unsignedInt>
<unsignedInt>20600</unsignedInt>
<unsignedInt>21010</unsignedInt>
<unsignedInt>21011</unsignedInt>
<unsignedInt>40002</unsignedInt>
<unsignedInt>41000</unsignedInt>
<unsignedInt>41002</unsignedInt>
<unsignedInt>41003</unsignedInt>
<unsignedInt>41004</unsignedInt>
<unsignedInt>41005</unsignedInt>
<unsignedInt>41006</unsignedInt>
<unsignedInt>41007</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="300032" name="Slotlist" reportid="200032">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>26000</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="300041" name="UserLoggedOn" reportid="200041">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>21012</unsignedInt>
<unsignedInt>21013</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="300042" name="UserLoggedOff" reportid="200042">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>21012</unsignedInt>
<unsignedInt>21013</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="300052" name="ProcessRecipeSelected" reportid="200052">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40003</unsignedInt>
<unsignedInt>40000</unsignedInt>
<unsignedInt>20600</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="300053" name="Parameter_Update_Request" reportid="200053">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>20400</unsignedInt>
<unsignedInt>20420</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="300055" name="Process_Program_Change" reportid="200055">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>20400</unsignedInt>
<unsignedInt>20421</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="300061" name="EquipmentStateChange" reportid="200061">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40003</unsignedInt>
<unsignedInt>21010</unsignedInt>
<unsignedInt>21011</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="300063" name="Machine_Data_1" reportid="200063">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40003</unsignedInt>
<unsignedInt>41000</unsignedInt>
<unsignedInt>41002</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="300064" name="Machine_Data_2" reportid="200064">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>20400</unsignedInt>
<unsignedInt>20425</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="300065" name="Machine_Data_3" reportid="200065">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>20400</unsignedInt>
<unsignedInt>20426</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="300066" name="Machine_Data_4" reportid="200066">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>20400</unsignedInt>
<unsignedInt>20427</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="300067" name="Machine_Data_5" reportid="200067">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>20400</unsignedInt>
<unsignedInt>20428</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="50" name="MaterialReceivedForLSTA" reportid="50">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>30507</unsignedInt>
<unsignedInt>22600</unsignedInt>
<unsignedInt>20008</unsignedInt>
<unsignedInt>40002</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="51" name="MaterialRemovedForLSTA" reportid="51">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40001</unsignedInt>
<unsignedInt>40000</unsignedInt>
<unsignedInt>40002</unsignedInt>
<unsignedInt>40010</unsignedInt>
<unsignedInt>40011</unsignedInt>
<unsignedInt>40012</unsignedInt>
<unsignedInt>40013</unsignedInt>
<unsignedInt>40014</unsignedInt>
<unsignedInt>40015</unsignedInt>
<unsignedInt>40016</unsignedInt>
<unsignedInt>40017</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="52" name="MaterialReceivedForTrans" reportid="52">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40001</unsignedInt>
<unsignedInt>40000</unsignedInt>
<unsignedInt>40002</unsignedInt>
<unsignedInt>40010</unsignedInt>
<unsignedInt>40011</unsignedInt>
<unsignedInt>40012</unsignedInt>
<unsignedInt>40013</unsignedInt>
<unsignedInt>40014</unsignedInt>
<unsignedInt>40015</unsignedInt>
<unsignedInt>40016</unsignedInt>
<unsignedInt>40017</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="53" name="MaterialRemovedForTrans" reportid="53">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40001</unsignedInt>
<unsignedInt>40000</unsignedInt>
<unsignedInt>40002</unsignedInt>
<unsignedInt>40010</unsignedInt>
<unsignedInt>40011</unsignedInt>
<unsignedInt>40012</unsignedInt>
<unsignedInt>40013</unsignedInt>
<unsignedInt>40014</unsignedInt>
<unsignedInt>40015</unsignedInt>
<unsignedInt>40016</unsignedInt>
<unsignedInt>40017</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="145" name="MaterialStoredToContainer" reportid="145">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40001</unsignedInt>
<unsignedInt>20008</unsignedInt>
<unsignedInt>40006</unsignedInt>
<unsignedInt>40007</unsignedInt>
<unsignedInt>40000</unsignedInt>
<unsignedInt>40002</unsignedInt>
<unsignedInt>40010</unsignedInt>
<unsignedInt>40011</unsignedInt>
<unsignedInt>40012</unsignedInt>
<unsignedInt>40013</unsignedInt>
<unsignedInt>40014</unsignedInt>
<unsignedInt>40015</unsignedInt>
<unsignedInt>40016</unsignedInt>
<unsignedInt>40017</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="146" name="MaterialRemovedFromContainer" reportid="146">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40001</unsignedInt>
<unsignedInt>20008</unsignedInt>
<unsignedInt>40006</unsignedInt>
<unsignedInt>40007</unsignedInt>
<unsignedInt>40000</unsignedInt>
<unsignedInt>40002</unsignedInt>
<unsignedInt>40010</unsignedInt>
<unsignedInt>40011</unsignedInt>
<unsignedInt>40012</unsignedInt>
<unsignedInt>40013</unsignedInt>
<unsignedInt>40014</unsignedInt>
<unsignedInt>40015</unsignedInt>
<unsignedInt>40016</unsignedInt>
<unsignedInt>40017</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="142" name="ContainerPlace" reportid="142">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40001</unsignedInt>
<unsignedInt>20008</unsignedInt>
<unsignedInt>40006</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="143" name="ContainerRemove" reportid="143">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40001</unsignedInt>
<unsignedInt>20008</unsignedInt>
<unsignedInt>40006</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="147" name="MaterialStoredToPallet" reportid="147">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40001</unsignedInt>
<unsignedInt>250120</unsignedInt>
<unsignedInt>20008</unsignedInt>
<unsignedInt>40000</unsignedInt>
<unsignedInt>40002</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="148" name="PalletCompleted" reportid="148">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40001</unsignedInt>
<unsignedInt>250120</unsignedInt>
<unsignedInt>20008</unsignedInt>
<unsignedInt>250130</unsignedInt>
<unsignedInt>250101</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="149" name="PalletRemoved" reportid="149">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40001</unsignedInt>
<unsignedInt>250120</unsignedInt>
<unsignedInt>20008</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="56" name="MaterialReceivedForIoPort" reportid="56">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40001</unsignedInt>
<unsignedInt>40000</unsignedInt>
<unsignedInt>40002</unsignedInt>
<unsignedInt>40010</unsignedInt>
<unsignedInt>40011</unsignedInt>
<unsignedInt>40012</unsignedInt>
<unsignedInt>40013</unsignedInt>
<unsignedInt>40014</unsignedInt>
<unsignedInt>40015</unsignedInt>
<unsignedInt>40016</unsignedInt>
<unsignedInt>40017</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="57" name="MaterialRemovedForIoPort" reportid="57">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40001</unsignedInt>
<unsignedInt>40000</unsignedInt>
<unsignedInt>40002</unsignedInt>
<unsignedInt>40010</unsignedInt>
<unsignedInt>40011</unsignedInt>
<unsignedInt>40012</unsignedInt>
<unsignedInt>40013</unsignedInt>
<unsignedInt>40014</unsignedInt>
<unsignedInt>40015</unsignedInt>
<unsignedInt>40016</unsignedInt>
<unsignedInt>40017</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="54" name="MaterialReceivedForFILOBuffer" reportid="54">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40001</unsignedInt>
<unsignedInt>40000</unsignedInt>
<unsignedInt>40002</unsignedInt>
<unsignedInt>40010</unsignedInt>
<unsignedInt>40011</unsignedInt>
<unsignedInt>40012</unsignedInt>
<unsignedInt>40013</unsignedInt>
<unsignedInt>40014</unsignedInt>
<unsignedInt>40015</unsignedInt>
<unsignedInt>40016</unsignedInt>
<unsignedInt>40017</unsignedInt>
</validVariables>
</EVENT>
<EVENT ceid="55" name="MaterialRemovedForFILOBuffer" reportid="55">
<validVariables>
<unsignedInt>20300</unsignedInt>
<unsignedInt>40001</unsignedInt>
<unsignedInt>40000</unsignedInt>
<unsignedInt>40002</unsignedInt>
<unsignedInt>40010</unsignedInt>
<unsignedInt>40011</unsignedInt>
<unsignedInt>40012</unsignedInt>
<unsignedInt>40013</unsignedInt>
<unsignedInt>40014</unsignedInt>
<unsignedInt>40015</unsignedInt>
<unsignedInt>40016</unsignedInt>
<unsignedInt>40017</unsignedInt>
</validVariables>
</EVENT>
</events>
</sRDConfiguration>
</Configuration>

View File

@@ -0,0 +1,945 @@
<?xml version="1.0"?>
<SECSLibrary>
<SECSMessage name="S1F0">
<MessageName>S1F0</MessageName>
<Description>Abort Transation</Description>
<Stream>1</Stream>
<Function>0</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem></DataItem>
</SECSMessage>
<SECSMessage name="S2F0">
<MessageName>S2F0</MessageName>
<Description>Abort Transation</Description>
<Stream>2</Stream>
<Function>0</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem></DataItem>
</SECSMessage>
<SECSMessage name="S3F0">
<MessageName>S3F0</MessageName>
<Description>Abort Transation</Description>
<Stream>3</Stream>
<Function>0</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem></DataItem>
</SECSMessage>
<SECSMessage name="S5F0">
<MessageName>S5F0</MessageName>
<Description>Abort Transation</Description>
<Stream>5</Stream>
<Function>0</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem></DataItem>
</SECSMessage>
<SECSMessage name="S64F0">
<MessageName>S64F0</MessageName>
<Description>Abort Transation</Description>
<Stream>64</Stream>
<Function>0</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem></DataItem>
</SECSMessage>
<SECSMessage name="S7F0">
<MessageName>S7F0</MessageName>
<Description>Abort Transation</Description>
<Stream>7</Stream>
<Function>0</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem></DataItem>
</SECSMessage>
<SECSMessage name="S10F0">
<MessageName>S10F0</MessageName>
<Description>Abort Transation</Description>
<Stream>10</Stream>
<Function>0</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem></DataItem>
</SECSMessage>
<SECSMessage name="S1F1">
<MessageName>S1F1</MessageName>
<Description>Are You There Request</Description>
<Stream>1</Stream>
<Function>1</Function>
<Direction>H&lt;-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem/>
</SECSMessage>
<SECSMessage name="S1F2">
<MessageName>S1F2</MessageName>
<Description>On Line Data</Description>
<Stream>1</Stream>
<Function>2</Function>
<Direction>H&lt;-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="2" Fixed="False" ItemName="">
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S1F3">
<MessageName>S1F3</MessageName>
<Description>Selected Equipment Status Request</Description>
<Stream>1</Stream>
<Function>3</Function>
<Direction>H-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="100" Fixed="false" ItemName="">
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S1F4">
<MessageName>S1F4</MessageName>
<Description>Selected Equipment Status Data</Description>
<Stream>1</Stream>
<Function>4</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="1000" Fixed="false" ItemName="">
<A Count="10" Fixed="false" ItemName="SVID"/>
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S1F13">
<MessageName>S1F13</MessageName>
<Description>On Line Data</Description>
<Stream>1</Stream>
<Function>13</Function>
<Direction>H&lt;-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="2" Fixed="False" ItemName="">
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S1F14">
<MessageName>S1F14</MessageName>
<Description>Selected Equipment Status Request</Description>
<Stream>1</Stream>
<Function>14</Function>
<Direction>H-&gt;E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="2" Fixed="false" ItemName="">
<B Count="1" Fixed="true" ItemName="COMMACK"> </B>
<L Count="0" Fixed="false" ItemName="">
</L>
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S1F15">
<MessageName>S1F15</MessageName>
<Description>Request Equipment Offline</Description>
<Stream>1</Stream>
<Function>15</Function>
<Direction>H&lt;-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem/>
</SECSMessage>
<SECSMessage name="S1F17">
<MessageName>S1F17</MessageName>
<Description>Request Equipment Online</Description>
<Stream>1</Stream>
<Function>17</Function>
<Direction>H&lt;-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem/>
</SECSMessage>
<SECSMessage name="S2F13">
<MessageName>S2F13</MessageName>
<Description>Equipment Constant Request</Description>
<Stream>2</Stream>
<Function>13</Function>
<Direction>H-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="11" Fixed="false" ItemName="">
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S2F15">
<MessageName>S2F15</MessageName>
<Description>New Equipment Constants Send</Description>
<Stream>2</Stream>
<Function>15</Function>
<Direction>H-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="1000" Fixed="false" ItemName="">
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S2F16">
<MessageName>S2F16</MessageName>
<Description>New Equipment Constant Ack.</Description>
<Stream>2</Stream>
<Function>16</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<A Count="1" Fixed="true" ItemName="EAC"/>
</DataItem>
</SECSMessage>
<SECSMessage name="S2F23">
<MessageName>S2F23</MessageName>
<Description>Trace Data Start</Description>
<Stream>2</Stream>
<Function>23</Function>
<Direction>H&lt;-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="5" Fixed="true" ItemName="">
<U4 Count="1" Fixed="True" ItemName="TRID"></U4>
<A Count="1" Fixed="True" ItemName="DSPER_hhmmss"></A>
<U4 Count="1" Fixed="True" ItemName="TOTSMP"></U4>
<U4 Count="1" Fixed="True" ItemName="REPGSZ"></U4>
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S2F31">
<MessageName>S2F31</MessageName>
<Description>Date and Time Set Request (DTS)</Description>
<Stream>2</Stream>
<Function>31</Function>
<Direction>H-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<A Count="12" Fixed="False" ItemName="TIME">20120610070423</A>
</DataItem>
</SECSMessage>
<SECSMessage name="S2F32">
<MessageName>S2F32</MessageName>
<Description>Date and Time Set Acknowledge (DTA)</Description>
<Stream>2</Stream>
<Function>32</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<A Count="1" Fixed="true" ItemName="TIACK">0</A>
</DataItem>
</SECSMessage>
<SECSMessage name="S2F33">
<MessageName>S2F33</MessageName>
<Description>Define Report</Description>
<Stream>2</Stream>
<Function>33</Function>
<Direction>H-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="2" Fixed="True" ItemName="">
<U2 Count="1" Fixed="True" ItemName="DATAID"></U2>
<L Count="1" Fixed="True" ItemName="RPTIDCOUNT">
</L>
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S2F34">
<MessageName>S2F34</MessageName>
<Description>Define Report</Description>
<Stream>2</Stream>
<Function>34</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<B Count="1" Fixed="True" ItemName="DRACK"></B>
</DataItem>
</SECSMessage>
<SECSMessage name="S2F35">
<MessageName>S2F35</MessageName>
<Description>Link Event Report</Description>
<Stream>2</Stream>
<Function>35</Function>
<Direction>H-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="2" Fixed="True" ItemName="">
<U2 Count="1" Fixed="True" ItemName="DATAID"></U2>
<L Count="1" Fixed="True" ItemName="CEIDCOUNT">
</L>
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S2F36">
<Header>
<MessageName>S2F36</MessageName>
<Description>Link Event Report</Description>
<Stream>2</Stream>
<Function>36</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
</Header>
<DataItem>
<B Count="1" Fixed="True" ItemName="LRACK"></B>
</DataItem>
</SECSMessage>
<SECSMessage name="S2F37">
<MessageName>S2F37</MessageName>
<Description>All Enable/Disable Event Report</Description>
<Stream>2</Stream>
<Function>37</Function>
<Direction>H-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="2" Fixed="true" ItemName="">
<BOOLEAN Count="1" Fixed="true" ItemName="CEED"></BOOLEAN>
<L Count="999" Fixed="false" ItemName="">
</L>
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S2F38">
<MessageName>S2F38</MessageName>
<Description>Enable or Disable Event Report Acknowledge</Description>
<Stream>2</Stream>
<Function>38</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<A Count="1" Fixed="true" ItemName="ERACK"> </A>
</DataItem>
</SECSMessage>
<SECSMessage name="S2F41">
<MessageName>S2F41</MessageName>
<Description>Host Command Send:Start/Cancel/Abort/Pause/Resume</Description>
<Stream>2</Stream>
<Function>41</Function>
<Direction>H-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="2" Fixed="true" ItemName="">
<A Count="1" Fixed="true" ItemName="RCMD"></A>
<L Count="1" Fixed="true" ItemName="CP">
</L>
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S2F42">
<MessageName>S2F42</MessageName>
<Description>Host Command Acknowledge</Description>
<Stream>2</Stream>
<Function>42</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="2" Fixed="true" ItemName="">
<B Count="1" Fixed="true" ItemName="RCMD"></B>
<L Count="1" Fixed="False" ItemName=""/>
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S2F43">
<MessageName>S2F43</MessageName>
<Description>Reset Spooling</Description>
<Stream>2</Stream>
<Function>43</Function>
<Direction>H&lt;-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="100" Fixed="true" ItemName="">
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S2F49">
<MessageName>S2F49</MessageName>
<Description>Enhanced Remote Command</Description>
<Stream>2</Stream>
<Function>49</Function>
<Direction>H-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="4" Fixed="True" ItemName="">
<U4 Count="1" Fixed="True" ItemName="DATAID"></U4>
<A Count="1" Fixed="True" ItemName="OBJSPEC"></A>
<A Count="1" Fixed="True" ItemName="RCMD"></A>
<L Count="50" Fixed="True" ItemName="PARAM">
</L>
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S2F50">
<MessageName>S2F50</MessageName>
<Description>DEnhanced Remote Command</Description>
<Stream>2</Stream>
<Function>50</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<B Count="1" Fixed="True" ItemName="DRACK"></B>
</DataItem>
</SECSMessage>
<SECSMessage name="S5F1">
<MessageName>S5F1</MessageName>
<Description>Alarm Report Send</Description>
<Stream>5</Stream>
<Function>1</Function>
<Direction>H&lt;-E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="3" Fixed="true" ItemName="">
<B Count="1" Fixed="false" ItemName="ALCD"></B>
<U4 Count="5" Fixed="false" ItemName="ALID"></U4>
<A Count="80" Fixed="false" ItemName="ALTX"></A>
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S5F2">
<MessageName>S5F2</MessageName>
<Description>Alarm Report Acknowledge</Description>
<Stream>5</Stream>
<Function>2</Function>
<Direction>H-&gt;E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<B Count="1" Fixed="true" ItemName="ACKC5">8</B>
</DataItem>
</SECSMessage>
<SECSMessage name="S6F2">
<MessageName>S6F2</MessageName>
<Description>Trace Data Acknowledge</Description>
<Stream>6</Stream>
<Function>2</Function>
<Direction>H-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<B Count="0" Fixed="false" ItemName="ACKC6">0</B>
</DataItem>
</SECSMessage>
<SECSMessage name="S6F11">
<MessageName>S6F11</MessageName>
<Description>Event Report Send</Description>
<Stream>6</Stream>
<Function>11</Function>
<Direction>H&lt;-E</Direction>
<Wait>True</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="3" Fixed="true" ItemName="">
<U2 Count="0" Fixed="false" ItemName="DATAID"></U2>
<U2 Count="0" Fixed="false" ItemName="CEID"></U2>
<L Count="0" Fixed="false" ItemName="">
</L>
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S6F12">
<MessageName>S6F12</MessageName>
<Description>Event Report Acknowledge</Description>
<Stream>6</Stream>
<Function>12</Function>
<Direction>H-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<B Count="0" Fixed="false" ItemName="ACKC6">0</B>
</DataItem>
</SECSMessage>
<SECSMessage name="S5F3">
<MessageName>S5F3</MessageName>
<Description>Enable/Disable Alarm Send(EAS)</Description>
<Stream>5</Stream>
<Function>3</Function>
<Direction>H-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="3" Fixed="True" ItemName="">
<B Count="1" Fixed="True" ItemName="ALED"></B>
<U2 Count="20" Fixed="True" ItemName="ALID"></U2>
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S5F4">
<MessageName>S5F4</MessageName>
<Description>Enable/Disable Alarm Acknowledge(EAA)</Description>
<Stream>5</Stream>
<Function>4</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<B Count="1" Fixed="True" ItemName="ACKC5">0</B>
</DataItem>
</SECSMessage>
<SECSMessage name="S5F5">
<MessageName>S5F5</MessageName>
<Description>List Alarm Request</Description>
<Stream>5</Stream>
<Function>5</Function>
<Direction>H&lt;-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="0" Fixed="False" ItemName="">
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S6F23">
<MessageName>S6F13</MessageName>
<Description>Transmit Spooling Data</Description>
<Stream>6</Stream>
<Function>23</Function>
<Direction>H&lt;-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<U1 Count="1" Fixed="False" ItemName="RSDC">0</U1>
</DataItem>
</SECSMessage>
<SECSMessage name="S7F1">
<MessageName>S7F1</MessageName>
<Description>Current EPPD Request</Description>
<Stream>7</Stream>
<Function>1</Function>
<Direction>H-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="2" Fixed="false" ItemName="">
<A Count="0" Fixed="false" ItemName="PPID"></A>
<U4 Count="0" Fixed="false" ItemName="Length"></U4>
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S7F2">
<MessageName>S7F2</MessageName>
<Description>Current EPPD Data</Description>
<Stream>7</Stream>
<Function>2</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<B Count="0" Fixed="false" ItemName="ACKC">0</B>
</DataItem>
</SECSMessage>
<SECSMessage name="S7F3">
<MessageName>S7F3</MessageName>
<Description>Current EPPD Request</Description>
<Stream>7</Stream>
<Function>3</Function>
<Direction>H-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="2" Fixed="false" ItemName="">
<A Count="0" Fixed="false" ItemName="3"></A>
<B Count="0" Fixed="false" ItemName="PPBODY"></B>
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S7F4">
<MessageName>S7F4</MessageName>
<Description>Current EPPD Data</Description>
<Stream>7</Stream>
<Function>4</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<B Count="40" Fixed="true" ItemName="ACKC">0</B>
</DataItem>
</SECSMessage>
<SECSMessage name="S7F5">
<MessageName>S7F5</MessageName>
<Description>Current EPPD Request</Description>
<Stream>7</Stream>
<Function>5</Function>
<Direction>H-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<A Count="0" Fixed="False" ItemName="PPID"></A>
</DataItem>
</SECSMessage>
<SECSMessage name="S7F6">
<MessageName>S7F6</MessageName>
<Description>Current EPPD Data</Description>
<Stream>7</Stream>
<Function>6</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="2" Fixed="false" ItemName="">
<A Count="0" Fixed="False" ItemName="PPID"></A>
<B Count="0" Fixed="False" ItemName="PPBODY"></B>
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S7F19">
<MessageName>S7F19</MessageName>
<Description>Current EPPD Request</Description>
<Stream>7</Stream>
<Function>19</Function>
<Direction>H-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem/>
</SECSMessage>
<SECSMessage name="S7F20">
<MessageName>S7F20</MessageName>
<Description>Current EPPD Data</Description>
<Stream>7</Stream>
<Function>20</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="1000" Fixed="false" ItemName="">
<A Count="40" Fixed="true" ItemName="PPID"/>
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S7F17">
<MessageName>S7F17</MessageName>
<Description>Current EPPD Request</Description>
<Stream>7</Stream>
<Function>17</Function>
<Direction>H-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="1000" Fixed="false" ItemName="">
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S7F18">
<MessageName>S7F18</MessageName>
<Description>Current EPPD Data</Description>
<Stream>7</Stream>
<Function>18</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<B Count="40" Fixed="true" ItemName="ACK"></B>
</DataItem>
</SECSMessage>
<SECSMessage name="S7F23">
<MessageName>S7F23</MessageName>
<Description>Formatted Process Program Send</Description>
<Stream>7</Stream>
<Function>23</Function>
<Direction>H&gt;-E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="2" Fixed="true" ItemName="">
<A Count="40" Fixed="true" ItemName="PPID"/>
<L Count="1000" Fixed="false" ItemName="">
<L Count="2" Fixed="true" ItemName="">
<A Count="40" Fixed="true" ItemName="PARAMNAME"/>
<A Count="40" Fixed="true" ItemName="PARAMVALUE"/>
</L>
</L>
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S7F24">
<MessageName>S7F24</MessageName>
<Description>Formatted Process Program Acknowledge</Description>
<Stream>7</Stream>
<Function>24</Function>
<Direction>H-&lt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>True</NoLogging>
<DataItem>
<A Count="1" Fixed="true" ItemName="ACKC7"/>
</DataItem>
</SECSMessage>
<SECSMessage name="S7F25">
<MessageName>S7F25</MessageName>
<Description>Formatted Process Program Send</Description>
<Stream>7</Stream>
<Function>25</Function>
<Direction>H-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<A Count="40" Fixed="true" ItemName="PPID"/>
</DataItem>
</SECSMessage>
<SECSMessage name="S7F26">
<MessageName>S7F26</MessageName>
<Description>Formatted Process Program Data</Description>
<Stream>7</Stream>
<Function>26</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="3" Fixed="true" ItemName="">
<A Count="40" Fixed="true" ItemName="PPID"/>
<A Count="14" Fixed="true" ItemName="LCTIME"/>
<L Count="999" Fixed="false" ItemName="">
<L Count="2" Fixed="true" ItemName="">
<A Count="40" Fixed="true" ItemName="PPARMNAME"/>
<A Count="40" Fixed="true" ItemName="PPARMVALUE"/>
</L>
</L>
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S9F1">
<MessageName>S9F1</MessageName>
<Description>Unrecognized Device ID</Description>
<Stream>9</Stream>
<Function>1</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<B Count="10" Fixed="true" ItemName="MHEAD">0 0 0 0 0 0 0 0 0 0</B>
</DataItem>
</SECSMessage>
<SECSMessage name="S9F3">
<MessageName>S9F3</MessageName>
<Description>Unrecognized Stream Type</Description>
<Stream>9</Stream>
<Function>3</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<B Count="10" Fixed="true" ItemName="MHEAD">0 0 0 0 0 0 0 0 0 0</B>
</DataItem>
</SECSMessage>
<SECSMessage name="S9F5">
<MessageName>S9F5</MessageName>
<Description>Unrecognized Function Type</Description>
<Stream>9</Stream>
<Function>5</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<B Count="10" Fixed="true" ItemName="MHEAD">0 0 0 0 0 0 0 0 0 0</B>
</DataItem>
</SECSMessage>
<SECSMessage name="S9F7">
<MessageName>S9F7</MessageName>
<Description>Illegal Data</Description>
<Stream>9</Stream>
<Function>7</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<B Count="10" Fixed="true" ItemName="MHEAD">0 0 0 0 0 0 0 0 0 0</B>
</DataItem>
</SECSMessage>
<SECSMessage name="S9F9">
<MessageName>S9F9</MessageName>
<Description>Transaction Timer Timeout</Description>
<Stream>9</Stream>
<Function>9</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<B Count="10" Fixed="true" ItemName="SHEAD">0 0 0 0 0 0 0 0 0 0</B>
</DataItem>
</SECSMessage>
<SECSMessage name="S9F11">
<MessageName>S9F11</MessageName>
<Description>Data Too Long</Description>
<Stream>9</Stream>
<Function>11</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<B Count="10" Fixed="true" ItemName="SHEAD">0 0 0 0 0 0 0 0 0 0</B>
</DataItem>
</SECSMessage>
<SECSMessage name="S9F13">
<MessageName>S9F13</MessageName>
<Description>Conversation Timeout</Description>
<Stream>9</Stream>
<Function>13</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="2" Fixed="true" ItemName="">
<A Count="6" Fixed="true" ItemName="MEXP"></A>
<A Count="6" Fixed="true" ItemName="EDID"></A>
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S10F1">
<MessageName>S10F1</MessageName>
<Description>Terminal Request</Description>
<Stream>10</Stream>
<Function>1</Function>
<Direction>H&lt;-E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="2" Fixed="true" ItemName="">
<A Count="2" Fixed="true" ItemName="TID"></A>
<A Count="80" Fixed="true" ItemName="TEXT"></A>
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S10F2">
<MessageName>S10F2</MessageName>
<Description>Terminal Request Acknowledge</Description>
<Stream>10</Stream>
<Function>2</Function>
<Direction>H-&gt;E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<A Count="1" Fixed="true" ItemName="ACKC10">0</A>
</DataItem>
</SECSMessage>
<SECSMessage name="S10F3">
<MessageName>S10F3</MessageName>
<Description>Terminal Request</Description>
<Stream>10</Stream>
<Function>3</Function>
<Direction>H-&gt;E</Direction>
<Wait>True</Wait>
<AutoReply>True</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<L Count="2" Fixed="true" ItemName="">
<B Count="2" Fixed="False" ItemName="TID"></B>
<A Count="80" Fixed="False" ItemName="TEXT"></A>
</L>
</DataItem>
</SECSMessage>
<SECSMessage name="S10F4">
<MessageName>S10F2</MessageName>
<Description>Terminal Request Acknowledge</Description>
<Stream>10</Stream>
<Function>4</Function>
<Direction>H&lt;-E</Direction>
<Wait>False</Wait>
<AutoReply>False</AutoReply>
<NoLogging>False</NoLogging>
<DataItem>
<B Count="1" Fixed="true" ItemName="ACKC10">0</B>
</DataItem>
</SECSMessage>
</SECSLibrary>

View File

@@ -0,0 +1,8 @@
{
"EAPTitle": "AA测试[{count}]台",
"SECSEQPType": "AA", //DA,HA,WB,AA
"QuartzRemotePort": "30145",
"ServerName": "TEST01",
"IsActionJob": true,
"LibraryConfig": "Configuration\\Library\\{eqpType}_SECSLibrary.xml"
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1 @@
TO+NmEh20RU6Ajz1aKvAI++0BcxLzgN9PCZiBq5BWr4=7PnRh6qVjxRu8KbvF5hoOYoDBDPNZt6tsUTXe7b+ySrTkD0duBtqiwhYVRFqC2axVisMoeV6fWgW8nO6Pvj7/qxhXo7+WqY437Vh/JY7RzE7xryHPgf1jnA+kSamMxSF4Z7TFcJJid7XHOd7CbEYpQ==gP+R7YuG8BLDSHGlgWVkVwztLcDeJjg81Xj/dg+rAwoQt43JGaWAIqXUEovEij2+ET+D3bLsTWOVIykjpDQ5kw==7PnRh6qVjxRu8KbvF5hoOYoDBDPNZt6tsUTXe7b+ySrTkD0duBtqiwhYVRFqC2axBxrTOY1NpjfdRCaMFpTucE/xZ/+6ZupOvyLO27MeQck=7PnRh6qVjxRu8KbvF5hoOYoDBDPNZt6tsUTXe7b+ySrTkD0duBtqiwhYVRFqC2axDD0WlCHYT2B2bS0O3qUOew==7PnRh6qVjxRu8KbvF5hoOYoDBDPNZt6tsUTXe7b+ySrTkD0duBtqiwhYVRFqC2axDD0WlCHYT2B2bS0O3qUOew==

Binary file not shown.

11262
bin/Debug/Newtonsoft.Json.xml Normal file

File diff suppressed because it is too large Load Diff

BIN
bin/Debug/Owin.dll Normal file

Binary file not shown.

BIN
bin/Debug/Polly.dll Normal file

Binary file not shown.

BIN
bin/Debug/Polly.pdb Normal file

Binary file not shown.

11610
bin/Debug/Polly.xml Normal file

File diff suppressed because it is too large Load Diff

BIN
bin/Debug/Quartz.dll Normal file

Binary file not shown.

BIN
bin/Debug/Quartz.pdb Normal file

Binary file not shown.

19973
bin/Debug/Quartz.xml Normal file

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

BIN
bin/Debug/Serilog.dll Normal file

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Buffers</name>
</assembly>
<members>
<member name="T:System.Buffers.ArrayPool`1">
<summary>Provides a resource pool that enables reusing instances of type <see cref="T[]"></see>.</summary>
<typeparam name="T">The type of the objects that are in the resource pool.</typeparam>
</member>
<member name="M:System.Buffers.ArrayPool`1.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Buffers.ArrayPool`1"></see> class.</summary>
</member>
<member name="M:System.Buffers.ArrayPool`1.Create">
<summary>Creates a new instance of the <see cref="T:System.Buffers.ArrayPool`1"></see> class.</summary>
<returns>A new instance of the <see cref="System.Buffers.ArrayPool`1"></see> class.</returns>
</member>
<member name="M:System.Buffers.ArrayPool`1.Create(System.Int32,System.Int32)">
<summary>Creates a new instance of the <see cref="T:System.Buffers.ArrayPool`1"></see> class using the specifed configuration.</summary>
<param name="maxArrayLength">The maximum length of an array instance that may be stored in the pool.</param>
<param name="maxArraysPerBucket">The maximum number of array instances that may be stored in each bucket in the pool. The pool groups arrays of similar lengths into buckets for faster access.</param>
<returns>A new instance of the <see cref="System.Buffers.ArrayPool`1"></see> class with the specified configuration.</returns>
</member>
<member name="M:System.Buffers.ArrayPool`1.Rent(System.Int32)">
<summary>Retrieves a buffer that is at least the requested length.</summary>
<param name="minimumLength">The minimum length of the array.</param>
<returns>An array of type <see cref="T[]"></see> that is at least <paramref name="minimumLength">minimumLength</paramref> in length.</returns>
</member>
<member name="M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)">
<summary>Returns an array to the pool that was previously obtained using the <see cref="M:System.Buffers.ArrayPool`1.Rent(System.Int32)"></see> method on the same <see cref="T:System.Buffers.ArrayPool`1"></see> instance.</summary>
<param name="array">A buffer to return to the pool that was previously obtained using the <see cref="M:System.Buffers.ArrayPool`1.Rent(System.Int32)"></see> method.</param>
<param name="clearArray">Indicates whether the contents of the buffer should be cleared before reuse. If <paramref name="clearArray">clearArray</paramref> is set to true, and if the pool will store the buffer to enable subsequent reuse, the <see cref="M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)"></see> method will clear the <paramref name="array">array</paramref> of its contents so that a subsequent caller using the <see cref="M:System.Buffers.ArrayPool`1.Rent(System.Int32)"></see> method will not see the content of the previous caller. If <paramref name="clearArray">clearArray</paramref> is set to false or if the pool will release the buffer, the array&amp;#39;s contents are left unchanged.</param>
</member>
<member name="P:System.Buffers.ArrayPool`1.Shared">
<summary>Gets a shared <see cref="T:System.Buffers.ArrayPool`1"></see> instance.</summary>
<returns>A shared <see cref="System.Buffers.ArrayPool`1"></see> instance.</returns>
</member>
</members>
</doc>

BIN
bin/Debug/System.Memory.dll Normal file

Binary file not shown.

355
bin/Debug/System.Memory.xml Normal file
View File

@@ -0,0 +1,355 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Memory</name>
</assembly>
<members>
<member name="T:System.Span`1">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Span`1.#ctor(`0[])">
<param name="array"></param>
</member>
<member name="M:System.Span`1.#ctor(System.Void*,System.Int32)">
<param name="pointer"></param>
<param name="length"></param>
</member>
<member name="M:System.Span`1.#ctor(`0[],System.Int32)">
<param name="array"></param>
<param name="start"></param>
</member>
<member name="M:System.Span`1.#ctor(`0[],System.Int32,System.Int32)">
<param name="array"></param>
<param name="start"></param>
<param name="length"></param>
</member>
<member name="M:System.Span`1.Clear">
</member>
<member name="M:System.Span`1.CopyTo(System.Span{`0})">
<param name="destination"></param>
</member>
<member name="M:System.Span`1.DangerousCreate(System.Object,`0@,System.Int32)">
<param name="obj"></param>
<param name="objectData"></param>
<param name="length"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.DangerousGetPinnableReference">
<returns></returns>
</member>
<member name="P:System.Span`1.Empty">
<returns></returns>
</member>
<member name="M:System.Span`1.Equals(System.Object)">
<param name="obj"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.Fill(`0)">
<param name="value"></param>
</member>
<member name="M:System.Span`1.GetHashCode">
<returns></returns>
</member>
<member name="P:System.Span`1.IsEmpty">
<returns></returns>
</member>
<member name="P:System.Span`1.Item(System.Int32)">
<param name="index"></param>
<returns></returns>
</member>
<member name="P:System.Span`1.Length">
<returns></returns>
</member>
<member name="M:System.Span`1.op_Equality(System.Span{`0},System.Span{`0})">
<param name="left"></param>
<param name="right"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.op_Implicit(System.ArraySegment{T})~System.Span{T}">
<param name="arraySegment"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.op_Implicit(System.Span{T})~System.ReadOnlySpan{T}">
<param name="span"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.op_Implicit(T[])~System.Span{T}">
<param name="array"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.op_Inequality(System.Span{`0},System.Span{`0})">
<param name="left"></param>
<param name="right"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.Slice(System.Int32)">
<param name="start"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.Slice(System.Int32,System.Int32)">
<param name="start"></param>
<param name="length"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.ToArray">
<returns></returns>
</member>
<member name="M:System.Span`1.TryCopyTo(System.Span{`0})">
<param name="destination"></param>
<returns></returns>
</member>
<member name="T:System.SpanExtensions">
</member>
<member name="M:System.SpanExtensions.AsBytes``1(System.ReadOnlySpan{``0})">
<param name="source"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.AsBytes``1(System.Span{``0})">
<param name="source"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.AsSpan(System.String)">
<param name="text"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.AsSpan``1(System.ArraySegment{``0})">
<param name="arraySegment"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.AsSpan``1(``0[])">
<param name="array"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.CopyTo``1(``0[],System.Span{``0})">
<param name="array"></param>
<param name="destination"></param>
<typeparam name="T"></typeparam>
</member>
<member name="M:System.SpanExtensions.IndexOf(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})">
<param name="span"></param>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOf(System.Span{System.Byte},System.Byte)">
<param name="span"></param>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOf(System.ReadOnlySpan{System.Byte},System.Byte)">
<param name="span"></param>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOf(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})">
<param name="span"></param>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOf``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})">
<param name="span"></param>
<param name="value"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOf``1(System.ReadOnlySpan{``0},``0)">
<param name="span"></param>
<param name="value"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOf``1(System.Span{``0},System.ReadOnlySpan{``0})">
<param name="span"></param>
<param name="value"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOf``1(System.Span{``0},``0)">
<param name="span"></param>
<param name="value"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.Byte,System.Byte,System.Byte)">
<param name="span"></param>
<param name="value0"></param>
<param name="value1"></param>
<param name="value2"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.Byte,System.Byte,System.Byte)">
<param name="span"></param>
<param name="value0"></param>
<param name="value1"></param>
<param name="value2"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.Byte,System.Byte)">
<param name="span"></param>
<param name="value0"></param>
<param name="value1"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})">
<param name="span"></param>
<param name="values"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})">
<param name="span"></param>
<param name="values"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.Byte,System.Byte)">
<param name="span"></param>
<param name="value0"></param>
<param name="value1"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.NonPortableCast``2(System.ReadOnlySpan{``0})">
<param name="source"></param>
<typeparam name="TFrom"></typeparam>
<typeparam name="TTo"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.NonPortableCast``2(System.Span{``0})">
<param name="source"></param>
<typeparam name="TFrom"></typeparam>
<typeparam name="TTo"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.SequenceEqual(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})">
<param name="first"></param>
<param name="second"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.SequenceEqual(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})">
<param name="first"></param>
<param name="second"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.SequenceEqual``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})">
<param name="first"></param>
<param name="second"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.SequenceEqual``1(System.Span{``0},System.ReadOnlySpan{``0})">
<param name="first"></param>
<param name="second"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.StartsWith(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})">
<param name="span"></param>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.StartsWith(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})">
<param name="span"></param>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.StartsWith``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})">
<param name="span"></param>
<param name="value"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.StartsWith``1(System.Span{``0},System.ReadOnlySpan{``0})">
<param name="span"></param>
<param name="value"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="T:System.ReadOnlySpan`1">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.ReadOnlySpan`1.#ctor(`0[])">
<param name="array"></param>
</member>
<member name="M:System.ReadOnlySpan`1.#ctor(System.Void*,System.Int32)">
<param name="pointer"></param>
<param name="length"></param>
</member>
<member name="M:System.ReadOnlySpan`1.#ctor(`0[],System.Int32)">
<param name="array"></param>
<param name="start"></param>
</member>
<member name="M:System.ReadOnlySpan`1.#ctor(`0[],System.Int32,System.Int32)">
<param name="array"></param>
<param name="start"></param>
<param name="length"></param>
</member>
<member name="M:System.ReadOnlySpan`1.CopyTo(System.Span{`0})">
<param name="destination"></param>
</member>
<member name="M:System.ReadOnlySpan`1.DangerousCreate(System.Object,`0@,System.Int32)">
<param name="obj"></param>
<param name="objectData"></param>
<param name="length"></param>
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.DangerousGetPinnableReference">
<returns></returns>
</member>
<member name="P:System.ReadOnlySpan`1.Empty">
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.Equals(System.Object)">
<param name="obj"></param>
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.GetHashCode">
<returns></returns>
</member>
<member name="P:System.ReadOnlySpan`1.IsEmpty">
<returns></returns>
</member>
<member name="P:System.ReadOnlySpan`1.Item(System.Int32)">
<param name="index"></param>
<returns></returns>
</member>
<member name="P:System.ReadOnlySpan`1.Length">
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.op_Equality(System.ReadOnlySpan{`0},System.ReadOnlySpan{`0})">
<param name="left"></param>
<param name="right"></param>
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.op_Implicit(System.ArraySegment{T})~System.ReadOnlySpan{T}">
<param name="arraySegment"></param>
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.op_Implicit(T[])~System.ReadOnlySpan{T}">
<param name="array"></param>
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.op_Inequality(System.ReadOnlySpan{`0},System.ReadOnlySpan{`0})">
<param name="left"></param>
<param name="right"></param>
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.Slice(System.Int32)">
<param name="start"></param>
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.Slice(System.Int32,System.Int32)">
<param name="start"></param>
<param name="length"></param>
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.ToArray">
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.TryCopyTo(System.Span{`0})">
<param name="destination"></param>
<returns></returns>
</member>
</members>
</doc>

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@@ -0,0 +1,200 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Runtime.CompilerServices.Unsafe</name>
</assembly>
<members>
<member name="T:System.Runtime.CompilerServices.Unsafe">
<summary>Contains generic, low-level functionality for manipulating pointers.</summary>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.Int32)">
<summary>Adds an element offset to the given reference.</summary>
<param name="source">The reference to add the offset to.</param>
<param name="elementOffset">The offset to add.</param>
<typeparam name="T">The type of reference.</typeparam>
<returns>A new reference that reflects the addition of offset to pointer.</returns>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.IntPtr)">
<summary>Adds an element offset to the given reference.</summary>
<param name="source">The reference to add the offset to.</param>
<param name="elementOffset">The offset to add.</param>
<typeparam name="T">The type of reference.</typeparam>
<returns>A new reference that reflects the addition of offset to pointer.</returns>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.AddByteOffset``1(``0@,System.IntPtr)">
<summary>Adds a byte offset to the given reference.</summary>
<param name="source">The reference to add the offset to.</param>
<param name="byteOffset">The offset to add.</param>
<typeparam name="T">The type of reference.</typeparam>
<returns>A new reference that reflects the addition of byte offset to pointer.</returns>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.AreSame``1(``0@,``0@)">
<summary>Determines whether the specified references point to the same location.</summary>
<param name="left">The first reference to compare.</param>
<param name="right">The second reference to compare.</param>
<typeparam name="T">The type of reference.</typeparam>
<returns>true if <paramref name="left">left</paramref> and <paramref name="right">right</paramref> point to the same location; otherwise, false.</returns>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.As``1(System.Object)">
<summary>Casts the given object to the specified type.</summary>
<param name="o">The object to cast.</param>
<typeparam name="T">The type which the object will be cast to.</typeparam>
<returns>The original object, casted to the given type.</returns>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.As``2(``0@)">
<summary>Reinterprets the given reference as a reference to a value of type <typeparamref name="TTo">TTo</typeparamref>.</summary>
<param name="source">The reference to reinterpret.</param>
<typeparam name="TFrom">The type of reference to reinterpret..</typeparam>
<typeparam name="TTo">The desired type of the reference.</typeparam>
<returns>A reference to a value of type <typeparamref name="TTo">TTo</typeparamref>.</returns>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.AsPointer``1(``0@)">
<summary>Returns a pointer to the given by-ref parameter.</summary>
<param name="value">The object whose pointer is obtained.</param>
<typeparam name="T">The type of object.</typeparam>
<returns>A pointer to the given value.</returns>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.AsRef``1(System.Void*)">
<summary>Reinterprets the given location as a reference to a value of type <typeparamref name="T">T</typeparamref>.</summary>
<param name="source">The location of the value to reference.</param>
<typeparam name="T">The type of the interpreted location.</typeparam>
<returns>A reference to a value of type <typeparamref name="T">T</typeparamref>.</returns>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.ByteOffset``1(``0@,``0@)">
<summary>Determines the byte offset from origin to target from the given references.</summary>
<param name="origin">The reference to origin.</param>
<param name="target">The reference to target.</param>
<typeparam name="T">The type of reference.</typeparam>
<returns>Byte offset from origin to target i.e. <paramref name="target">target</paramref> - <paramref name="origin">origin</paramref>.</returns>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.Copy``1(System.Void*,``0@)">
<summary>Copies a value of type <typeparamref name="T">T</typeparamref> to the given location.</summary>
<param name="destination">The location to copy to.</param>
<param name="source">A reference to the value to copy.</param>
<typeparam name="T">The type of value to copy.</typeparam>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.Copy``1(``0@,System.Void*)">
<summary>Copies a value of type <typeparamref name="T">T</typeparamref> to the given location.</summary>
<param name="destination">The location to copy to.</param>
<param name="source">A pointer to the value to copy.</param>
<typeparam name="T">The type of value to copy.</typeparam>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.CopyBlock(System.Byte@,System.Byte@,System.UInt32)">
<summary>Copies bytes from the source address to the destination address.</summary>
<param name="destination">The destination address to copy to.</param>
<param name="source">The source address to copy from.</param>
<param name="byteCount">The number of bytes to copy.</param>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.CopyBlock(System.Void*,System.Void*,System.UInt32)">
<summary>Copies bytes from the source address to the destination address.</summary>
<param name="destination">The destination address to copy to.</param>
<param name="source">The source address to copy from.</param>
<param name="byteCount">The number of bytes to copy.</param>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.CopyBlockUnaligned(System.Void*,System.Void*,System.UInt32)">
<summary>Copies bytes from the source address to the destination address
without assuming architecture dependent alignment of the addresses.</summary>
<param name="destination">The destination address to copy to.</param>
<param name="source">The source address to copy from.</param>
<param name="byteCount">The number of bytes to copy.</param>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.CopyBlockUnaligned(System.Byte@,System.Byte@,System.UInt32)">
<summary>Copies bytes from the source address to the destination address
without assuming architecture dependent alignment of the addresses.</summary>
<param name="destination">The destination address to copy to.</param>
<param name="source">The source address to copy from.</param>
<param name="byteCount">The number of bytes to copy.</param>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.InitBlock(System.Byte@,System.Byte,System.UInt32)">
<summary>Initializes a block of memory at the given location with a given initial value.</summary>
<param name="startAddress">The address of the start of the memory block to initialize.</param>
<param name="value">The value to initialize the block to.</param>
<param name="byteCount">The number of bytes to initialize.</param>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.InitBlock(System.Void*,System.Byte,System.UInt32)">
<summary>Initializes a block of memory at the given location with a given initial value.</summary>
<param name="startAddress">The address of the start of the memory block to initialize.</param>
<param name="value">The value to initialize the block to.</param>
<param name="byteCount">The number of bytes to initialize.</param>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.InitBlockUnaligned(System.Byte@,System.Byte,System.UInt32)">
<summary>Initializes a block of memory at the given location with a given initial value
without assuming architecture dependent alignment of the address.</summary>
<param name="startAddress">The address of the start of the memory block to initialize.</param>
<param name="value">The value to initialize the block to.</param>
<param name="byteCount">The number of bytes to initialize.</param>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.InitBlockUnaligned(System.Void*,System.Byte,System.UInt32)">
<summary>Initializes a block of memory at the given location with a given initial value
without assuming architecture dependent alignment of the address.</summary>
<param name="startAddress">The address of the start of the memory block to initialize.</param>
<param name="value">The value to initialize the block to.</param>
<param name="byteCount">The number of bytes to initialize.</param>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.Read``1(System.Void*)">
<summary>Reads a value of type <typeparamref name="T">T</typeparamref> from the given location.</summary>
<param name="source">The location to read from.</param>
<typeparam name="T">The type to read.</typeparam>
<returns>An object of type <typeparamref name="T">T</typeparamref> read from the given location.</returns>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.ReadUnaligned``1(System.Byte@)">
<summary>Reads a value of type <typeparamref name="T">T</typeparamref> from the given location
without assuming architecture dependent alignment of the addresses.</summary>
<param name="source">The location to read from.</param>
<typeparam name="T">The type to read.</typeparam>
<returns>An object of type <typeparamref name="T">T</typeparamref> read from the given location.</returns>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.ReadUnaligned``1(System.Void*)">
<summary>Reads a value of type <typeparamref name="T">T</typeparamref> from the given location
without assuming architecture dependent alignment of the addresses.</summary>
<param name="source">The location to read from.</param>
<typeparam name="T">The type to read.</typeparam>
<returns>An object of type <typeparamref name="T">T</typeparamref> read from the given location.</returns>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.SizeOf``1">
<summary>Returns the size of an object of the given type parameter.</summary>
<typeparam name="T">The type of object whose size is retrieved.</typeparam>
<returns>The size of an object of type <typeparamref name="T">T</typeparamref>.</returns>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.Int32)">
<summary>Subtracts an element offset from the given reference.</summary>
<param name="source">The reference to subtract the offset from.</param>
<param name="elementOffset">The offset to subtract.</param>
<typeparam name="T">The type of reference.</typeparam>
<returns>A new reference that reflects the subraction of offset from pointer.</returns>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.IntPtr)">
<summary>Subtracts an element offset from the given reference.</summary>
<param name="source">The reference to subtract the offset from.</param>
<param name="elementOffset">The offset to subtract.</param>
<typeparam name="T">The type of reference.</typeparam>
<returns>A new reference that reflects the subraction of offset from pointer.</returns>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.SubtractByteOffset``1(``0@,System.IntPtr)">
<summary>Subtracts a byte offset from the given reference.</summary>
<param name="source">The reference to subtract the offset from.</param>
<param name="byteOffset"></param>
<typeparam name="T">The type of reference.</typeparam>
<returns>A new reference that reflects the subraction of byte offset from pointer.</returns>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.Write``1(System.Void*,``0)">
<summary>Writes a value of type <typeparamref name="T">T</typeparamref> to the given location.</summary>
<param name="destination">The location to write to.</param>
<param name="value">The value to write.</param>
<typeparam name="T">The type of value to write.</typeparam>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.WriteUnaligned``1(System.Byte@,``0)">
<summary>Writes a value of type <typeparamref name="T">T</typeparamref> to the given location
without assuming architecture dependent alignment of the addresses.</summary>
<param name="destination">The location to write to.</param>
<param name="value">The value to write.</param>
<typeparam name="T">The type of value to write.</typeparam>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.WriteUnaligned``1(System.Void*,``0)">
<summary>Writes a value of type <typeparamref name="T">T</typeparamref> to the given location
without assuming architecture dependent alignment of the addresses.</summary>
<param name="destination">The location to write to.</param>
<param name="value">The value to write.</param>
<typeparam name="T">The type of value to write.</typeparam>
</member>
</members>
</doc>

Binary file not shown.

View File

@@ -0,0 +1,217 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Threading.Channels</name>
</assembly>
<members>
<member name="T:System.Threading.Channels.BoundedChannelFullMode">
<summary>Specifies the behavior to use when writing to a bounded channel that is already full.</summary>
</member>
<member name="F:System.Threading.Channels.BoundedChannelFullMode.DropNewest">
<summary>Removes and ignores the newest item in the channel in order to make room for the item being written.</summary>
</member>
<member name="F:System.Threading.Channels.BoundedChannelFullMode.DropOldest">
<summary>Removes and ignores the oldest item in the channel in order to make room for the item being written.</summary>
</member>
<member name="F:System.Threading.Channels.BoundedChannelFullMode.DropWrite">
<summary>Drops the item being written.</summary>
</member>
<member name="F:System.Threading.Channels.BoundedChannelFullMode.Wait">
<summary>Waits for space to be available in order to complete the write operation.</summary>
</member>
<member name="T:System.Threading.Channels.BoundedChannelOptions">
<summary>Provides options that control the behavior of bounded <see cref="T:System.Threading.Channels.Channel`1" /> instances.</summary>
</member>
<member name="M:System.Threading.Channels.BoundedChannelOptions.#ctor(System.Int32)">
<summary>Initializes the options.</summary>
<param name="capacity">The maximum number of items the bounded channel may store.</param>
</member>
<member name="P:System.Threading.Channels.BoundedChannelOptions.Capacity">
<summary>Gets or sets the maximum number of items the bounded channel may store.</summary>
</member>
<member name="P:System.Threading.Channels.BoundedChannelOptions.FullMode">
<summary>Gets or sets the behavior incurred by write operations when the channel is full.</summary>
</member>
<member name="T:System.Threading.Channels.Channel">
<summary>Provides static methods for creating channels.</summary>
</member>
<member name="M:System.Threading.Channels.Channel.CreateBounded``1(System.Int32)">
<summary>Creates a channel with the specified maximum capacity.</summary>
<param name="capacity">The maximum number of items the channel may store.</param>
<typeparam name="T">Specifies the type of data in the channel.</typeparam>
<returns>The created channel.</returns>
</member>
<member name="M:System.Threading.Channels.Channel.CreateBounded``1(System.Threading.Channels.BoundedChannelOptions)">
<summary>Creates a channel with the specified maximum capacity.</summary>
<param name="options">Options that guide the behavior of the channel.</param>
<typeparam name="T">Specifies the type of data in the channel.</typeparam>
<returns>The created channel.</returns>
</member>
<member name="M:System.Threading.Channels.Channel.CreateUnbounded``1">
<summary>Creates an unbounded channel usable by any number of readers and writers concurrently.</summary>
<typeparam name="T">The type of data in the channel.</typeparam>
<returns>The created channel.</returns>
</member>
<member name="M:System.Threading.Channels.Channel.CreateUnbounded``1(System.Threading.Channels.UnboundedChannelOptions)">
<summary>Creates an unbounded channel subject to the provided options.</summary>
<param name="options">Options that guide the behavior of the channel.</param>
<typeparam name="T">Specifies the type of data in the channel.</typeparam>
<returns>The created channel.</returns>
</member>
<member name="T:System.Threading.Channels.Channel`1">
<summary>Provides a base class for channels that support reading and writing elements of type <typeparamref name="T" />.</summary>
<typeparam name="T">Specifies the type of data readable and writable in the channel.</typeparam>
</member>
<member name="M:System.Threading.Channels.Channel`1.#ctor">
<summary>Initializes an instance of the <see cref="T:System.Threading.Channels.Channel`1" /> class.</summary>
</member>
<member name="T:System.Threading.Channels.Channel`2">
<summary>Provides a base class for channels that support reading elements of type <typeparamref name="TRead" /> and writing elements of type <typeparamref name="TWrite" />.</summary>
<typeparam name="TWrite">Specifies the type of data that may be written to the channel.</typeparam>
<typeparam name="TRead">Specifies the type of data that may be read from the channel.</typeparam>
</member>
<member name="M:System.Threading.Channels.Channel`2.#ctor">
<summary>Initializes an instance of the <see cref="T:System.Threading.Channels.Channel`2" /> class.</summary>
</member>
<member name="M:System.Threading.Channels.Channel`2.op_Implicit(System.Threading.Channels.Channel{`0,`1})~System.Threading.Channels.ChannelReader{`1}">
<summary>Implicit cast from a <see cref="T:System.Threading.Channels.Channel`2" /> to its readable half.</summary>
<param name="channel">The <see cref="T:System.Threading.Channels.Channel`2" /> being cast.</param>
<returns>The readable half.</returns>
</member>
<member name="M:System.Threading.Channels.Channel`2.op_Implicit(System.Threading.Channels.Channel{`0,`1})~System.Threading.Channels.ChannelWriter{`0}">
<summary>Implicit cast from a <see cref="T:System.Threading.Channels.Channel`2" /> to its writable half.</summary>
<param name="channel">The <see cref="T:System.Threading.Channels.Channel`2" /> being cast.</param>
<returns>The writable half.</returns>
</member>
<member name="P:System.Threading.Channels.Channel`2.Reader">
<summary>Gets the readable half of this channel.</summary>
</member>
<member name="P:System.Threading.Channels.Channel`2.Writer">
<summary>Gets the writable half of this channel.</summary>
</member>
<member name="T:System.Threading.Channels.ChannelClosedException">
<summary>Exception thrown when a channel is used after it's been closed.</summary>
</member>
<member name="M:System.Threading.Channels.ChannelClosedException.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Threading.Channels.ChannelClosedException" /> class.</summary>
</member>
<member name="M:System.Threading.Channels.ChannelClosedException.#ctor(System.Exception)">
<summary>Initializes a new instance of the <see cref="T:System.Threading.Channels.ChannelClosedException" /> class.</summary>
<param name="innerException">The exception that is the cause of this exception.</param>
</member>
<member name="M:System.Threading.Channels.ChannelClosedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>Initializes a new instance of the <see cref="T:System.Threading.Channels.ChannelClosedException" /> class with serialized data.</summary>
<param name="info">The object that holds the serialized object data.</param>
<param name="context">The contextual information about the source or destination.</param>
</member>
<member name="M:System.Threading.Channels.ChannelClosedException.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Threading.Channels.ChannelClosedException" /> class.</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:System.Threading.Channels.ChannelClosedException.#ctor(System.String,System.Exception)">
<summary>Initializes a new instance of the <see cref="T:System.Threading.Channels.ChannelClosedException" /> class.</summary>
<param name="message">The message that describes the error.</param>
<param name="innerException">The exception that is the cause of this exception.</param>
</member>
<member name="T:System.Threading.Channels.ChannelOptions">
<summary>Provides options that control the behavior of channel instances.</summary>
</member>
<member name="M:System.Threading.Channels.ChannelOptions.#ctor">
<summary>Initializes an instance of the <see cref="T:System.Threading.Channels.ChannelOptions" /> class.</summary>
</member>
<member name="P:System.Threading.Channels.ChannelOptions.AllowSynchronousContinuations">
<summary>
<see langword="true" /> if operations performed on a channel may synchronously invoke continuations subscribed to
notifications of pending async operations; <see langword="false" /> if all continuations should be invoked asynchronously.</summary>
</member>
<member name="P:System.Threading.Channels.ChannelOptions.SingleReader">
<summary>
<see langword="true" /> readers from the channel guarantee that there will only ever be at most one read operation at a time;
<see langword="false" /> if no such constraint is guaranteed.</summary>
</member>
<member name="P:System.Threading.Channels.ChannelOptions.SingleWriter">
<summary>
<see langword="true" /> if writers to the channel guarantee that there will only ever be at most one write operation
at a time; <see langword="false" /> if no such constraint is guaranteed.</summary>
</member>
<member name="T:System.Threading.Channels.ChannelReader`1">
<summary>Provides a base class for reading from a channel.</summary>
<typeparam name="T">Specifies the type of data that may be read from the channel.</typeparam>
</member>
<member name="M:System.Threading.Channels.ChannelReader`1.#ctor">
<summary>Initializes an instance of the <see cref="T:System.Threading.Channels.ChannelReader`1" /> class.</summary>
</member>
<member name="P:System.Threading.Channels.ChannelReader`1.Completion">
<summary>Gets a <see cref="T:System.Threading.Tasks.Task" /> that completes when no more data will ever
be available to be read from this channel.</summary>
</member>
<member name="M:System.Threading.Channels.ChannelReader`1.ReadAllAsync(System.Threading.CancellationToken)">
<summary>Creates an <see cref="T:System.Collections.Generic.IAsyncEnumerable`1" /> that enables reading all of the data from the channel.</summary>
<param name="cancellationToken">The cancellation token to use to cancel the enumeration.</param>
<returns>The created async enumerable.</returns>
</member>
<member name="M:System.Threading.Channels.ChannelReader`1.ReadAsync(System.Threading.CancellationToken)">
<summary>Asynchronously reads an item from the channel.</summary>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> used to cancel the read operation.</param>
<returns>A <see cref="T:System.Threading.Tasks.ValueTask`1" /> that represents the asynchronous read operation.</returns>
</member>
<member name="M:System.Threading.Channels.ChannelReader`1.TryRead(`0@)">
<summary>Attempts to read an item from the channel.</summary>
<param name="item">The read item, or a default value if no item could be read.</param>
<returns>
<see langword="true" /> if an item was read; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Threading.Channels.ChannelReader`1.WaitToReadAsync(System.Threading.CancellationToken)">
<summary>Returns a <see cref="T:System.Threading.Tasks.ValueTask`1" /> that will complete when data is available to read.</summary>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> used to cancel the wait operation.</param>
<returns>A <see cref="T:System.Threading.Tasks.ValueTask`1" /> that will complete with a <see langword="true" /> result when data is available to read
or with a <see langword="false" /> result when no further data will ever be available to be read due to the channel completing successfully.
If the channel completes with an exception, the task will also complete with an exception.
.</returns>
</member>
<member name="T:System.Threading.Channels.ChannelWriter`1">
<summary>Provides a base class for writing to a channel.</summary>
<typeparam name="T">Specifies the type of data that may be written to the channel.</typeparam>
</member>
<member name="M:System.Threading.Channels.ChannelWriter`1.#ctor">
<summary>Initializes an instance of the <see cref="T:System.Threading.Channels.ChannelWriter`1" /> class.</summary>
</member>
<member name="M:System.Threading.Channels.ChannelWriter`1.Complete(System.Exception)">
<summary>Mark the channel as being complete, meaning no more items will be written to it.</summary>
<param name="error">Optional Exception indicating a failure that's causing the channel to complete.</param>
<exception cref="T:System.InvalidOperationException">The channel has already been marked as complete.</exception>
</member>
<member name="M:System.Threading.Channels.ChannelWriter`1.TryComplete(System.Exception)">
<summary>Attempts to mark the channel as being completed, meaning no more data will be written to it.</summary>
<param name="error">An <see cref="T:System.Exception" /> indicating the failure causing no more data to be written, or null for success.</param>
<returns>
<see langword="true" /> if this operation successfully completes the channel; otherwise, <see langword="false" /> if the channel could not be marked for completion,
for example due to having already been marked as such, or due to not supporting completion.
.</returns>
</member>
<member name="M:System.Threading.Channels.ChannelWriter`1.TryWrite(`0)">
<summary>Attempts to write the specified item to the channel.</summary>
<param name="item">The item to write.</param>
<returns>
<see langword="true" /> if the item was written; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Threading.Channels.ChannelWriter`1.WaitToWriteAsync(System.Threading.CancellationToken)">
<summary>Returns a <see cref="T:System.Threading.Tasks.ValueTask`1" /> that will complete when space is available to write an item.</summary>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> used to cancel the wait operation.</param>
<returns>A <see cref="T:System.Threading.Tasks.ValueTask`1" /> that will complete with a <see langword="true" /> result when space is available to write an item
or with a <see langword="false" /> result when no further writing will be permitted.</returns>
</member>
<member name="M:System.Threading.Channels.ChannelWriter`1.WriteAsync(`0,System.Threading.CancellationToken)">
<summary>Asynchronously writes an item to the channel.</summary>
<param name="item">The value to write to the channel.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> used to cancel the write operation.</param>
<returns>A <see cref="T:System.Threading.Tasks.ValueTask" /> that represents the asynchronous write operation.</returns>
</member>
<member name="T:System.Threading.Channels.UnboundedChannelOptions">
<summary>Provides options that control the behavior of unbounded <see cref="T:System.Threading.Channels.Channel`1" /> instances.</summary>
</member>
<member name="M:System.Threading.Channels.UnboundedChannelOptions.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Threading.Channels.UnboundedChannelOptions" /> class.</summary>
</member>
</members>
</doc>

Binary file not shown.

View File

@@ -0,0 +1,166 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Threading.Tasks.Extensions</name>
</assembly>
<members>
<member name="T:System.Runtime.CompilerServices.ValueTaskAwaiter`1">
<typeparam name="TResult"></typeparam>
</member>
<member name="M:System.Runtime.CompilerServices.ValueTaskAwaiter`1.GetResult">
<returns></returns>
</member>
<member name="P:System.Runtime.CompilerServices.ValueTaskAwaiter`1.IsCompleted">
<returns></returns>
</member>
<member name="M:System.Runtime.CompilerServices.ValueTaskAwaiter`1.OnCompleted(System.Action)">
<param name="continuation"></param>
</member>
<member name="M:System.Runtime.CompilerServices.ValueTaskAwaiter`1.UnsafeOnCompleted(System.Action)">
<param name="continuation"></param>
</member>
<member name="T:System.Threading.Tasks.ValueTask`1">
<summary>Provides a value type that wraps a <see cref="Task{TResult}"></see> and a <typeparamref name="TResult">TResult</typeparamref>, only one of which is used.</summary>
<typeparam name="TResult">The result.</typeparam>
</member>
<member name="M:System.Threading.Tasks.ValueTask`1.#ctor(System.Threading.Tasks.Task{`0})">
<summary>Initializes a new instance of the <see cref="ValueTask{TResult}"></see> class using the supplied task that represents the operation.</summary>
<param name="task">The task.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="task">task</paramref> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.ValueTask`1.#ctor(`0)">
<summary>Initializes a new instance of the <see cref="ValueTask{TResult}"></see> class using the supplied result of a successful operation.</summary>
<param name="result">The result.</param>
</member>
<member name="M:System.Threading.Tasks.ValueTask`1.AsTask">
<summary>Retrieves a <see cref="Task{TResult}"></see> object that represents this <see cref="ValueTask{TResult}"></see>.</summary>
<returns>The <see cref="Task{TResult}"></see> object that is wrapped in this <see cref="ValueTask{TResult}"></see> if one exists, or a new <see cref="Task{TResult}"></see> object that represents the result.</returns>
</member>
<member name="M:System.Threading.Tasks.ValueTask`1.ConfigureAwait(System.Boolean)">
<summary>Configures an awaiter for this value.</summary>
<param name="continueOnCapturedContext">true to attempt to marshal the continuation back to the captured context; otherwise, false.</param>
<returns>The configured awaiter.</returns>
</member>
<member name="M:System.Threading.Tasks.ValueTask`1.CreateAsyncMethodBuilder">
<summary>Creates a method builder for use with an async method.</summary>
<returns>The created builder.</returns>
</member>
<member name="M:System.Threading.Tasks.ValueTask`1.Equals(System.Object)">
<summary>Determines whether the specified object is equal to the current object.</summary>
<param name="obj">The object to compare with the current object.</param>
<returns>true if the specified object is equal to the current object; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.ValueTask`1.Equals(System.Threading.Tasks.ValueTask{`0})">
<summary>Determines whether the specified <see cref="ValueTask{TResult}"></see> object is equal to the current <see cref="ValueTask{TResult}"></see> object.</summary>
<param name="other">The object to compare with the current object.</param>
<returns>true if the specified object is equal to the current object; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.ValueTask`1.GetAwaiter">
<summary>Creates an awaiter for this value.</summary>
<returns>The awaiter.</returns>
</member>
<member name="M:System.Threading.Tasks.ValueTask`1.GetHashCode">
<summary>Returns the hash code for this instance.</summary>
<returns>The hash code for the current object.</returns>
</member>
<member name="P:System.Threading.Tasks.ValueTask`1.IsCanceled">
<summary>Gets a value that indicates whether this object represents a canceled operation.</summary>
<returns>true if this object represents a canceled operation; otherwise, false.</returns>
</member>
<member name="P:System.Threading.Tasks.ValueTask`1.IsCompleted">
<summary>Gets a value that indicates whether this object represents a completed operation.</summary>
<returns>true if this object represents a completed operation; otherwise, false.</returns>
</member>
<member name="P:System.Threading.Tasks.ValueTask`1.IsCompletedSuccessfully">
<summary>Gets a value that indicates whether this object represents a successfully completed operation.</summary>
<returns>true if this object represents a successfully completed operation; otherwise, false.</returns>
</member>
<member name="P:System.Threading.Tasks.ValueTask`1.IsFaulted">
<summary>Gets a value that indicates whether this object represents a failed operation.</summary>
<returns>true if this object represents a failed operation; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.ValueTask`1.op_Equality(System.Threading.Tasks.ValueTask{`0},System.Threading.Tasks.ValueTask{`0})">
<summary>Compares two values for equality.</summary>
<param name="left">The first value to compare.</param>
<param name="right">The second value to compare.</param>
<returns>true if the two <see cref="ValueTask{TResult}"></see> values are equal; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.ValueTask`1.op_Inequality(System.Threading.Tasks.ValueTask{`0},System.Threading.Tasks.ValueTask{`0})">
<summary>Determines whether two <see cref="ValueTask{TResult}"></see> values are unequal.</summary>
<param name="left">The first value to compare.</param>
<param name="right">The seconed value to compare.</param>
<returns>true if the two <see cref="ValueTask{TResult}"></see> values are not equal; otherwise, false.</returns>
</member>
<member name="P:System.Threading.Tasks.ValueTask`1.Result">
<summary>Gets the result.</summary>
<returns>The result.</returns>
</member>
<member name="M:System.Threading.Tasks.ValueTask`1.ToString">
<summary>Returns a string that represents the current object.</summary>
<returns>A string that represents the current object.</returns>
</member>
<member name="T:System.Runtime.CompilerServices.AsyncMethodBuilderAttribute">
</member>
<member name="M:System.Runtime.CompilerServices.AsyncMethodBuilderAttribute.#ctor(System.Type)">
<param name="builderType"></param>
</member>
<member name="P:System.Runtime.CompilerServices.AsyncMethodBuilderAttribute.BuilderType">
<returns></returns>
</member>
<member name="T:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1">
<typeparam name="TResult"></typeparam>
</member>
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.AwaitOnCompleted``2(``0@,``1@)">
<param name="awaiter"></param>
<param name="stateMachine"></param>
<typeparam name="TAwaiter"></typeparam>
<typeparam name="TStateMachine"></typeparam>
</member>
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.AwaitUnsafeOnCompleted``2(``0@,``1@)">
<param name="awaiter"></param>
<param name="stateMachine"></param>
<typeparam name="TAwaiter"></typeparam>
<typeparam name="TStateMachine"></typeparam>
</member>
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.Create">
<returns></returns>
</member>
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.SetException(System.Exception)">
<param name="exception"></param>
</member>
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.SetResult(`0)">
<param name="result"></param>
</member>
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)">
<param name="stateMachine"></param>
</member>
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.Start``1(``0@)">
<param name="stateMachine"></param>
<typeparam name="TStateMachine"></typeparam>
</member>
<member name="P:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.Task">
<returns></returns>
</member>
<member name="T:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter">
<typeparam name="TResult"></typeparam>
</member>
<member name="M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.GetResult">
<returns></returns>
</member>
<member name="P:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.IsCompleted">
<returns></returns>
</member>
<member name="M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.OnCompleted(System.Action)">
<param name="continuation"></param>
</member>
<member name="M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.UnsafeOnCompleted(System.Action)">
<param name="continuation"></param>
</member>
<member name="T:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1">
<typeparam name="TResult"></typeparam>
</member>
<member name="M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.GetAwaiter">
<returns></returns>
</member>
</members>
</doc>

BIN
bin/Debug/log4net.dll Normal file

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,73 @@
2022-02-24 10:36:30.484 [DBG] Start S9FxMonitor Thread.
2022-02-24 10:36:30.490 [DBG] S9FxMonitor Thread Status = True
2022-02-24 10:36:30.491 [DBG] HSMSPort::Initialize execute.
2022-02-24 10:36:30.493 [DBG] Start - Connector Thread.
2022-02-24 10:36:30.495 [DBG] - Connector Thread Status = True
2022-02-24 10:36:30.495 [DBG] Start ACOAT_01#Parser Thread.
2022-02-24 10:36:30.497 [DBG] ACOAT_01#Parser Thread Status = True
2022-02-24 10:36:30.502 [DBG] Start ACOAT_01#Timer Thread.
2022-02-24 10:36:30.503 [DBG] Completely Open the ACOAT_01 SECS Port
2022-02-24 10:36:30.504 [DBG] ACOAT_01#Timer Thread Status = True
2022-02-24 10:36:42.554 [DBG] HSMSPort::OnConnected Status=CONNECTING
2022-02-24 10:36:42.554 [DBG] UpdateStatus: Prev:UNKNOWN=>Now:CONNECTING=>New:CONNECT
2022-02-24 10:36:42.554 [DBG] UpdateStatus: Prev:CONNECTING=>Now:CONNECT
2022-02-24 10:36:42.555 [DBG] Start ACOAT_01#Reader Thread.
2022-02-24 10:36:42.557 [DBG] ACOAT_01#Reader Thread Status = True
2022-02-24 10:36:42.557 [DBG] Start ACOAT_01#Writer Thread.
2022-02-24 10:36:42.559 [DBG] ACOAT_01#Writer Thread Status = True
2022-02-24 10:36:42.560 [DBG] Timer::StartTimer LinkTest
2022-02-24 10:36:42.560 [DBG] Timer::StartTimer T6
2022-02-24 10:36:42.562 [DBG] [WRITE] [SB:2130706432, SELECT_REQ] 00 00 00 0A FF FF 00 00 00 01 7F 00 00 00
2022-02-24 10:36:42.988 [DBG] Timer::StartTimer T8
2022-02-24 10:36:42.989 [DBG] Timer::StopTimer T8
2022-02-24 10:36:42.989 [DBG] Read Data: 10 -- FF FF 00 00 00 02 7F 00 00 00
2022-02-24 10:36:42.989 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 02 7F 00 00 00
2022-02-24 10:36:42.990 [DBG] HSMSPort::OnReadHsms control message.
2022-02-24 10:36:42.990 [DBG] Timer::StopTimer T6
2022-02-24 10:36:42.990 [DBG] UpdateStatus: Prev:CONNECTING=>Now:CONNECT=>New:SELECT
2022-02-24 10:36:42.990 [DBG] UpdateStatus: Prev:CONNECT=>Now:SELECT
2022-02-24 10:36:43.020 [DBG] Writer#Run Send Primary Message 1
2022-02-24 10:36:43.025 [DBG] Timer::StartT3Timer, SystemBytes=1
2022-02-24 10:36:43.025 [DBG] WriteSendMessage: StartT3Timer 1
2022-02-24 10:36:43.343 [DBG] Timer::StartTimer T8
2022-02-24 10:36:43.343 [DBG] Timer::StopTimer T8
2022-02-24 10:36:43.343 [DBG] Read Data: 33 -- 00 00 01 0E 00 00 00 00 00 01 01 02 21 01 00 01 02 41 06 20 20 20 20 20 20 41 06 20 20 20 20 20 20
2022-02-24 10:36:43.343 [DBG] Reader#ByteToBlock Header: 00 00 01 0E 00 00 00 00 00 01
2022-02-24 10:36:43.343 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 02 41 06 20 20 20 20 20 20 41 06 20 20 20 20 20 20
2022-02-24 10:36:43.343 [DBG] HSMSPort::OnReadHsms Not control message.
2022-02-24 10:36:43.367 [DBG] Timer::StopT3Timer, SystemBytes=1
2022-02-24 10:36:43.907 [DBG] Writer#Run Send Primary Message 2
2022-02-24 10:36:43.907 [DBG] Timer::StartT3Timer, SystemBytes=2
2022-02-24 10:36:43.907 [DBG] WriteSendMessage: StartT3Timer 2
2022-02-24 10:36:43.968 [DBG] Timer::StartTimer T8
2022-02-24 10:36:43.968 [DBG] Timer::StopTimer T8
2022-02-24 10:36:43.968 [DBG] Read Data: 13 -- 00 00 01 12 00 00 00 00 00 02 21 01 00
2022-02-24 10:36:43.968 [DBG] Reader#ByteToBlock Header: 00 00 01 12 00 00 00 00 00 02
2022-02-24 10:36:43.968 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-02-24 10:36:43.968 [DBG] HSMSPort::OnReadHsms Not control message.
2022-02-24 10:36:43.980 [DBG] Timer::StopT3Timer, SystemBytes=2
2022-02-24 10:36:44.514 [DBG] Writer#Run Send Primary Message 3
2022-02-24 10:36:44.514 [DBG] Timer::StartT3Timer, SystemBytes=3
2022-02-24 10:36:44.514 [DBG] WriteSendMessage: StartT3Timer 3
2022-02-24 10:36:57.384 [DBG] Start to Close the ACOAT_01 SECS Port
2022-02-24 10:36:57.384 [DBG] UpdateStatus: Prev:CONNECT=>Now:SELECT=>New:TERMINATE
2022-02-24 10:36:57.384 [DBG] UpdateStatus: Prev:SELECT=>Now:TERMINATE
2022-02-24 10:36:57.384 [DBG] Terminate ACOAT_01#Reader Thread.
2022-02-24 10:36:57.385 [DBG] [WRITE] [SB:2130706433, SEPARATE] 00 00 00 0A FF FF 00 00 00 09 7F 00 00 01
2022-02-24 10:36:57.450 [DBG] Terminate ACOAT_01#Parser Thread.
2022-02-24 10:36:57.450 [DBG] Terminate - Connector Thread.
2022-02-24 10:36:57.450 [DBG] Terminate ACOAT_01#Writer Thread.
2022-02-24 10:36:57.464 [DBG] ACOAT_01#Writer Thread Status = False
2022-02-24 10:36:57.464 [DBG] ACOAT_01#Parser Thread Status = False
2022-02-24 10:36:57.556 [DBG] Terminate ACOAT_01#Timer Thread.
2022-02-24 10:36:57.556 [DBG] Timer::StopTimer LinkTest
2022-02-24 10:36:57.556 [DBG] Timer::StopTimer T6
2022-02-24 10:36:57.556 [DBG] HSMSPort::TerminateSocket execute.
2022-02-24 10:36:57.565 [DBG] Terminate ACOAT_01#Reader Thread.
2022-02-24 10:36:57.565 [DBG] Reader#FireDisconnect Invoked.
2022-02-24 10:36:57.565 [DBG] ACOAT_01#Reader Thread Status = False
2022-02-24 10:36:57.647 [DBG] ACOAT_01#Timer Thread Status = False
2022-02-24 10:36:57.648 [DBG] Terminate S9FxMonitor Thread.
2022-02-24 10:36:57.648 [DBG] Completely Close the ACOAT_01 SECS Port
2022-02-24 10:36:57.798 [DBG] S9FxMonitor Thread Status = False
2022-02-24 10:37:02.579 [DBG] - Connector Thread Status = False

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,181 @@
2022-02-25 09:28:01.555 [DBG] Start S9FxMonitor Thread.
2022-02-25 09:28:01.560 [DBG] S9FxMonitor Thread Status = True
2022-02-25 09:28:01.560 [DBG] HSMSPort::Initialize execute.
2022-02-25 09:28:01.562 [DBG] Start - Connector Thread.
2022-02-25 09:28:01.564 [DBG] - Connector Thread Status = True
2022-02-25 09:28:01.565 [DBG] Start ACOAT_01#Parser Thread.
2022-02-25 09:28:01.567 [DBG] ACOAT_01#Parser Thread Status = True
2022-02-25 09:28:01.572 [DBG] Start ACOAT_01#Timer Thread.
2022-02-25 09:28:01.572 [DBG] Completely Open the ACOAT_01 SECS Port
2022-02-25 09:28:01.573 [DBG] ACOAT_01#Timer Thread Status = True
2022-02-25 09:28:01.611 [DBG] HSMSPort::OnConnected Status=CONNECTING
2022-02-25 09:28:01.611 [DBG] UpdateStatus: Prev:UNKNOWN=>Now:CONNECTING=>New:CONNECT
2022-02-25 09:28:01.611 [DBG] UpdateStatus: Prev:CONNECTING=>Now:CONNECT
2022-02-25 09:28:01.612 [DBG] Start ACOAT_01#Reader Thread.
2022-02-25 09:28:01.614 [DBG] ACOAT_01#Reader Thread Status = True
2022-02-25 09:28:01.614 [DBG] Start ACOAT_01#Writer Thread.
2022-02-25 09:28:01.616 [DBG] ACOAT_01#Writer Thread Status = True
2022-02-25 09:28:01.617 [DBG] Timer::StartTimer LinkTest
2022-02-25 09:28:01.618 [DBG] Timer::StartTimer T6
2022-02-25 09:28:01.619 [DBG] [WRITE] [SB:2130706432, SELECT_REQ] 00 00 00 0A FF FF 00 00 00 01 7F 00 00 00
2022-02-25 09:28:01.653 [DBG] Timer::StartTimer T8
2022-02-25 09:28:01.654 [DBG] Timer::StopTimer T8
2022-02-25 09:28:01.654 [DBG] Read Data: 10 -- FF FF 00 00 00 01 00 00 00 01
2022-02-25 09:28:01.654 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 01 00 00 00 01
2022-02-25 09:28:01.655 [DBG] HSMSPort::OnReadHsms control message.
2022-02-25 09:28:01.655 [DBG] Timer::StopTimer T7
2022-02-25 09:28:01.655 [DBG] [WRITE] [SB:1, SELECT_RSP] 00 00 00 0A FF FF 00 00 00 02 00 00 00 01
2022-02-25 09:28:01.655 [DBG] UpdateStatus: Prev:CONNECTING=>Now:CONNECT=>New:SELECT
2022-02-25 09:28:01.655 [DBG] UpdateStatus: Prev:CONNECT=>Now:SELECT
2022-02-25 09:28:01.686 [DBG] Writer#Run Send Primary Message 1
2022-02-25 09:28:01.691 [DBG] Timer::StartT3Timer, SystemBytes=1
2022-02-25 09:28:01.692 [DBG] WriteSendMessage: StartT3Timer 1
2022-02-25 09:28:01.747 [DBG] Timer::StartTimer T8
2022-02-25 09:28:01.747 [DBG] Timer::StopTimer T8
2022-02-25 09:28:01.747 [DBG] Read Data: 10 -- FF FF 00 00 00 02 7F 00 00 00
2022-02-25 09:28:01.747 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 02 7F 00 00 00
2022-02-25 09:28:01.747 [DBG] HSMSPort::OnReadHsms control message.
2022-02-25 09:28:01.747 [DBG] Timer::StopTimer T6
2022-02-25 09:28:01.747 [DBG] UpdateStatus: Prev:CONNECT=>Now:SELECT=>New:SELECT
2022-02-25 09:28:01.748 [DBG] UpdateStatus: Prev:SELECT=>Now:SELECT
2022-02-25 09:28:01.755 [DBG] Timer::StartTimer T8
2022-02-25 09:28:01.755 [DBG] Timer::StopTimer T8
2022-02-25 09:28:01.755 [DBG] Read Data: 46 -- 00 01 81 0D 00 00 00 00 00 02 01 02 41 11 53 63 68 6D 69 64 53 45 43 53 53 65 72 76 69 63 65 41 0D 33 2E 31 2E 31 2D 63 34 65 63 65 61 65
2022-02-25 09:28:01.755 [DBG] Reader#ByteToBlock Header: 00 01 81 0D 00 00 00 00 00 02
2022-02-25 09:28:01.755 [DBG] Reader#ByteToBlock Data: 01 02 41 11 53 63 68 6D 69 64 53 45 43 53 53 65 72 76 69 63 65 41 0D 33 2E 31 2E 31 2D 63 34 65 63 65 61 65
2022-02-25 09:28:01.755 [DBG] HSMSPort::OnReadHsms Not control message.
2022-02-25 09:28:01.763 [DBG] Writer#Run Send Primary Message 2
2022-02-25 09:28:01.763 [DBG] Timer::StartT3Timer, SystemBytes=2
2022-02-25 09:28:01.763 [DBG] WriteSendMessage: StartT3Timer 2
2022-02-25 09:28:01.793 [DBG] Writer#Run Send Secondary Message 2
2022-02-25 09:28:01.825 [DBG] Timer::StartTimer T8
2022-02-25 09:28:01.825 [DBG] Timer::StopTimer T8
2022-02-25 09:28:01.825 [DBG] Read Data: 51 -- 00 01 01 0E 00 00 00 00 00 01 01 02 21 01 00 01 02 41 11 53 63 68 6D 69 64 53 45 43 53 53 65 72 76 69 63 65 41 0D 33 2E 31 2E 31 2D 63 34 65 63 65 61 65
2022-02-25 09:28:01.825 [DBG] Reader#ByteToBlock Header: 00 01 01 0E 00 00 00 00 00 01
2022-02-25 09:28:01.825 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 02 41 11 53 63 68 6D 69 64 53 45 43 53 53 65 72 76 69 63 65 41 0D 33 2E 31 2E 31 2D 63 34 65 63 65 61 65
2022-02-25 09:28:01.825 [DBG] HSMSPort::OnReadHsms Not control message.
2022-02-25 09:28:01.841 [DBG] Timer::StopT3Timer, SystemBytes=1
2022-02-25 09:28:01.867 [DBG] Timer::StartTimer T8
2022-02-25 09:28:01.867 [DBG] Timer::StopTimer T8
2022-02-25 09:28:01.867 [DBG] Read Data: 51 -- 00 01 01 0E 00 00 00 00 00 02 01 02 21 01 00 01 02 41 11 53 63 68 6D 69 64 53 45 43 53 53 65 72 76 69 63 65 41 0D 33 2E 31 2E 31 2D 63 34 65 63 65 61 65
2022-02-25 09:28:01.867 [DBG] Reader#ByteToBlock Header: 00 01 01 0E 00 00 00 00 00 02
2022-02-25 09:28:01.867 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 02 41 11 53 63 68 6D 69 64 53 45 43 53 53 65 72 76 69 63 65 41 0D 33 2E 31 2E 31 2D 63 34 65 63 65 61 65
2022-02-25 09:28:01.867 [DBG] HSMSPort::OnReadHsms Not control message.
2022-02-25 09:28:01.870 [DBG] Timer::StopT3Timer, SystemBytes=2
2022-02-25 09:28:02.372 [DBG] Writer#Run Send Primary Message 3
2022-02-25 09:28:02.372 [DBG] Timer::StartT3Timer, SystemBytes=3
2022-02-25 09:28:02.372 [DBG] WriteSendMessage: StartT3Timer 3
2022-02-25 09:28:02.402 [DBG] Writer#Run Send Primary Message 4
2022-02-25 09:28:02.402 [DBG] Timer::StartT3Timer, SystemBytes=4
2022-02-25 09:28:02.402 [DBG] WriteSendMessage: StartT3Timer 4
2022-02-25 09:28:02.413 [DBG] Timer::StartTimer T8
2022-02-25 09:28:02.413 [DBG] Timer::StopTimer T8
2022-02-25 09:28:02.413 [DBG] Read Data: 13 -- 00 01 01 12 00 00 00 00 00 03 21 01 02
2022-02-25 09:28:02.413 [DBG] Reader#ByteToBlock Header: 00 01 01 12 00 00 00 00 00 03
2022-02-25 09:28:02.413 [DBG] Reader#ByteToBlock Data: 21 01 02
2022-02-25 09:28:02.413 [DBG] HSMSPort::OnReadHsms Not control message.
2022-02-25 09:28:02.417 [DBG] Timer::StopT3Timer, SystemBytes=3
2022-02-25 09:28:02.454 [DBG] Timer::StartTimer T8
2022-02-25 09:28:02.454 [DBG] Timer::StopTimer T8
2022-02-25 09:28:02.454 [DBG] Read Data: 22 -- 00 01 01 04 00 00 00 00 00 04 01 0A 00 00 00 00 00 00 00 00 00 00
2022-02-25 09:28:02.454 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 04
2022-02-25 09:28:02.454 [DBG] Reader#ByteToBlock Data: 01 0A 00 00 00 00 00 00 00 00 00 00
2022-02-25 09:28:02.454 [DBG] HSMSPort::OnReadHsms Not control message.
2022-02-25 09:28:02.951 [DBG] Writer#Run Send Primary Message 5
2022-02-25 09:28:02.951 [DBG] Timer::StartT3Timer, SystemBytes=5
2022-02-25 09:28:02.951 [DBG] WriteSendMessage: StartT3Timer 5
2022-02-25 09:28:02.992 [DBG] Timer::StartTimer T8
2022-02-25 09:28:02.992 [DBG] Timer::StopTimer T8
2022-02-25 09:28:02.992 [DBG] Read Data: 22 -- 00 01 09 05 00 00 00 00 00 05 21 0A 00 01 86 17 00 00 00 00 00 05
2022-02-25 09:28:02.992 [DBG] Reader#ByteToBlock Header: 00 01 09 05 00 00 00 00 00 05
2022-02-25 09:28:02.992 [DBG] Reader#ByteToBlock Data: 21 0A 00 01 86 17 00 00 00 00 00 05
2022-02-25 09:28:02.992 [DBG] HSMSPort::OnReadHsms Not control message.
2022-02-25 09:28:09.449 [DBG] Writer#Run Send Primary Message 6
2022-02-25 09:28:09.449 [DBG] Timer::StartT3Timer, SystemBytes=6
2022-02-25 09:28:09.449 [DBG] WriteSendMessage: StartT3Timer 6
2022-02-25 09:28:09.490 [DBG] Timer::StartTimer T8
2022-02-25 09:28:09.490 [DBG] Timer::StopTimer T8
2022-02-25 09:28:09.490 [DBG] Read Data: 22 -- 00 01 01 04 00 00 00 00 00 06 01 0A 00 00 00 00 00 00 00 00 00 00
2022-02-25 09:28:09.490 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 06
2022-02-25 09:28:09.490 [DBG] Reader#ByteToBlock Data: 01 0A 00 00 00 00 00 00 00 00 00 00
2022-02-25 09:28:09.490 [DBG] HSMSPort::OnReadHsms Not control message.
2022-02-25 09:28:10.398 [DBG] Timer::StartTimer T8
2022-02-25 09:28:10.398 [DBG] Timer::StopTimer T8
2022-02-25 09:28:10.398 [DBG] Read Data: 46 -- 00 01 85 01 00 00 00 00 00 03 01 03 21 01 00 71 04 00 00 04 21 41 17 65 72 72 6F 72 20 6C 69 64 20 6F 70 65 6E 20 6D 6F 64 75 6C 65 20 38
2022-02-25 09:28:10.398 [DBG] Reader#ByteToBlock Header: 00 01 85 01 00 00 00 00 00 03
2022-02-25 09:28:10.398 [DBG] Reader#ByteToBlock Data: 01 03 21 01 00 71 04 00 00 04 21 41 17 65 72 72 6F 72 20 6C 69 64 20 6F 70 65 6E 20 6D 6F 64 75 6C 65 20 38
2022-02-25 09:28:10.398 [DBG] HSMSPort::OnReadHsms Not control message.
2022-02-25 09:28:10.415 [DBG] Writer#Run Send Secondary Message 3
2022-02-25 09:28:10.461 [DBG] Timer::StartTimer T8
2022-02-25 09:28:10.461 [DBG] Timer::StopTimer T8
2022-02-25 09:28:10.461 [DBG] Read Data: 66 -- 00 01 86 0B 00 00 00 00 00 04 01 03 B1 04 00 00 00 01 71 04 00 00 00 0B 01 01 01 02 71 04 00 00 00 0B 01 03 41 10 32 30 32 32 30 32 32 35 30 31 32 38 31 31 30 30 71 04 00 00 04 21 71 04 00 00 00 00
2022-02-25 09:28:10.461 [DBG] Reader#ByteToBlock Header: 00 01 86 0B 00 00 00 00 00 04
2022-02-25 09:28:10.461 [DBG] Reader#ByteToBlock Data: 01 03 B1 04 00 00 00 01 71 04 00 00 00 0B 01 01 01 02 71 04 00 00 00 0B 01 03 41 10 32 30 32 32 30 32 32 35 30 31 32 38 31 31 30 30 71 04 00 00 04 21 71 04 00 00 00 00
2022-02-25 09:28:10.461 [DBG] HSMSPort::OnReadHsms Not control message.
2022-02-25 09:28:10.481 [DBG] Writer#Run Send Secondary Message 4
2022-02-25 09:28:19.940 [DBG] Timer::StartTimer T8
2022-02-25 09:28:19.940 [DBG] Timer::StopTimer T8
2022-02-25 09:28:19.940 [DBG] Read Data: 46 -- 00 01 85 01 00 00 00 00 00 05 01 03 21 01 80 71 04 00 00 04 21 41 17 65 72 72 6F 72 20 6C 69 64 20 6F 70 65 6E 20 6D 6F 64 75 6C 65 20 38
2022-02-25 09:28:19.940 [DBG] Reader#ByteToBlock Header: 00 01 85 01 00 00 00 00 00 05
2022-02-25 09:28:19.940 [DBG] Reader#ByteToBlock Data: 01 03 21 01 80 71 04 00 00 04 21 41 17 65 72 72 6F 72 20 6C 69 64 20 6F 70 65 6E 20 6D 6F 64 75 6C 65 20 38
2022-02-25 09:28:19.940 [DBG] HSMSPort::OnReadHsms Not control message.
2022-02-25 09:28:19.970 [DBG] Writer#Run Send Secondary Message 5
2022-02-25 09:28:20.011 [DBG] Timer::StartTimer T8
2022-02-25 09:28:20.011 [DBG] Timer::StopTimer T8
2022-02-25 09:28:20.011 [DBG] Read Data: 91 -- 00 01 86 0B 00 00 00 00 00 06 01 03 B1 04 00 00 00 02 71 04 00 00 00 0A 01 01 01 02 71 04 00 00 00 0A 01 04 41 10 32 30 32 32 30 32 32 35 30 31 32 38 32 30 35 35 71 04 00 00 04 21 71 04 00 00 00 00 41 17 65 72 72 6F 72 20 6C 69 64 20 6F 70 65 6E 20 6D 6F 64 75 6C 65 20 38
2022-02-25 09:28:20.011 [DBG] Reader#ByteToBlock Header: 00 01 86 0B 00 00 00 00 00 06
2022-02-25 09:28:20.011 [DBG] Reader#ByteToBlock Data: 01 03 B1 04 00 00 00 02 71 04 00 00 00 0A 01 01 01 02 71 04 00 00 00 0A 01 04 41 10 32 30 32 32 30 32 32 35 30 31 32 38 32 30 35 35 71 04 00 00 04 21 71 04 00 00 00 00 41 17 65 72 72 6F 72 20 6C 69 64 20 6F 70 65 6E 20 6D 6F 64 75 6C 65 20 38
2022-02-25 09:28:20.011 [DBG] HSMSPort::OnReadHsms Not control message.
2022-02-25 09:28:20.022 [DBG] Writer#Run Send Secondary Message 6
2022-02-25 09:28:30.397 [DBG] Timer::StartTimer T8
2022-02-25 09:28:30.397 [DBG] Timer::StopTimer T8
2022-02-25 09:28:30.397 [DBG] Read Data: 46 -- 00 01 85 01 00 00 00 00 00 07 01 03 21 01 00 71 04 00 00 04 21 41 17 65 72 72 6F 72 20 6C 69 64 20 6F 70 65 6E 20 6D 6F 64 75 6C 65 20 38
2022-02-25 09:28:30.397 [DBG] Reader#ByteToBlock Header: 00 01 85 01 00 00 00 00 00 07
2022-02-25 09:28:30.397 [DBG] Reader#ByteToBlock Data: 01 03 21 01 00 71 04 00 00 04 21 41 17 65 72 72 6F 72 20 6C 69 64 20 6F 70 65 6E 20 6D 6F 64 75 6C 65 20 38
2022-02-25 09:28:30.397 [DBG] HSMSPort::OnReadHsms Not control message.
2022-02-25 09:28:30.416 [DBG] Writer#Run Send Secondary Message 7
2022-02-25 09:28:30.459 [DBG] Timer::StartTimer T8
2022-02-25 09:28:30.459 [DBG] Timer::StopTimer T8
2022-02-25 09:28:30.459 [DBG] Read Data: 66 -- 00 01 86 0B 00 00 00 00 00 08 01 03 B1 04 00 00 00 03 71 04 00 00 00 0B 01 01 01 02 71 04 00 00 00 0B 01 03 41 10 32 30 32 32 30 32 32 35 30 31 32 38 33 31 30 30 71 04 00 00 04 21 71 04 00 00 00 00
2022-02-25 09:28:30.459 [DBG] Reader#ByteToBlock Header: 00 01 86 0B 00 00 00 00 00 08
2022-02-25 09:28:30.459 [DBG] Reader#ByteToBlock Data: 01 03 B1 04 00 00 00 03 71 04 00 00 00 0B 01 01 01 02 71 04 00 00 00 0B 01 03 41 10 32 30 32 32 30 32 32 35 30 31 32 38 33 31 30 30 71 04 00 00 04 21 71 04 00 00 00 00
2022-02-25 09:28:30.459 [DBG] HSMSPort::OnReadHsms Not control message.
2022-02-25 09:28:30.475 [DBG] Writer#Run Send Secondary Message 8
2022-02-25 09:28:40.952 [DBG] Timer::StartTimer T8
2022-02-25 09:28:40.952 [DBG] Timer::StopTimer T8
2022-02-25 09:28:40.952 [DBG] Read Data: 46 -- 00 01 85 01 00 00 00 00 00 09 01 03 21 01 80 71 04 00 00 04 21 41 17 65 72 72 6F 72 20 6C 69 64 20 6F 70 65 6E 20 6D 6F 64 75 6C 65 20 38
2022-02-25 09:28:40.952 [DBG] Reader#ByteToBlock Header: 00 01 85 01 00 00 00 00 00 09
2022-02-25 09:28:40.952 [DBG] Reader#ByteToBlock Data: 01 03 21 01 80 71 04 00 00 04 21 41 17 65 72 72 6F 72 20 6C 69 64 20 6F 70 65 6E 20 6D 6F 64 75 6C 65 20 38
2022-02-25 09:28:40.952 [DBG] HSMSPort::OnReadHsms Not control message.
2022-02-25 09:28:40.972 [DBG] Writer#Run Send Secondary Message 9
2022-02-25 09:28:41.016 [DBG] Timer::StartTimer T8
2022-02-25 09:28:41.016 [DBG] Timer::StopTimer T8
2022-02-25 09:28:41.016 [DBG] Read Data: 91 -- 00 01 86 0B 00 00 00 00 00 0A 01 03 B1 04 00 00 00 04 71 04 00 00 00 0A 01 01 01 02 71 04 00 00 00 0A 01 04 41 10 32 30 32 32 30 32 32 35 30 31 32 38 34 31 35 35 71 04 00 00 04 21 71 04 00 00 00 00 41 17 65 72 72 6F 72 20 6C 69 64 20 6F 70 65 6E 20 6D 6F 64 75 6C 65 20 38
2022-02-25 09:28:41.016 [DBG] Reader#ByteToBlock Header: 00 01 86 0B 00 00 00 00 00 0A
2022-02-25 09:28:41.016 [DBG] Reader#ByteToBlock Data: 01 03 B1 04 00 00 00 04 71 04 00 00 00 0A 01 01 01 02 71 04 00 00 00 0A 01 04 41 10 32 30 32 32 30 32 32 35 30 31 32 38 34 31 35 35 71 04 00 00 04 21 71 04 00 00 00 00 41 17 65 72 72 6F 72 20 6C 69 64 20 6F 70 65 6E 20 6D 6F 64 75 6C 65 20 38
2022-02-25 09:28:41.016 [DBG] HSMSPort::OnReadHsms Not control message.
2022-02-25 09:28:41.047 [DBG] Writer#Run Send Secondary Message 10
2022-02-25 09:28:48.077 [DBG] HSMSTimer::CheckT3Timeout: 45.6756754, 4
2022-02-25 09:28:48.077 [DBG] HSMSTimer::CheckT3Timeout: 45.1266203, 5
2022-02-25 09:28:48.077 [DBG] Timer#Run: Timeout Message System Bytes=4
2022-02-25 09:28:48.087 [DBG] Timer#Run: Timeout Message System Bytes=5
2022-02-25 10:06:17.731 [DBG] Start S9FxMonitor Thread.
2022-02-25 10:06:17.736 [DBG] S9FxMonitor Thread Status = True
2022-02-25 10:06:17.736 [DBG] HSMSPort::Initialize execute.
2022-02-25 10:06:17.737 [DBG] Start - Connector Thread.
2022-02-25 10:06:17.739 [DBG] - Connector Thread Status = True
2022-02-25 10:06:17.739 [DBG] Start ACOAT_01#Parser Thread.
2022-02-25 10:06:17.741 [DBG] ACOAT_01#Parser Thread Status = True
2022-02-25 10:06:17.745 [DBG] Start ACOAT_01#Timer Thread.
2022-02-25 10:06:17.745 [DBG] Completely Open the ACOAT_01 SECS Port
2022-02-25 10:06:17.752 [DBG] ACOAT_01#Timer Thread Status = True
2022-02-25 10:06:51.933 [DBG] Start S9FxMonitor Thread.
2022-02-25 10:06:51.937 [DBG] S9FxMonitor Thread Status = True
2022-02-25 10:06:51.937 [DBG] HSMSPort::Initialize execute.
2022-02-25 10:06:51.939 [DBG] Start - Connector Thread.
2022-02-25 10:06:51.940 [DBG] - Connector Thread Status = True
2022-02-25 10:06:51.941 [DBG] Start ACOAT_01#Parser Thread.
2022-02-25 10:06:51.943 [DBG] ACOAT_01#Parser Thread Status = True
2022-02-25 10:06:51.952 [DBG] Start ACOAT_01#Timer Thread.
2022-02-25 10:06:51.952 [DBG] Completely Open the ACOAT_01 SECS Port
2022-02-25 10:06:51.953 [DBG] ACOAT_01#Timer Thread Status = True

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,20 @@
2022-03-17 16:07:08.540 [DBG] Start S9FxMonitor Thread.
2022-03-17 16:07:08.544 [DBG] S9FxMonitor Thread Status = True
2022-03-17 16:07:08.544 [DBG] HSMSPort::Initialize execute.
2022-03-17 16:07:08.546 [DBG] Start - Connector Thread.
2022-03-17 16:07:08.547 [DBG] - Connector Thread Status = True
2022-03-17 16:07:08.548 [DBG] Start ACOAT_01#Parser Thread.
2022-03-17 16:07:08.549 [DBG] ACOAT_01#Parser Thread Status = True
2022-03-17 16:07:08.554 [DBG] Start ACOAT_01#Timer Thread.
2022-03-17 16:07:08.554 [DBG] Completely Open the ACOAT_01 SECS Port
2022-03-17 16:07:08.555 [DBG] ACOAT_01#Timer Thread Status = True
2022-03-17 16:54:52.568 [DBG] Start S9FxMonitor Thread.
2022-03-17 16:54:52.572 [DBG] S9FxMonitor Thread Status = True
2022-03-17 16:54:52.572 [DBG] HSMSPort::Initialize execute.
2022-03-17 16:54:52.574 [DBG] Start - Connector Thread.
2022-03-17 16:54:52.575 [DBG] - Connector Thread Status = True
2022-03-17 16:54:52.576 [DBG] Start ACOAT_01#Parser Thread.
2022-03-17 16:54:52.578 [DBG] ACOAT_01#Parser Thread Status = True
2022-03-17 16:54:52.582 [DBG] Start ACOAT_01#Timer Thread.
2022-03-17 16:54:52.582 [DBG] Completely Open the ACOAT_01 SECS Port
2022-03-17 16:54:52.584 [DBG] ACOAT_01#Timer Thread Status = True

View File

@@ -0,0 +1,10 @@
2022-03-17 16:55:07.505 [DBG] Start S9FxMonitor Thread.
2022-03-17 16:55:07.530 [DBG] HSMSPort::Initialize execute.
2022-03-17 16:55:07.530 [DBG] Start - Connector Thread.
2022-03-17 16:55:07.532 [DBG] S9FxMonitor Thread Status = True
2022-03-17 16:55:07.532 [DBG] Start ACOAT_01#Parser Thread.
2022-03-17 16:55:07.533 [DBG] - Connector Thread Status = True
2022-03-17 16:55:07.534 [DBG] Start ACOAT_01#Timer Thread.
2022-03-17 16:55:07.535 [DBG] ACOAT_01#Parser Thread Status = True
2022-03-17 16:55:07.535 [DBG] Completely Open the ACOAT_01 SECS Port
2022-03-17 16:55:07.536 [DBG] ACOAT_01#Timer Thread Status = True

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,20 @@
2022-03-18 09:47:03.669 [DBG] Start S9FxMonitor Thread.
2022-03-18 09:47:03.692 [DBG] HSMSPort::Initialize execute.
2022-03-18 09:47:03.692 [DBG] Start - Connector Thread.
2022-03-18 09:47:03.693 [DBG] S9FxMonitor Thread Status = True
2022-03-18 09:47:03.695 [DBG] Start ACOAT_01#Parser Thread.
2022-03-18 09:47:03.696 [DBG] - Connector Thread Status = True
2022-03-18 09:47:03.698 [DBG] Start ACOAT_01#Timer Thread.
2022-03-18 09:47:03.699 [DBG] ACOAT_01#Parser Thread Status = True
2022-03-18 09:47:03.700 [DBG] Completely Open the ACOAT_01 SECS Port
2022-03-18 09:47:03.702 [DBG] ACOAT_01#Timer Thread Status = True
2022-03-18 09:48:15.835 [DBG] Start S9FxMonitor Thread.
2022-03-18 09:48:15.839 [DBG] S9FxMonitor Thread Status = True
2022-03-18 09:48:15.839 [DBG] HSMSPort::Initialize execute.
2022-03-18 09:48:15.841 [DBG] Start - Connector Thread.
2022-03-18 09:48:15.843 [DBG] - Connector Thread Status = True
2022-03-18 09:48:15.844 [DBG] Start ACOAT_01#Parser Thread.
2022-03-18 09:48:15.846 [DBG] ACOAT_01#Parser Thread Status = True
2022-03-18 09:48:15.851 [DBG] Start ACOAT_01#Timer Thread.
2022-03-18 09:48:15.852 [DBG] Completely Open the ACOAT_01 SECS Port
2022-03-18 09:48:15.853 [DBG] ACOAT_01#Timer Thread Status = True

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,412 @@
2022-03-18 16:10:33.253 [DBG] Start S9FxMonitor Thread.
2022-03-18 16:10:33.275 [DBG] HSMSPort::Initialize execute.
2022-03-18 16:10:33.275 [DBG] Start - Connector Thread.
2022-03-18 16:10:33.277 [DBG] S9FxMonitor Thread Status = True
2022-03-18 16:10:33.278 [DBG] Start ACOAT_01#Parser Thread.
2022-03-18 16:10:33.280 [DBG] - Connector Thread Status = True
2022-03-18 16:10:33.282 [DBG] Start ACOAT_01#Timer Thread.
2022-03-18 16:10:33.283 [DBG] ACOAT_01#Parser Thread Status = True
2022-03-18 16:10:33.285 [DBG] Completely Open the ACOAT_01 SECS Port
2022-03-18 16:10:33.285 [DBG] HSMSPort::OnConnected Status=CONNECTING
2022-03-18 16:10:33.285 [DBG] UpdateStatus: Prev:UNKNOWN=>Now:CONNECTING=>New:CONNECT
2022-03-18 16:10:33.285 [DBG] UpdateStatus: Prev:CONNECTING=>Now:CONNECT
2022-03-18 16:10:33.286 [DBG] ACOAT_01#Timer Thread Status = True
2022-03-18 16:10:33.287 [DBG] Start ACOAT_01#Reader Thread.
2022-03-18 16:10:33.289 [DBG] ACOAT_01#Reader Thread Status = True
2022-03-18 16:10:33.291 [DBG] Start ACOAT_01#Writer Thread.
2022-03-18 16:10:33.293 [DBG] ACOAT_01#Writer Thread Status = True
2022-03-18 16:10:33.294 [DBG] Timer::StartTimer LinkTest
2022-03-18 16:10:33.295 [DBG] Timer::StartTimer T6
2022-03-18 16:10:33.297 [DBG] [WRITE] [SB:2130706432, SELECT_REQ] 00 00 00 0A FF FF 00 00 00 01 7F 00 00 00
2022-03-18 16:10:33.765 [DBG] Timer::StartTimer T8
2022-03-18 16:10:33.767 [DBG] Timer::StopTimer T8
2022-03-18 16:10:33.767 [DBG] Read Data: 10 -- FF FF 00 00 00 02 7F 00 00 00
2022-03-18 16:10:33.767 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 02 7F 00 00 00
2022-03-18 16:10:33.768 [DBG] HSMSPort::OnReadHsms control message.
2022-03-18 16:10:33.768 [DBG] Timer::StopTimer T6
2022-03-18 16:10:33.768 [DBG] UpdateStatus: Prev:CONNECTING=>Now:CONNECT=>New:SELECT
2022-03-18 16:10:33.768 [DBG] UpdateStatus: Prev:CONNECT=>Now:SELECT
2022-03-18 16:10:33.801 [DBG] Writer#Run Send Primary Message 1
2022-03-18 16:10:33.805 [DBG] Timer::StartT3Timer, SystemBytes=1
2022-03-18 16:10:33.805 [DBG] WriteSendMessage: StartT3Timer 1
2022-03-18 16:10:34.065 [DBG] Timer::StartTimer T8
2022-03-18 16:10:34.065 [DBG] Timer::StopTimer T8
2022-03-18 16:10:34.065 [DBG] Read Data: 33 -- 00 01 01 0E 00 00 00 00 00 01 01 02 21 01 00 01 02 41 06 20 20 20 20 20 20 41 06 20 20 20 20 20 20
2022-03-18 16:10:34.065 [DBG] Reader#ByteToBlock Header: 00 01 01 0E 00 00 00 00 00 01
2022-03-18 16:10:34.065 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 02 41 06 20 20 20 20 20 20 41 06 20 20 20 20 20 20
2022-03-18 16:10:34.065 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:10:34.089 [DBG] Timer::StopT3Timer, SystemBytes=1
2022-03-18 16:10:34.626 [DBG] Writer#Run Send Primary Message 2
2022-03-18 16:10:34.626 [DBG] Timer::StartT3Timer, SystemBytes=2
2022-03-18 16:10:34.626 [DBG] WriteSendMessage: StartT3Timer 2
2022-03-18 16:10:34.703 [DBG] Timer::StartTimer T8
2022-03-18 16:10:34.703 [DBG] Timer::StopTimer T8
2022-03-18 16:10:34.703 [DBG] Read Data: 13 -- 00 01 01 12 00 00 00 00 00 02 21 01 00
2022-03-18 16:10:34.703 [DBG] Reader#ByteToBlock Header: 00 01 01 12 00 00 00 00 00 02
2022-03-18 16:10:34.703 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:10:34.703 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:10:34.719 [DBG] Timer::StopT3Timer, SystemBytes=2
2022-03-18 16:10:35.249 [DBG] Writer#Run Send Primary Message 3
2022-03-18 16:10:35.249 [DBG] Timer::StartT3Timer, SystemBytes=3
2022-03-18 16:10:35.249 [DBG] WriteSendMessage: StartT3Timer 3
2022-03-18 16:10:35.359 [DBG] Timer::StartTimer T8
2022-03-18 16:10:35.359 [DBG] Timer::StopTimer T8
2022-03-18 16:10:35.359 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 03 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:10:35.359 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 03
2022-03-18 16:10:35.359 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:10:35.359 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:10:35.376 [DBG] Timer::StopT3Timer, SystemBytes=3
2022-03-18 16:10:35.915 [DBG] Writer#Run Send Primary Message 4
2022-03-18 16:10:35.915 [DBG] Timer::StartT3Timer, SystemBytes=4
2022-03-18 16:10:35.915 [DBG] WriteSendMessage: StartT3Timer 4
2022-03-18 16:10:35.992 [DBG] Timer::StartTimer T8
2022-03-18 16:10:35.992 [DBG] Timer::StopTimer T8
2022-03-18 16:10:35.992 [DBG] Read Data: 13 -- 00 01 06 18 00 00 00 00 00 04 21 01 01
2022-03-18 16:10:35.992 [DBG] Reader#ByteToBlock Header: 00 01 06 18 00 00 00 00 00 04
2022-03-18 16:10:35.992 [DBG] Reader#ByteToBlock Data: 21 01 01
2022-03-18 16:10:35.992 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:10:36.007 [DBG] Timer::StopT3Timer, SystemBytes=4
2022-03-18 16:10:36.537 [DBG] Writer#Run Send Primary Message 5
2022-03-18 16:10:36.537 [DBG] Timer::StartT3Timer, SystemBytes=5
2022-03-18 16:10:36.537 [DBG] WriteSendMessage: StartT3Timer 5
2022-03-18 16:10:36.630 [DBG] Timer::StartTimer T8
2022-03-18 16:10:36.630 [DBG] Timer::StopTimer T8
2022-03-18 16:10:36.630 [DBG] Read Data: 17 -- 00 01 02 2C 00 00 00 00 00 05 01 02 21 01 00 01 00
2022-03-18 16:10:36.630 [DBG] Reader#ByteToBlock Header: 00 01 02 2C 00 00 00 00 00 05
2022-03-18 16:10:36.630 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 00
2022-03-18 16:10:36.630 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:10:36.644 [DBG] Timer::StopT3Timer, SystemBytes=5
2022-03-18 16:10:37.176 [DBG] Writer#Run Send Primary Message 6
2022-03-18 16:10:37.176 [DBG] Timer::StartT3Timer, SystemBytes=6
2022-03-18 16:10:37.176 [DBG] WriteSendMessage: StartT3Timer 6
2022-03-18 16:10:37.236 [DBG] Timer::StartTimer T8
2022-03-18 16:10:37.236 [DBG] Timer::StopTimer T8
2022-03-18 16:10:37.236 [DBG] Read Data: 13 -- 00 01 02 26 00 00 00 00 00 06 21 01 00
2022-03-18 16:10:37.236 [DBG] Reader#ByteToBlock Header: 00 01 02 26 00 00 00 00 00 06
2022-03-18 16:10:37.236 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:10:37.236 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:10:37.251 [DBG] Timer::StopT3Timer, SystemBytes=6
2022-03-18 16:10:37.784 [DBG] Writer#Run Send Primary Message 7
2022-03-18 16:10:37.784 [DBG] Timer::StartT3Timer, SystemBytes=7
2022-03-18 16:10:37.784 [DBG] WriteSendMessage: StartT3Timer 7
2022-03-18 16:10:37.892 [DBG] Timer::StartTimer T8
2022-03-18 16:10:37.892 [DBG] Timer::StopTimer T8
2022-03-18 16:10:37.892 [DBG] Read Data: 13 -- 00 01 02 24 00 00 00 00 00 07 21 01 00
2022-03-18 16:10:37.892 [DBG] Reader#ByteToBlock Header: 00 01 02 24 00 00 00 00 00 07
2022-03-18 16:10:37.892 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:10:37.892 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:10:37.908 [DBG] Timer::StopT3Timer, SystemBytes=7
2022-03-18 16:10:38.439 [DBG] Writer#Run Send Primary Message 8
2022-03-18 16:10:38.439 [DBG] Timer::StartT3Timer, SystemBytes=8
2022-03-18 16:10:38.439 [DBG] WriteSendMessage: StartT3Timer 8
2022-03-18 16:10:38.530 [DBG] Timer::StartTimer T8
2022-03-18 16:10:38.530 [DBG] Timer::StopTimer T8
2022-03-18 16:10:38.530 [DBG] Read Data: 13 -- 00 01 02 22 00 00 00 00 00 08 21 01 00
2022-03-18 16:10:38.530 [DBG] Reader#ByteToBlock Header: 00 01 02 22 00 00 00 00 00 08
2022-03-18 16:10:38.530 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:10:38.530 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:10:38.546 [DBG] Timer::StopT3Timer, SystemBytes=8
2022-03-18 16:10:39.083 [DBG] Writer#Run Send Primary Message 9
2022-03-18 16:10:39.083 [DBG] Timer::StartT3Timer, SystemBytes=9
2022-03-18 16:10:39.083 [DBG] WriteSendMessage: StartT3Timer 9
2022-03-18 16:10:39.193 [DBG] Timer::StartTimer T8
2022-03-18 16:10:39.193 [DBG] Timer::StopTimer T8
2022-03-18 16:10:39.193 [DBG] Read Data: 13 -- 00 01 05 04 00 00 00 00 00 09 21 01 00
2022-03-18 16:10:39.193 [DBG] Reader#ByteToBlock Header: 00 01 05 04 00 00 00 00 00 09
2022-03-18 16:10:39.193 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:10:39.193 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:10:39.209 [DBG] Timer::StopT3Timer, SystemBytes=9
2022-03-18 16:10:39.739 [DBG] Writer#Run Send Primary Message 10
2022-03-18 16:10:39.746 [DBG] Timer::StartT3Timer, SystemBytes=10
2022-03-18 16:10:39.746 [DBG] WriteSendMessage: StartT3Timer 10
2022-03-18 16:10:39.865 [DBG] Timer::StartTimer T8
2022-03-18 16:10:39.865 [DBG] Timer::StopTimer T8
2022-03-18 16:10:39.865 [DBG] Read Data: 13 -- 00 01 02 22 00 00 00 00 00 0A 21 01 00
2022-03-18 16:10:39.865 [DBG] Reader#ByteToBlock Header: 00 01 02 22 00 00 00 00 00 0A
2022-03-18 16:10:39.865 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:10:39.865 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:10:39.881 [DBG] Timer::StopT3Timer, SystemBytes=10
2022-03-18 16:10:40.413 [DBG] Writer#Run Send Primary Message 11
2022-03-18 16:10:40.413 [DBG] Timer::StartT3Timer, SystemBytes=11
2022-03-18 16:10:40.413 [DBG] WriteSendMessage: StartT3Timer 11
2022-03-18 16:10:40.525 [DBG] Timer::StartTimer T8
2022-03-18 16:10:40.525 [DBG] Timer::StopTimer T8
2022-03-18 16:10:40.525 [DBG] Read Data: 13 -- 00 01 02 24 00 00 00 00 00 0B 21 01 00
2022-03-18 16:10:40.525 [DBG] Reader#ByteToBlock Header: 00 01 02 24 00 00 00 00 00 0B
2022-03-18 16:10:40.525 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:10:40.525 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:10:40.541 [DBG] Timer::StopT3Timer, SystemBytes=11
2022-03-18 16:10:41.072 [DBG] Writer#Run Send Primary Message 12
2022-03-18 16:10:41.072 [DBG] Timer::StartT3Timer, SystemBytes=12
2022-03-18 16:10:41.072 [DBG] WriteSendMessage: StartT3Timer 12
2022-03-18 16:10:41.181 [DBG] Timer::StartTimer T8
2022-03-18 16:10:41.181 [DBG] Timer::StopTimer T8
2022-03-18 16:10:41.181 [DBG] Read Data: 13 -- 00 01 02 26 00 00 00 00 00 0C 21 01 00
2022-03-18 16:10:41.181 [DBG] Reader#ByteToBlock Header: 00 01 02 26 00 00 00 00 00 0C
2022-03-18 16:10:41.181 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:10:41.181 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:10:41.197 [DBG] Timer::StopT3Timer, SystemBytes=12
2022-03-18 16:10:41.724 [DBG] Writer#Run Send Primary Message 13
2022-03-18 16:10:41.724 [DBG] Timer::StartT3Timer, SystemBytes=13
2022-03-18 16:10:41.724 [DBG] WriteSendMessage: StartT3Timer 13
2022-03-18 16:10:41.804 [DBG] Timer::StartTimer T8
2022-03-18 16:10:41.804 [DBG] Timer::StopTimer T8
2022-03-18 16:10:41.804 [DBG] Read Data: 13 -- 00 01 05 04 00 00 00 00 00 0D 21 01 00
2022-03-18 16:10:41.804 [DBG] Reader#ByteToBlock Header: 00 01 05 04 00 00 00 00 00 0D
2022-03-18 16:10:41.804 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:10:41.804 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:10:41.820 [DBG] Timer::StopT3Timer, SystemBytes=13
2022-03-18 16:10:42.349 [DBG] Writer#Run Send Primary Message 14
2022-03-18 16:10:42.349 [DBG] Timer::StartT3Timer, SystemBytes=14
2022-03-18 16:10:42.349 [DBG] WriteSendMessage: StartT3Timer 14
2022-03-18 16:10:42.459 [DBG] Timer::StartTimer T8
2022-03-18 16:10:42.459 [DBG] Timer::StopTimer T8
2022-03-18 16:10:42.459 [DBG] Read Data: 17 -- 00 01 02 2C 00 00 00 00 00 0E 01 02 21 01 00 01 00
2022-03-18 16:10:42.459 [DBG] Reader#ByteToBlock Header: 00 01 02 2C 00 00 00 00 00 0E
2022-03-18 16:10:42.459 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 00
2022-03-18 16:10:42.459 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:10:42.475 [DBG] Timer::StopT3Timer, SystemBytes=14
2022-03-18 16:10:43.006 [DBG] Writer#Run Send Primary Message 15
2022-03-18 16:10:43.006 [DBG] Timer::StartT3Timer, SystemBytes=15
2022-03-18 16:10:43.006 [DBG] WriteSendMessage: StartT3Timer 15
2022-03-18 16:10:43.053 [DBG] Timer::StartTimer T8
2022-03-18 16:10:43.053 [DBG] Timer::StopTimer T8
2022-03-18 16:10:43.053 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 0F 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:10:43.053 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 0F
2022-03-18 16:10:43.053 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:10:43.053 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:10:43.068 [DBG] Timer::StopT3Timer, SystemBytes=15
2022-03-18 16:10:43.596 [DBG] Writer#Run Send Primary Message 16
2022-03-18 16:10:43.596 [DBG] Timer::StartT3Timer, SystemBytes=16
2022-03-18 16:10:43.596 [DBG] WriteSendMessage: StartT3Timer 16
2022-03-18 16:10:43.659 [DBG] Timer::StartTimer T8
2022-03-18 16:10:43.659 [DBG] Timer::StopTimer T8
2022-03-18 16:10:43.659 [DBG] Read Data: 198 -- 00 01 05 06 00 00 00 00 00 10 01 02 01 03 21 01 01 B1 04 00 00 00 0A 41 50 74 65 73 74 31 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01 03 21 01 02 B1 04 00 00 00 0B 41 50 74 65 73 74 32 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
2022-03-18 16:10:43.659 [DBG] Reader#ByteToBlock Header: 00 01 05 06 00 00 00 00 00 10
2022-03-18 16:10:43.659 [DBG] Reader#ByteToBlock Data: 01 02 01 03 21 01 01 B1 04 00 00 00 0A 41 50 74 65 73 74 31 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01 03 21 01 02 B1 04 00 00 00 0B 41 50 74 65 73 74 32 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
2022-03-18 16:10:43.659 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:10:43.674 [DBG] Timer::StopT3Timer, SystemBytes=16
2022-03-18 16:10:44.207 [DBG] Writer#Run Send Primary Message 17
2022-03-18 16:10:44.207 [DBG] Timer::StartT3Timer, SystemBytes=17
2022-03-18 16:10:44.207 [DBG] WriteSendMessage: StartT3Timer 17
2022-03-18 16:10:44.318 [DBG] Timer::StartTimer T8
2022-03-18 16:10:44.318 [DBG] Timer::StopTimer T8
2022-03-18 16:10:44.318 [DBG] Read Data: 54 -- 00 01 07 14 00 00 00 00 00 11 01 06 41 05 74 65 73 74 31 41 05 74 65 73 74 32 41 05 74 65 73 74 33 41 05 74 65 73 74 34 41 05 74 65 73 74 35 41 05 74 65 73 74 36
2022-03-18 16:10:44.318 [DBG] Reader#ByteToBlock Header: 00 01 07 14 00 00 00 00 00 11
2022-03-18 16:10:44.318 [DBG] Reader#ByteToBlock Data: 01 06 41 05 74 65 73 74 31 41 05 74 65 73 74 32 41 05 74 65 73 74 33 41 05 74 65 73 74 34 41 05 74 65 73 74 35 41 05 74 65 73 74 36
2022-03-18 16:10:44.318 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:10:44.334 [DBG] Timer::StopT3Timer, SystemBytes=17
2022-03-18 16:10:44.871 [DBG] Writer#Run Send Primary Message 18
2022-03-18 16:10:44.871 [DBG] Timer::StartT3Timer, SystemBytes=18
2022-03-18 16:10:44.871 [DBG] WriteSendMessage: StartT3Timer 18
2022-03-18 16:10:44.980 [DBG] Timer::StartTimer T8
2022-03-18 16:10:44.980 [DBG] Timer::StopTimer T8
2022-03-18 16:10:44.980 [DBG] Read Data: 96 -- 00 01 02 0E 00 00 00 00 00 12 01 0E B1 04 00 00 00 01 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 00 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05
2022-03-18 16:10:44.980 [DBG] Reader#ByteToBlock Header: 00 01 02 0E 00 00 00 00 00 12
2022-03-18 16:10:44.980 [DBG] Reader#ByteToBlock Data: 01 0E B1 04 00 00 00 01 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 00 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05
2022-03-18 16:10:44.980 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:10:44.995 [DBG] Timer::StopT3Timer, SystemBytes=18
2022-03-18 16:10:45.524 [DBG] Writer#Run Send Primary Message 19
2022-03-18 16:10:45.524 [DBG] Timer::StartT3Timer, SystemBytes=19
2022-03-18 16:10:45.524 [DBG] WriteSendMessage: StartT3Timer 19
2022-03-18 16:10:45.632 [DBG] Timer::StartTimer T8
2022-03-18 16:10:45.632 [DBG] Timer::StopTimer T8
2022-03-18 16:10:45.632 [DBG] Read Data: 13 -- 00 01 02 10 00 00 00 00 00 13 21 01 00
2022-03-18 16:10:45.632 [DBG] Reader#ByteToBlock Header: 00 01 02 10 00 00 00 00 00 13
2022-03-18 16:10:45.632 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:10:45.632 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:10:45.648 [DBG] Timer::StopT3Timer, SystemBytes=19
2022-03-18 16:10:46.179 [DBG] Writer#Run Send Primary Message 20
2022-03-18 16:10:46.179 [DBG] Timer::StartT3Timer, SystemBytes=20
2022-03-18 16:10:46.179 [DBG] WriteSendMessage: StartT3Timer 20
2022-03-18 16:10:46.288 [DBG] Timer::StartTimer T8
2022-03-18 16:10:46.288 [DBG] Timer::StopTimer T8
2022-03-18 16:10:46.288 [DBG] Read Data: 13 -- 00 01 01 10 00 00 00 00 00 14 21 01 00
2022-03-18 16:10:46.288 [DBG] Reader#ByteToBlock Header: 00 01 01 10 00 00 00 00 00 14
2022-03-18 16:10:46.288 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:10:46.288 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:10:46.304 [DBG] Timer::StopT3Timer, SystemBytes=20
2022-03-18 16:10:46.843 [DBG] Writer#Run Send Primary Message 21
2022-03-18 16:10:46.843 [DBG] Timer::StartT3Timer, SystemBytes=21
2022-03-18 16:10:46.843 [DBG] WriteSendMessage: StartT3Timer 21
2022-03-18 16:10:46.954 [DBG] Timer::StartTimer T8
2022-03-18 16:10:46.954 [DBG] Timer::StopTimer T8
2022-03-18 16:10:46.954 [DBG] Read Data: 13 -- 00 01 01 12 00 00 00 00 00 15 21 01 00
2022-03-18 16:10:46.954 [DBG] Reader#ByteToBlock Header: 00 01 01 12 00 00 00 00 00 15
2022-03-18 16:10:46.954 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:10:46.954 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:10:46.970 [DBG] Timer::StopT3Timer, SystemBytes=21
2022-03-18 16:10:47.503 [DBG] Writer#Run Send Primary Message 22
2022-03-18 16:10:47.503 [DBG] Timer::StartT3Timer, SystemBytes=22
2022-03-18 16:10:47.503 [DBG] WriteSendMessage: StartT3Timer 22
2022-03-18 16:10:47.610 [DBG] Timer::StartTimer T8
2022-03-18 16:10:47.610 [DBG] Timer::StopTimer T8
2022-03-18 16:10:47.610 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 16 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:10:47.610 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 16
2022-03-18 16:10:47.610 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:10:47.610 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:10:47.625 [DBG] Timer::StopT3Timer, SystemBytes=22
2022-03-18 16:10:48.161 [DBG] Writer#Run Send Primary Message 23
2022-03-18 16:10:48.161 [DBG] Timer::StartT3Timer, SystemBytes=23
2022-03-18 16:10:48.161 [DBG] WriteSendMessage: StartT3Timer 23
2022-03-18 16:10:48.271 [DBG] Timer::StartTimer T8
2022-03-18 16:10:48.271 [DBG] Timer::StopTimer T8
2022-03-18 16:10:48.271 [DBG] Read Data: 13 -- 00 01 02 18 00 00 00 00 00 17 21 01 00
2022-03-18 16:10:48.271 [DBG] Reader#ByteToBlock Header: 00 01 02 18 00 00 00 00 00 17
2022-03-18 16:10:48.271 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:10:48.271 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:10:48.287 [DBG] Timer::StopT3Timer, SystemBytes=23
2022-03-18 16:11:45.598 [DBG] Writer#Run Send Primary Message 24
2022-03-18 16:11:45.598 [DBG] Timer::StartT3Timer, SystemBytes=24
2022-03-18 16:11:45.598 [DBG] WriteSendMessage: StartT3Timer 24
2022-03-18 16:11:45.709 [DBG] Timer::StartTimer T8
2022-03-18 16:11:45.709 [DBG] Timer::StopTimer T8
2022-03-18 16:11:45.709 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 18 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:11:45.709 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 18
2022-03-18 16:11:45.709 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:11:45.709 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:11:45.725 [DBG] Timer::StopT3Timer, SystemBytes=24
2022-03-18 16:12:34.252 [DBG] HSMSTimer::CheckOtherTimeout: 120.9591714, LinkTest
2022-03-18 16:12:34.252 [DBG] Timer::StartTimer T6
2022-03-18 16:12:34.253 [DBG] [WRITE] [SB:2130706433, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 01
2022-03-18 16:12:34.253 [DBG] Timer::StartTimer LinkTest
2022-03-18 16:12:34.271 [DBG] Timer::StartTimer T8
2022-03-18 16:12:34.271 [DBG] Timer::StopTimer T8
2022-03-18 16:12:34.271 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 01
2022-03-18 16:12:34.271 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 01
2022-03-18 16:12:34.271 [DBG] HSMSPort::OnReadHsms control message.
2022-03-18 16:12:34.271 [DBG] Timer::StopTimer T6
2022-03-18 16:12:40.797 [DBG] Writer#Run Send Primary Message 25
2022-03-18 16:12:40.797 [DBG] Timer::StartT3Timer, SystemBytes=25
2022-03-18 16:12:40.797 [DBG] WriteSendMessage: StartT3Timer 25
2022-03-18 16:12:40.876 [DBG] Timer::StartTimer T8
2022-03-18 16:12:40.876 [DBG] Timer::StopTimer T8
2022-03-18 16:12:40.876 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 19 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:12:40.876 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 19
2022-03-18 16:12:40.876 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:12:40.876 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:12:40.892 [DBG] Timer::StopT3Timer, SystemBytes=25
2022-03-18 16:12:56.411 [DBG] Writer#Run Send Primary Message 26
2022-03-18 16:12:56.411 [DBG] Timer::StartT3Timer, SystemBytes=26
2022-03-18 16:12:56.411 [DBG] WriteSendMessage: StartT3Timer 26
2022-03-18 16:12:56.491 [DBG] Timer::StartTimer T8
2022-03-18 16:12:56.491 [DBG] Timer::StopTimer T8
2022-03-18 16:12:56.491 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 1A 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:12:56.491 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 1A
2022-03-18 16:12:56.491 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:12:56.491 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:12:56.507 [DBG] Timer::StopT3Timer, SystemBytes=26
2022-03-18 16:13:15.166 [DBG] Writer#Run Send Primary Message 27
2022-03-18 16:13:15.166 [DBG] Timer::StartT3Timer, SystemBytes=27
2022-03-18 16:13:15.166 [DBG] WriteSendMessage: StartT3Timer 27
2022-03-18 16:13:15.291 [DBG] Timer::StartTimer T8
2022-03-18 16:13:15.291 [DBG] Timer::StopTimer T8
2022-03-18 16:13:15.291 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 1B 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:13:15.291 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 1B
2022-03-18 16:13:15.291 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:13:15.291 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:13:15.306 [DBG] Timer::StopT3Timer, SystemBytes=27
2022-03-18 16:14:12.002 [DBG] Writer#Run Send Primary Message 28
2022-03-18 16:14:12.002 [DBG] Timer::StartT3Timer, SystemBytes=28
2022-03-18 16:14:12.002 [DBG] WriteSendMessage: StartT3Timer 28
2022-03-18 16:14:12.112 [DBG] Timer::StartTimer T8
2022-03-18 16:14:12.112 [DBG] Timer::StopTimer T8
2022-03-18 16:14:12.112 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 1C 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:14:12.112 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 1C
2022-03-18 16:14:12.112 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:14:12.112 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:14:12.128 [DBG] Timer::StopT3Timer, SystemBytes=28
2022-03-18 16:14:25.756 [DBG] Writer#Run Send Primary Message 29
2022-03-18 16:14:25.756 [DBG] Timer::StartT3Timer, SystemBytes=29
2022-03-18 16:14:25.756 [DBG] WriteSendMessage: StartT3Timer 29
2022-03-18 16:14:25.816 [DBG] Timer::StartTimer T8
2022-03-18 16:14:25.816 [DBG] Timer::StopTimer T8
2022-03-18 16:14:25.816 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 1D 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:14:25.816 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 1D
2022-03-18 16:14:25.816 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:14:25.816 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:14:25.832 [DBG] Timer::StopT3Timer, SystemBytes=29
2022-03-18 16:14:35.197 [DBG] HSMSTimer::CheckOtherTimeout: 120.9447011, LinkTest
2022-03-18 16:14:35.197 [DBG] Timer::StartTimer T6
2022-03-18 16:14:35.197 [DBG] [WRITE] [SB:2130706434, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 02
2022-03-18 16:14:35.197 [DBG] Timer::StartTimer LinkTest
2022-03-18 16:14:35.214 [DBG] Timer::StartTimer T8
2022-03-18 16:14:35.214 [DBG] Timer::StopTimer T8
2022-03-18 16:14:35.214 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 02
2022-03-18 16:14:35.214 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 02
2022-03-18 16:14:35.214 [DBG] HSMSPort::OnReadHsms control message.
2022-03-18 16:14:35.214 [DBG] Timer::StopTimer T6
2022-03-18 16:14:38.498 [DBG] Writer#Run Send Primary Message 30
2022-03-18 16:14:38.498 [DBG] Timer::StartT3Timer, SystemBytes=30
2022-03-18 16:14:38.498 [DBG] WriteSendMessage: StartT3Timer 30
2022-03-18 16:14:38.610 [DBG] Timer::StartTimer T8
2022-03-18 16:14:38.610 [DBG] Timer::StopTimer T8
2022-03-18 16:14:38.610 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 1E 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:14:38.610 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 1E
2022-03-18 16:14:38.610 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:14:38.610 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:14:38.626 [DBG] Timer::StopT3Timer, SystemBytes=30
2022-03-18 16:15:38.642 [DBG] Timer::StartTimer T8
2022-03-18 16:15:38.642 [DBG] Timer::StopTimer T8
2022-03-18 16:15:38.642 [DBG] Read Data: 10 -- FF FF 00 00 00 05 62 BD 75 75
2022-03-18 16:15:38.642 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 62 BD 75 75
2022-03-18 16:15:38.642 [DBG] HSMSPort::OnReadHsms control message.
2022-03-18 16:15:38.642 [DBG] [WRITE] [SB:1656583541, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 62 BD 75 75
2022-03-18 16:16:36.098 [DBG] HSMSTimer::CheckOtherTimeout: 120.9008183, LinkTest
2022-03-18 16:16:36.098 [DBG] Timer::StartTimer T6
2022-03-18 16:16:36.098 [DBG] [WRITE] [SB:2130706435, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 03
2022-03-18 16:16:36.098 [DBG] Timer::StartTimer LinkTest
2022-03-18 16:16:36.115 [DBG] Timer::StartTimer T8
2022-03-18 16:16:36.115 [DBG] Timer::StopTimer T8
2022-03-18 16:16:36.115 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 03
2022-03-18 16:16:36.115 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 03
2022-03-18 16:16:36.115 [DBG] HSMSPort::OnReadHsms control message.
2022-03-18 16:16:36.115 [DBG] Timer::StopTimer T6
2022-03-18 16:17:36.123 [DBG] Timer::StartTimer T8
2022-03-18 16:17:36.123 [DBG] Timer::StopTimer T8
2022-03-18 16:17:36.123 [DBG] Read Data: 10 -- FF FF 00 00 00 05 62 BD 75 76
2022-03-18 16:17:36.123 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 62 BD 75 76
2022-03-18 16:17:36.123 [DBG] HSMSPort::OnReadHsms control message.
2022-03-18 16:17:36.123 [DBG] [WRITE] [SB:1656583542, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 62 BD 75 76
2022-03-18 16:18:36.109 [DBG] HSMSTimer::CheckOtherTimeout: 120.0111966, LinkTest
2022-03-18 16:18:36.109 [DBG] Timer::StartTimer T6
2022-03-18 16:18:36.109 [DBG] [WRITE] [SB:2130706436, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 04
2022-03-18 16:18:36.109 [DBG] Timer::StartTimer LinkTest
2022-03-18 16:18:36.125 [DBG] Timer::StartTimer T8
2022-03-18 16:18:36.126 [DBG] Timer::StopTimer T8
2022-03-18 16:18:36.126 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 04
2022-03-18 16:18:36.126 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 04
2022-03-18 16:18:36.126 [DBG] HSMSPort::OnReadHsms control message.
2022-03-18 16:18:36.126 [DBG] Timer::StopTimer T6
2022-03-18 16:19:36.138 [DBG] Timer::StartTimer T8
2022-03-18 16:19:36.138 [DBG] Timer::StopTimer T8
2022-03-18 16:19:36.138 [DBG] Read Data: 10 -- FF FF 00 00 00 05 62 BD 75 77
2022-03-18 16:19:36.138 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 62 BD 75 77
2022-03-18 16:19:36.138 [DBG] HSMSPort::OnReadHsms control message.
2022-03-18 16:19:36.138 [DBG] [WRITE] [SB:1656583543, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 62 BD 75 77
2022-03-18 16:20:36.144 [DBG] Timer::StartTimer T8
2022-03-18 16:20:36.144 [DBG] Timer::StopTimer T8
2022-03-18 16:20:36.144 [DBG] Read Data: 10 -- FF FF 00 00 00 05 62 BD 75 78
2022-03-18 16:20:36.144 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 62 BD 75 78
2022-03-18 16:20:36.144 [DBG] HSMSPort::OnReadHsms control message.
2022-03-18 16:20:36.144 [DBG] [WRITE] [SB:1656583544, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 62 BD 75 78
2022-03-18 16:20:36.192 [DBG] HSMSTimer::CheckOtherTimeout: 120.0830047, LinkTest
2022-03-18 16:20:36.192 [DBG] Timer::StartTimer T6
2022-03-18 16:20:36.192 [DBG] [WRITE] [SB:2130706437, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 05
2022-03-18 16:20:36.192 [DBG] Timer::StartTimer LinkTest
2022-03-18 16:20:36.207 [DBG] Timer::StartTimer T8
2022-03-18 16:20:36.207 [DBG] Timer::StopTimer T8
2022-03-18 16:20:36.207 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 05
2022-03-18 16:20:36.207 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 05
2022-03-18 16:20:36.207 [DBG] HSMSPort::OnReadHsms control message.
2022-03-18 16:20:36.207 [DBG] Timer::StopTimer T6
2022-03-18 16:21:44.775 [DBG] Start S9FxMonitor Thread.
2022-03-18 16:21:44.780 [DBG] S9FxMonitor Thread Status = True
2022-03-18 16:21:44.780 [DBG] HSMSPort::Initialize execute.
2022-03-18 16:21:44.782 [DBG] Start - Connector Thread.
2022-03-18 16:21:44.784 [DBG] - Connector Thread Status = True
2022-03-18 16:21:44.785 [DBG] Start ACOAT_01#Parser Thread.
2022-03-18 16:21:44.787 [DBG] ACOAT_01#Parser Thread Status = True
2022-03-18 16:21:44.791 [DBG] Start ACOAT_01#Timer Thread.
2022-03-18 16:21:44.791 [DBG] Completely Open the ACOAT_01 SECS Port
2022-03-18 16:21:44.793 [DBG] ACOAT_01#Timer Thread Status = True

View File

@@ -0,0 +1,290 @@
2022-03-18 16:21:57.410 [DBG] Start S9FxMonitor Thread.
2022-03-18 16:21:57.435 [DBG] HSMSPort::Initialize execute.
2022-03-18 16:21:57.435 [DBG] Start - Connector Thread.
2022-03-18 16:21:57.437 [DBG] S9FxMonitor Thread Status = True
2022-03-18 16:21:57.438 [DBG] Start ACOAT_01#Parser Thread.
2022-03-18 16:21:57.439 [DBG] - Connector Thread Status = True
2022-03-18 16:21:57.441 [DBG] Start ACOAT_01#Timer Thread.
2022-03-18 16:21:57.443 [DBG] ACOAT_01#Parser Thread Status = True
2022-03-18 16:21:57.444 [DBG] Completely Open the ACOAT_01 SECS Port
2022-03-18 16:21:57.444 [DBG] HSMSPort::OnConnected Status=CONNECTING
2022-03-18 16:21:57.444 [DBG] UpdateStatus: Prev:UNKNOWN=>Now:CONNECTING=>New:CONNECT
2022-03-18 16:21:57.445 [DBG] UpdateStatus: Prev:CONNECTING=>Now:CONNECT
2022-03-18 16:21:57.445 [DBG] ACOAT_01#Timer Thread Status = True
2022-03-18 16:21:57.446 [DBG] Start ACOAT_01#Reader Thread.
2022-03-18 16:21:57.448 [DBG] ACOAT_01#Reader Thread Status = True
2022-03-18 16:21:57.449 [DBG] Start ACOAT_01#Writer Thread.
2022-03-18 16:21:57.451 [DBG] ACOAT_01#Writer Thread Status = True
2022-03-18 16:21:57.452 [DBG] Timer::StartTimer LinkTest
2022-03-18 16:21:57.453 [DBG] Timer::StartTimer T6
2022-03-18 16:21:57.454 [DBG] [WRITE] [SB:2130706432, SELECT_REQ] 00 00 00 0A FF FF 00 00 00 01 7F 00 00 00
2022-03-18 16:21:57.519 [DBG] Timer::StartTimer T8
2022-03-18 16:21:57.521 [DBG] Timer::StopTimer T8
2022-03-18 16:21:57.521 [DBG] Read Data: 10 -- FF FF 00 00 00 02 7F 00 00 00
2022-03-18 16:21:57.521 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 02 7F 00 00 00
2022-03-18 16:21:57.522 [DBG] HSMSPort::OnReadHsms control message.
2022-03-18 16:21:57.522 [DBG] Timer::StopTimer T6
2022-03-18 16:21:57.522 [DBG] UpdateStatus: Prev:CONNECTING=>Now:CONNECT=>New:SELECT
2022-03-18 16:21:57.522 [DBG] UpdateStatus: Prev:CONNECT=>Now:SELECT
2022-03-18 16:22:00.450 [DBG] Writer#Run Send Primary Message 1
2022-03-18 16:22:00.455 [DBG] Timer::StartT3Timer, SystemBytes=1
2022-03-18 16:22:00.455 [DBG] WriteSendMessage: StartT3Timer 1
2022-03-18 16:22:00.572 [DBG] Timer::StartTimer T8
2022-03-18 16:22:00.572 [DBG] Timer::StopTimer T8
2022-03-18 16:22:00.572 [DBG] Read Data: 33 -- 00 01 01 0E 00 00 00 00 00 01 01 02 21 01 00 01 02 41 06 20 20 20 20 20 20 41 06 20 20 20 20 20 20
2022-03-18 16:22:00.572 [DBG] Reader#ByteToBlock Header: 00 01 01 0E 00 00 00 00 00 01
2022-03-18 16:22:00.572 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 02 41 06 20 20 20 20 20 20 41 06 20 20 20 20 20 20
2022-03-18 16:22:00.572 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:22:00.600 [DBG] Timer::StopT3Timer, SystemBytes=1
2022-03-18 16:22:01.139 [DBG] Writer#Run Send Primary Message 2
2022-03-18 16:22:01.139 [DBG] Timer::StartT3Timer, SystemBytes=2
2022-03-18 16:22:01.139 [DBG] WriteSendMessage: StartT3Timer 2
2022-03-18 16:22:01.232 [DBG] Timer::StartTimer T8
2022-03-18 16:22:01.232 [DBG] Timer::StopTimer T8
2022-03-18 16:22:01.232 [DBG] Read Data: 13 -- 00 01 01 12 00 00 00 00 00 02 21 01 00
2022-03-18 16:22:01.232 [DBG] Reader#ByteToBlock Header: 00 01 01 12 00 00 00 00 00 02
2022-03-18 16:22:01.232 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:22:01.232 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:22:01.243 [DBG] Timer::StopT3Timer, SystemBytes=2
2022-03-18 16:22:01.780 [DBG] Writer#Run Send Primary Message 3
2022-03-18 16:22:01.780 [DBG] Timer::StartT3Timer, SystemBytes=3
2022-03-18 16:22:01.780 [DBG] WriteSendMessage: StartT3Timer 3
2022-03-18 16:22:01.891 [DBG] Timer::StartTimer T8
2022-03-18 16:22:01.891 [DBG] Timer::StopTimer T8
2022-03-18 16:22:01.891 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 03 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:22:01.891 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 03
2022-03-18 16:22:01.891 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:22:01.891 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:22:01.909 [DBG] Timer::StopT3Timer, SystemBytes=3
2022-03-18 16:22:02.437 [DBG] Writer#Run Send Primary Message 4
2022-03-18 16:22:02.437 [DBG] Timer::StartT3Timer, SystemBytes=4
2022-03-18 16:22:02.437 [DBG] WriteSendMessage: StartT3Timer 4
2022-03-18 16:22:02.515 [DBG] Timer::StartTimer T8
2022-03-18 16:22:02.515 [DBG] Timer::StopTimer T8
2022-03-18 16:22:02.515 [DBG] Read Data: 13 -- 00 01 06 18 00 00 00 00 00 04 21 01 01
2022-03-18 16:22:02.515 [DBG] Reader#ByteToBlock Header: 00 01 06 18 00 00 00 00 00 04
2022-03-18 16:22:02.515 [DBG] Reader#ByteToBlock Data: 21 01 01
2022-03-18 16:22:02.515 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:22:02.530 [DBG] Timer::StopT3Timer, SystemBytes=4
2022-03-18 16:22:03.056 [DBG] Writer#Run Send Primary Message 5
2022-03-18 16:22:03.056 [DBG] Timer::StartT3Timer, SystemBytes=5
2022-03-18 16:22:03.056 [DBG] WriteSendMessage: StartT3Timer 5
2022-03-18 16:22:03.164 [DBG] Timer::StartTimer T8
2022-03-18 16:22:03.164 [DBG] Timer::StopTimer T8
2022-03-18 16:22:03.164 [DBG] Read Data: 17 -- 00 01 02 2C 00 00 00 00 00 05 01 02 21 01 00 01 00
2022-03-18 16:22:03.164 [DBG] Reader#ByteToBlock Header: 00 01 02 2C 00 00 00 00 00 05
2022-03-18 16:22:03.164 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 00
2022-03-18 16:22:03.164 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:22:03.179 [DBG] Timer::StopT3Timer, SystemBytes=5
2022-03-18 16:22:03.724 [DBG] Writer#Run Send Primary Message 6
2022-03-18 16:22:03.724 [DBG] Timer::StartT3Timer, SystemBytes=6
2022-03-18 16:22:03.724 [DBG] WriteSendMessage: StartT3Timer 6
2022-03-18 16:22:03.847 [DBG] Timer::StartTimer T8
2022-03-18 16:22:03.847 [DBG] Timer::StopTimer T8
2022-03-18 16:22:03.847 [DBG] Read Data: 13 -- 00 01 02 26 00 00 00 00 00 06 21 01 00
2022-03-18 16:22:03.847 [DBG] Reader#ByteToBlock Header: 00 01 02 26 00 00 00 00 00 06
2022-03-18 16:22:03.847 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:22:03.847 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:22:03.863 [DBG] Timer::StopT3Timer, SystemBytes=6
2022-03-18 16:22:04.392 [DBG] Writer#Run Send Primary Message 7
2022-03-18 16:22:04.392 [DBG] Timer::StartT3Timer, SystemBytes=7
2022-03-18 16:22:04.392 [DBG] WriteSendMessage: StartT3Timer 7
2022-03-18 16:22:04.501 [DBG] Timer::StartTimer T8
2022-03-18 16:22:04.501 [DBG] Timer::StopTimer T8
2022-03-18 16:22:04.501 [DBG] Read Data: 13 -- 00 01 02 24 00 00 00 00 00 07 21 01 00
2022-03-18 16:22:04.501 [DBG] Reader#ByteToBlock Header: 00 01 02 24 00 00 00 00 00 07
2022-03-18 16:22:04.501 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:22:04.501 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:22:04.517 [DBG] Timer::StopT3Timer, SystemBytes=7
2022-03-18 16:22:05.050 [DBG] Writer#Run Send Primary Message 8
2022-03-18 16:22:05.050 [DBG] Timer::StartT3Timer, SystemBytes=8
2022-03-18 16:22:05.050 [DBG] WriteSendMessage: StartT3Timer 8
2022-03-18 16:22:05.160 [DBG] Timer::StartTimer T8
2022-03-18 16:22:05.160 [DBG] Timer::StopTimer T8
2022-03-18 16:22:05.160 [DBG] Read Data: 13 -- 00 01 02 22 00 00 00 00 00 08 21 01 00
2022-03-18 16:22:05.160 [DBG] Reader#ByteToBlock Header: 00 01 02 22 00 00 00 00 00 08
2022-03-18 16:22:05.160 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:22:05.160 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:22:05.175 [DBG] Timer::StopT3Timer, SystemBytes=8
2022-03-18 16:22:05.712 [DBG] Writer#Run Send Primary Message 9
2022-03-18 16:22:05.712 [DBG] Timer::StartT3Timer, SystemBytes=9
2022-03-18 16:22:05.712 [DBG] WriteSendMessage: StartT3Timer 9
2022-03-18 16:22:05.822 [DBG] Timer::StartTimer T8
2022-03-18 16:22:05.822 [DBG] Timer::StopTimer T8
2022-03-18 16:22:05.822 [DBG] Read Data: 13 -- 00 01 05 04 00 00 00 00 00 09 21 01 00
2022-03-18 16:22:05.822 [DBG] Reader#ByteToBlock Header: 00 01 05 04 00 00 00 00 00 09
2022-03-18 16:22:05.822 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:22:05.822 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:22:05.838 [DBG] Timer::StopT3Timer, SystemBytes=9
2022-03-18 16:22:06.374 [DBG] Writer#Run Send Primary Message 10
2022-03-18 16:22:06.374 [DBG] Timer::StartT3Timer, SystemBytes=10
2022-03-18 16:22:06.374 [DBG] WriteSendMessage: StartT3Timer 10
2022-03-18 16:22:06.498 [DBG] Timer::StartTimer T8
2022-03-18 16:22:06.498 [DBG] Timer::StopTimer T8
2022-03-18 16:22:06.498 [DBG] Read Data: 13 -- 00 01 02 22 00 00 00 00 00 0A 21 01 00
2022-03-18 16:22:06.498 [DBG] Reader#ByteToBlock Header: 00 01 02 22 00 00 00 00 00 0A
2022-03-18 16:22:06.498 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:22:06.498 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:22:06.514 [DBG] Timer::StopT3Timer, SystemBytes=10
2022-03-18 16:22:07.038 [DBG] Writer#Run Send Primary Message 11
2022-03-18 16:22:07.038 [DBG] Timer::StartT3Timer, SystemBytes=11
2022-03-18 16:22:07.038 [DBG] WriteSendMessage: StartT3Timer 11
2022-03-18 16:22:07.101 [DBG] Timer::StartTimer T8
2022-03-18 16:22:07.101 [DBG] Timer::StopTimer T8
2022-03-18 16:22:07.101 [DBG] Read Data: 13 -- 00 01 02 24 00 00 00 00 00 0B 21 01 00
2022-03-18 16:22:07.101 [DBG] Reader#ByteToBlock Header: 00 01 02 24 00 00 00 00 00 0B
2022-03-18 16:22:07.101 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:22:07.101 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:22:07.116 [DBG] Timer::StopT3Timer, SystemBytes=11
2022-03-18 16:22:07.653 [DBG] Writer#Run Send Primary Message 12
2022-03-18 16:22:07.653 [DBG] Timer::StartT3Timer, SystemBytes=12
2022-03-18 16:22:07.653 [DBG] WriteSendMessage: StartT3Timer 12
2022-03-18 16:22:07.713 [DBG] Timer::StartTimer T8
2022-03-18 16:22:07.713 [DBG] Timer::StopTimer T8
2022-03-18 16:22:07.713 [DBG] Read Data: 13 -- 00 01 02 26 00 00 00 00 00 0C 21 01 00
2022-03-18 16:22:07.713 [DBG] Reader#ByteToBlock Header: 00 01 02 26 00 00 00 00 00 0C
2022-03-18 16:22:07.713 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:22:07.713 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:22:07.729 [DBG] Timer::StopT3Timer, SystemBytes=12
2022-03-18 16:22:08.255 [DBG] Writer#Run Send Primary Message 13
2022-03-18 16:22:08.255 [DBG] Timer::StartT3Timer, SystemBytes=13
2022-03-18 16:22:08.255 [DBG] WriteSendMessage: StartT3Timer 13
2022-03-18 16:22:08.365 [DBG] Timer::StartTimer T8
2022-03-18 16:22:08.365 [DBG] Timer::StopTimer T8
2022-03-18 16:22:08.365 [DBG] Read Data: 13 -- 00 01 05 04 00 00 00 00 00 0D 21 01 00
2022-03-18 16:22:08.365 [DBG] Reader#ByteToBlock Header: 00 01 05 04 00 00 00 00 00 0D
2022-03-18 16:22:08.365 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:22:08.365 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:22:08.381 [DBG] Timer::StopT3Timer, SystemBytes=13
2022-03-18 16:22:08.907 [DBG] Writer#Run Send Primary Message 14
2022-03-18 16:22:08.907 [DBG] Timer::StartT3Timer, SystemBytes=14
2022-03-18 16:22:08.907 [DBG] WriteSendMessage: StartT3Timer 14
2022-03-18 16:22:09.019 [DBG] Timer::StartTimer T8
2022-03-18 16:22:09.019 [DBG] Timer::StopTimer T8
2022-03-18 16:22:09.019 [DBG] Read Data: 17 -- 00 01 02 2C 00 00 00 00 00 0E 01 02 21 01 00 01 00
2022-03-18 16:22:09.019 [DBG] Reader#ByteToBlock Header: 00 01 02 2C 00 00 00 00 00 0E
2022-03-18 16:22:09.019 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 00
2022-03-18 16:22:09.019 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:22:09.035 [DBG] Timer::StopT3Timer, SystemBytes=14
2022-03-18 16:22:09.575 [DBG] Writer#Run Send Primary Message 15
2022-03-18 16:22:09.575 [DBG] Timer::StartT3Timer, SystemBytes=15
2022-03-18 16:22:09.575 [DBG] WriteSendMessage: StartT3Timer 15
2022-03-18 16:22:09.686 [DBG] Timer::StartTimer T8
2022-03-18 16:22:09.686 [DBG] Timer::StopTimer T8
2022-03-18 16:22:09.686 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 0F 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:22:09.686 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 0F
2022-03-18 16:22:09.686 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:22:09.686 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:22:09.702 [DBG] Timer::StopT3Timer, SystemBytes=15
2022-03-18 16:22:10.237 [DBG] Writer#Run Send Primary Message 16
2022-03-18 16:22:10.237 [DBG] Timer::StartT3Timer, SystemBytes=16
2022-03-18 16:22:10.237 [DBG] WriteSendMessage: StartT3Timer 16
2022-03-18 16:22:10.347 [DBG] Timer::StartTimer T8
2022-03-18 16:22:10.347 [DBG] Timer::StopTimer T8
2022-03-18 16:22:10.347 [DBG] Read Data: 198 -- 00 01 05 06 00 00 00 00 00 10 01 02 01 03 21 01 01 B1 04 00 00 00 0A 41 50 74 65 73 74 31 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01 03 21 01 02 B1 04 00 00 00 0B 41 50 74 65 73 74 32 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
2022-03-18 16:22:10.347 [DBG] Reader#ByteToBlock Header: 00 01 05 06 00 00 00 00 00 10
2022-03-18 16:22:10.347 [DBG] Reader#ByteToBlock Data: 01 02 01 03 21 01 01 B1 04 00 00 00 0A 41 50 74 65 73 74 31 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01 03 21 01 02 B1 04 00 00 00 0B 41 50 74 65 73 74 32 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
2022-03-18 16:22:10.347 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:22:10.363 [DBG] Timer::StopT3Timer, SystemBytes=16
2022-03-18 16:22:10.897 [DBG] Writer#Run Send Primary Message 17
2022-03-18 16:22:10.897 [DBG] Timer::StartT3Timer, SystemBytes=17
2022-03-18 16:22:10.897 [DBG] WriteSendMessage: StartT3Timer 17
2022-03-18 16:22:10.961 [DBG] Timer::StartTimer T8
2022-03-18 16:22:10.961 [DBG] Timer::StopTimer T8
2022-03-18 16:22:10.961 [DBG] Read Data: 54 -- 00 01 07 14 00 00 00 00 00 11 01 06 41 05 74 65 73 74 31 41 05 74 65 73 74 32 41 05 74 65 73 74 33 41 05 74 65 73 74 34 41 05 74 65 73 74 35 41 05 74 65 73 74 36
2022-03-18 16:22:10.961 [DBG] Reader#ByteToBlock Header: 00 01 07 14 00 00 00 00 00 11
2022-03-18 16:22:10.961 [DBG] Reader#ByteToBlock Data: 01 06 41 05 74 65 73 74 31 41 05 74 65 73 74 32 41 05 74 65 73 74 33 41 05 74 65 73 74 34 41 05 74 65 73 74 35 41 05 74 65 73 74 36
2022-03-18 16:22:10.961 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:22:10.977 [DBG] Timer::StopT3Timer, SystemBytes=17
2022-03-18 16:22:11.516 [DBG] Writer#Run Send Primary Message 18
2022-03-18 16:22:11.516 [DBG] Timer::StartT3Timer, SystemBytes=18
2022-03-18 16:22:11.516 [DBG] WriteSendMessage: StartT3Timer 18
2022-03-18 16:22:11.625 [DBG] Timer::StartTimer T8
2022-03-18 16:22:11.625 [DBG] Timer::StopTimer T8
2022-03-18 16:22:11.625 [DBG] Read Data: 96 -- 00 01 02 0E 00 00 00 00 00 12 01 0E B1 04 00 00 00 01 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 00 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05
2022-03-18 16:22:11.625 [DBG] Reader#ByteToBlock Header: 00 01 02 0E 00 00 00 00 00 12
2022-03-18 16:22:11.625 [DBG] Reader#ByteToBlock Data: 01 0E B1 04 00 00 00 01 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 00 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05
2022-03-18 16:22:11.625 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:22:11.641 [DBG] Timer::StopT3Timer, SystemBytes=18
2022-03-18 16:22:12.174 [DBG] Writer#Run Send Primary Message 19
2022-03-18 16:22:12.174 [DBG] Timer::StartT3Timer, SystemBytes=19
2022-03-18 16:22:12.174 [DBG] WriteSendMessage: StartT3Timer 19
2022-03-18 16:22:12.284 [DBG] Timer::StartTimer T8
2022-03-18 16:22:12.284 [DBG] Timer::StopTimer T8
2022-03-18 16:22:12.284 [DBG] Read Data: 13 -- 00 01 02 10 00 00 00 00 00 13 21 01 00
2022-03-18 16:22:12.284 [DBG] Reader#ByteToBlock Header: 00 01 02 10 00 00 00 00 00 13
2022-03-18 16:22:12.284 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:22:12.284 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:22:12.299 [DBG] Timer::StopT3Timer, SystemBytes=19
2022-03-18 16:22:12.832 [DBG] Writer#Run Send Primary Message 20
2022-03-18 16:22:12.832 [DBG] Timer::StartT3Timer, SystemBytes=20
2022-03-18 16:22:12.832 [DBG] WriteSendMessage: StartT3Timer 20
2022-03-18 16:22:12.944 [DBG] Timer::StartTimer T8
2022-03-18 16:22:12.944 [DBG] Timer::StopTimer T8
2022-03-18 16:22:12.944 [DBG] Read Data: 13 -- 00 01 01 10 00 00 00 00 00 14 21 01 00
2022-03-18 16:22:12.944 [DBG] Reader#ByteToBlock Header: 00 01 01 10 00 00 00 00 00 14
2022-03-18 16:22:12.944 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:22:12.944 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:22:12.959 [DBG] Timer::StopT3Timer, SystemBytes=20
2022-03-18 16:22:13.492 [DBG] Writer#Run Send Primary Message 21
2022-03-18 16:22:13.492 [DBG] Timer::StartT3Timer, SystemBytes=21
2022-03-18 16:22:13.492 [DBG] WriteSendMessage: StartT3Timer 21
2022-03-18 16:22:13.618 [DBG] Timer::StartTimer T8
2022-03-18 16:22:13.618 [DBG] Timer::StopTimer T8
2022-03-18 16:22:13.618 [DBG] Read Data: 13 -- 00 01 01 12 00 00 00 00 00 15 21 01 00
2022-03-18 16:22:13.618 [DBG] Reader#ByteToBlock Header: 00 01 01 12 00 00 00 00 00 15
2022-03-18 16:22:13.618 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:22:13.618 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:22:13.634 [DBG] Timer::StopT3Timer, SystemBytes=21
2022-03-18 16:22:14.164 [DBG] Writer#Run Send Primary Message 22
2022-03-18 16:22:14.164 [DBG] Timer::StartT3Timer, SystemBytes=22
2022-03-18 16:22:14.164 [DBG] WriteSendMessage: StartT3Timer 22
2022-03-18 16:22:14.274 [DBG] Timer::StartTimer T8
2022-03-18 16:22:14.274 [DBG] Timer::StopTimer T8
2022-03-18 16:22:14.274 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 16 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:22:14.274 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 16
2022-03-18 16:22:14.274 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:22:14.274 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:22:14.290 [DBG] Timer::StopT3Timer, SystemBytes=22
2022-03-18 16:22:14.827 [DBG] Writer#Run Send Primary Message 23
2022-03-18 16:22:14.827 [DBG] Timer::StartT3Timer, SystemBytes=23
2022-03-18 16:22:14.827 [DBG] WriteSendMessage: StartT3Timer 23
2022-03-18 16:22:14.932 [DBG] Timer::StartTimer T8
2022-03-18 16:22:14.932 [DBG] Timer::StopTimer T8
2022-03-18 16:22:14.932 [DBG] Read Data: 13 -- 00 01 02 18 00 00 00 00 00 17 21 01 00
2022-03-18 16:22:14.932 [DBG] Reader#ByteToBlock Header: 00 01 02 18 00 00 00 00 00 17
2022-03-18 16:22:14.932 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:22:14.932 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:22:14.947 [DBG] Timer::StopT3Timer, SystemBytes=23
2022-03-18 16:23:14.946 [DBG] Timer::StartTimer T8
2022-03-18 16:23:14.946 [DBG] Timer::StopTimer T8
2022-03-18 16:23:14.946 [DBG] Read Data: 10 -- FF FF 00 00 00 05 2D 6B 15 F0
2022-03-18 16:23:14.946 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 2D 6B 15 F0
2022-03-18 16:23:14.946 [DBG] HSMSPort::OnReadHsms control message.
2022-03-18 16:23:14.946 [DBG] [WRITE] [SB:761992688, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 2D 6B 15 F0
2022-03-18 16:23:58.430 [DBG] HSMSTimer::CheckOtherTimeout: 120.9796073, LinkTest
2022-03-18 16:23:58.430 [DBG] Timer::StartTimer T6
2022-03-18 16:23:58.430 [DBG] [WRITE] [SB:2130706433, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 01
2022-03-18 16:23:58.430 [DBG] Timer::StartTimer LinkTest
2022-03-18 16:23:58.445 [DBG] Timer::StartTimer T8
2022-03-18 16:23:58.446 [DBG] Timer::StopTimer T8
2022-03-18 16:23:58.446 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 01
2022-03-18 16:23:58.446 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 01
2022-03-18 16:23:58.446 [DBG] HSMSPort::OnReadHsms control message.
2022-03-18 16:23:58.446 [DBG] Timer::StopTimer T6
2022-03-18 16:24:58.457 [DBG] Timer::StartTimer T8
2022-03-18 16:24:58.457 [DBG] Timer::StopTimer T8
2022-03-18 16:24:58.457 [DBG] Read Data: 10 -- FF FF 00 00 00 05 2D 6B 15 F1
2022-03-18 16:24:58.457 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 2D 6B 15 F1
2022-03-18 16:24:58.457 [DBG] HSMSPort::OnReadHsms control message.
2022-03-18 16:24:58.457 [DBG] [WRITE] [SB:761992689, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 2D 6B 15 F1
2022-03-18 16:25:39.909 [DBG] Start S9FxMonitor Thread.
2022-03-18 16:25:39.913 [DBG] S9FxMonitor Thread Status = True
2022-03-18 16:25:39.913 [DBG] HSMSPort::Initialize execute.
2022-03-18 16:25:39.915 [DBG] Start - Connector Thread.
2022-03-18 16:25:39.917 [DBG] - Connector Thread Status = True
2022-03-18 16:25:39.917 [DBG] Start ACOAT_01#Parser Thread.
2022-03-18 16:25:39.919 [DBG] ACOAT_01#Parser Thread Status = True
2022-03-18 16:25:39.923 [DBG] Start ACOAT_01#Timer Thread.
2022-03-18 16:25:39.923 [DBG] Completely Open the ACOAT_01 SECS Port
2022-03-18 16:25:39.925 [DBG] ACOAT_01#Timer Thread Status = True

View File

@@ -0,0 +1,294 @@
2022-03-18 16:25:51.306 [DBG] Start S9FxMonitor Thread.
2022-03-18 16:25:51.328 [DBG] HSMSPort::Initialize execute.
2022-03-18 16:25:51.328 [DBG] Start - Connector Thread.
2022-03-18 16:25:51.330 [DBG] S9FxMonitor Thread Status = True
2022-03-18 16:25:51.332 [DBG] Start ACOAT_01#Parser Thread.
2022-03-18 16:25:51.334 [DBG] - Connector Thread Status = True
2022-03-18 16:25:51.335 [DBG] Start ACOAT_01#Timer Thread.
2022-03-18 16:25:51.337 [DBG] ACOAT_01#Parser Thread Status = True
2022-03-18 16:25:51.338 [DBG] Completely Open the ACOAT_01 SECS Port
2022-03-18 16:25:51.338 [DBG] HSMSPort::OnConnected Status=CONNECTING
2022-03-18 16:25:51.339 [DBG] UpdateStatus: Prev:UNKNOWN=>Now:CONNECTING=>New:CONNECT
2022-03-18 16:25:51.339 [DBG] UpdateStatus: Prev:CONNECTING=>Now:CONNECT
2022-03-18 16:25:51.340 [DBG] ACOAT_01#Timer Thread Status = True
2022-03-18 16:25:51.340 [DBG] Start ACOAT_01#Reader Thread.
2022-03-18 16:25:51.342 [DBG] ACOAT_01#Reader Thread Status = True
2022-03-18 16:25:51.343 [DBG] Start ACOAT_01#Writer Thread.
2022-03-18 16:25:51.345 [DBG] ACOAT_01#Writer Thread Status = True
2022-03-18 16:25:51.345 [DBG] Timer::StartTimer LinkTest
2022-03-18 16:25:51.346 [DBG] Timer::StartTimer T6
2022-03-18 16:25:51.348 [DBG] [WRITE] [SB:2130706432, SELECT_REQ] 00 00 00 0A FF FF 00 00 00 01 7F 00 00 00
2022-03-18 16:25:51.402 [DBG] Timer::StartTimer T8
2022-03-18 16:25:51.403 [DBG] Timer::StopTimer T8
2022-03-18 16:25:51.403 [DBG] Read Data: 10 -- FF FF 00 00 00 02 7F 00 00 00
2022-03-18 16:25:51.403 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 02 7F 00 00 00
2022-03-18 16:25:51.404 [DBG] HSMSPort::OnReadHsms control message.
2022-03-18 16:25:51.404 [DBG] Timer::StopTimer T6
2022-03-18 16:25:51.404 [DBG] UpdateStatus: Prev:CONNECTING=>Now:CONNECT=>New:SELECT
2022-03-18 16:25:51.404 [DBG] UpdateStatus: Prev:CONNECT=>Now:SELECT
2022-03-18 16:25:51.437 [DBG] Writer#Run Send Primary Message 1
2022-03-18 16:25:51.441 [DBG] Timer::StartT3Timer, SystemBytes=1
2022-03-18 16:25:51.441 [DBG] WriteSendMessage: StartT3Timer 1
2022-03-18 16:25:51.546 [DBG] Timer::StartTimer T8
2022-03-18 16:25:51.546 [DBG] Timer::StopTimer T8
2022-03-18 16:25:51.546 [DBG] Read Data: 33 -- 00 01 01 0E 00 00 00 00 00 01 01 02 21 01 00 01 02 41 06 20 20 20 20 20 20 41 06 20 20 20 20 20 20
2022-03-18 16:25:51.546 [DBG] Reader#ByteToBlock Header: 00 01 01 0E 00 00 00 00 00 01
2022-03-18 16:25:51.546 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 02 41 06 20 20 20 20 20 20 41 06 20 20 20 20 20 20
2022-03-18 16:25:51.546 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:25:51.569 [DBG] Timer::StopT3Timer, SystemBytes=1
2022-03-18 16:25:52.109 [DBG] Writer#Run Send Primary Message 2
2022-03-18 16:25:52.109 [DBG] Timer::StartT3Timer, SystemBytes=2
2022-03-18 16:25:52.109 [DBG] WriteSendMessage: StartT3Timer 2
2022-03-18 16:25:52.205 [DBG] Timer::StartTimer T8
2022-03-18 16:25:52.205 [DBG] Timer::StopTimer T8
2022-03-18 16:25:52.205 [DBG] Read Data: 13 -- 00 01 01 12 00 00 00 00 00 02 21 01 00
2022-03-18 16:25:52.205 [DBG] Reader#ByteToBlock Header: 00 01 01 12 00 00 00 00 00 02
2022-03-18 16:25:52.205 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:25:52.205 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:25:52.220 [DBG] Timer::StopT3Timer, SystemBytes=2
2022-03-18 16:25:52.755 [DBG] Writer#Run Send Primary Message 3
2022-03-18 16:25:52.755 [DBG] Timer::StartT3Timer, SystemBytes=3
2022-03-18 16:25:52.755 [DBG] WriteSendMessage: StartT3Timer 3
2022-03-18 16:25:52.865 [DBG] Timer::StartTimer T8
2022-03-18 16:25:52.865 [DBG] Timer::StopTimer T8
2022-03-18 16:25:52.865 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 03 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:25:52.865 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 03
2022-03-18 16:25:52.865 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:25:52.865 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:25:52.882 [DBG] Timer::StopT3Timer, SystemBytes=3
2022-03-18 16:25:53.415 [DBG] Writer#Run Send Primary Message 4
2022-03-18 16:25:53.415 [DBG] Timer::StartT3Timer, SystemBytes=4
2022-03-18 16:25:53.415 [DBG] WriteSendMessage: StartT3Timer 4
2022-03-18 16:25:53.521 [DBG] Timer::StartTimer T8
2022-03-18 16:25:53.521 [DBG] Timer::StopTimer T8
2022-03-18 16:25:53.521 [DBG] Read Data: 13 -- 00 01 06 18 00 00 00 00 00 04 21 01 01
2022-03-18 16:25:53.521 [DBG] Reader#ByteToBlock Header: 00 01 06 18 00 00 00 00 00 04
2022-03-18 16:25:53.521 [DBG] Reader#ByteToBlock Data: 21 01 01
2022-03-18 16:25:53.521 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:25:53.537 [DBG] Timer::StopT3Timer, SystemBytes=4
2022-03-18 16:25:54.070 [DBG] Writer#Run Send Primary Message 5
2022-03-18 16:25:54.070 [DBG] Timer::StartT3Timer, SystemBytes=5
2022-03-18 16:25:54.070 [DBG] WriteSendMessage: StartT3Timer 5
2022-03-18 16:25:54.181 [DBG] Timer::StartTimer T8
2022-03-18 16:25:54.181 [DBG] Timer::StopTimer T8
2022-03-18 16:25:54.181 [DBG] Read Data: 17 -- 00 01 02 2C 00 00 00 00 00 05 01 02 21 01 00 01 00
2022-03-18 16:25:54.181 [DBG] Reader#ByteToBlock Header: 00 01 02 2C 00 00 00 00 00 05
2022-03-18 16:25:54.181 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 00
2022-03-18 16:25:54.181 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:25:54.197 [DBG] Timer::StopT3Timer, SystemBytes=5
2022-03-18 16:25:54.724 [DBG] Writer#Run Send Primary Message 6
2022-03-18 16:25:54.724 [DBG] Timer::StartT3Timer, SystemBytes=6
2022-03-18 16:25:54.724 [DBG] WriteSendMessage: StartT3Timer 6
2022-03-18 16:25:54.836 [DBG] Timer::StartTimer T8
2022-03-18 16:25:54.836 [DBG] Timer::StopTimer T8
2022-03-18 16:25:54.836 [DBG] Read Data: 13 -- 00 01 02 26 00 00 00 00 00 06 21 01 00
2022-03-18 16:25:54.836 [DBG] Reader#ByteToBlock Header: 00 01 02 26 00 00 00 00 00 06
2022-03-18 16:25:54.836 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:25:54.836 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:25:54.852 [DBG] Timer::StopT3Timer, SystemBytes=6
2022-03-18 16:25:55.376 [DBG] Writer#Run Send Primary Message 7
2022-03-18 16:25:55.376 [DBG] Timer::StartT3Timer, SystemBytes=7
2022-03-18 16:25:55.376 [DBG] WriteSendMessage: StartT3Timer 7
2022-03-18 16:25:55.486 [DBG] Timer::StartTimer T8
2022-03-18 16:25:55.486 [DBG] Timer::StopTimer T8
2022-03-18 16:25:55.486 [DBG] Read Data: 13 -- 00 01 02 24 00 00 00 00 00 07 21 01 00
2022-03-18 16:25:55.486 [DBG] Reader#ByteToBlock Header: 00 01 02 24 00 00 00 00 00 07
2022-03-18 16:25:55.486 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:25:55.486 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:25:55.502 [DBG] Timer::StopT3Timer, SystemBytes=7
2022-03-18 16:25:56.040 [DBG] Writer#Run Send Primary Message 8
2022-03-18 16:25:56.040 [DBG] Timer::StartT3Timer, SystemBytes=8
2022-03-18 16:25:56.040 [DBG] WriteSendMessage: StartT3Timer 8
2022-03-18 16:25:56.152 [DBG] Timer::StartTimer T8
2022-03-18 16:25:56.152 [DBG] Timer::StopTimer T8
2022-03-18 16:25:56.152 [DBG] Read Data: 13 -- 00 01 02 22 00 00 00 00 00 08 21 01 00
2022-03-18 16:25:56.152 [DBG] Reader#ByteToBlock Header: 00 01 02 22 00 00 00 00 00 08
2022-03-18 16:25:56.152 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:25:56.152 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:25:56.168 [DBG] Timer::StopT3Timer, SystemBytes=8
2022-03-18 16:25:56.704 [DBG] Writer#Run Send Primary Message 9
2022-03-18 16:25:56.704 [DBG] Timer::StartT3Timer, SystemBytes=9
2022-03-18 16:25:56.704 [DBG] WriteSendMessage: StartT3Timer 9
2022-03-18 16:25:56.814 [DBG] Timer::StartTimer T8
2022-03-18 16:25:56.814 [DBG] Timer::StopTimer T8
2022-03-18 16:25:56.814 [DBG] Read Data: 13 -- 00 01 05 04 00 00 00 00 00 09 21 01 00
2022-03-18 16:25:56.814 [DBG] Reader#ByteToBlock Header: 00 01 05 04 00 00 00 00 00 09
2022-03-18 16:25:56.814 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:25:56.814 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:25:56.830 [DBG] Timer::StopT3Timer, SystemBytes=9
2022-03-18 16:25:57.363 [DBG] Writer#Run Send Primary Message 10
2022-03-18 16:25:57.363 [DBG] Timer::StartT3Timer, SystemBytes=10
2022-03-18 16:25:57.363 [DBG] WriteSendMessage: StartT3Timer 10
2022-03-18 16:25:57.471 [DBG] Timer::StartTimer T8
2022-03-18 16:25:57.471 [DBG] Timer::StopTimer T8
2022-03-18 16:25:57.471 [DBG] Read Data: 13 -- 00 01 02 22 00 00 00 00 00 0A 21 01 00
2022-03-18 16:25:57.471 [DBG] Reader#ByteToBlock Header: 00 01 02 22 00 00 00 00 00 0A
2022-03-18 16:25:57.471 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:25:57.471 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:25:57.486 [DBG] Timer::StopT3Timer, SystemBytes=10
2022-03-18 16:25:58.014 [DBG] Writer#Run Send Primary Message 11
2022-03-18 16:25:58.014 [DBG] Timer::StartT3Timer, SystemBytes=11
2022-03-18 16:25:58.014 [DBG] WriteSendMessage: StartT3Timer 11
2022-03-18 16:25:58.121 [DBG] Timer::StartTimer T8
2022-03-18 16:25:58.121 [DBG] Timer::StopTimer T8
2022-03-18 16:25:58.121 [DBG] Read Data: 13 -- 00 01 02 24 00 00 00 00 00 0B 21 01 00
2022-03-18 16:25:58.121 [DBG] Reader#ByteToBlock Header: 00 01 02 24 00 00 00 00 00 0B
2022-03-18 16:25:58.121 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:25:58.121 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:25:58.137 [DBG] Timer::StopT3Timer, SystemBytes=11
2022-03-18 16:25:58.671 [DBG] Writer#Run Send Primary Message 12
2022-03-18 16:25:58.671 [DBG] Timer::StartT3Timer, SystemBytes=12
2022-03-18 16:25:58.671 [DBG] WriteSendMessage: StartT3Timer 12
2022-03-18 16:25:58.783 [DBG] Timer::StartTimer T8
2022-03-18 16:25:58.783 [DBG] Timer::StopTimer T8
2022-03-18 16:25:58.783 [DBG] Read Data: 13 -- 00 01 02 26 00 00 00 00 00 0C 21 01 00
2022-03-18 16:25:58.783 [DBG] Reader#ByteToBlock Header: 00 01 02 26 00 00 00 00 00 0C
2022-03-18 16:25:58.783 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:25:58.783 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:25:58.799 [DBG] Timer::StopT3Timer, SystemBytes=12
2022-03-18 16:25:59.336 [DBG] Writer#Run Send Primary Message 13
2022-03-18 16:25:59.336 [DBG] Timer::StartT3Timer, SystemBytes=13
2022-03-18 16:25:59.336 [DBG] WriteSendMessage: StartT3Timer 13
2022-03-18 16:25:59.475 [DBG] Timer::StartTimer T8
2022-03-18 16:25:59.475 [DBG] Timer::StopTimer T8
2022-03-18 16:25:59.475 [DBG] Read Data: 13 -- 00 01 05 04 00 00 00 00 00 0D 21 01 00
2022-03-18 16:25:59.475 [DBG] Reader#ByteToBlock Header: 00 01 05 04 00 00 00 00 00 0D
2022-03-18 16:25:59.475 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:25:59.475 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:25:59.490 [DBG] Timer::StopT3Timer, SystemBytes=13
2022-03-18 16:26:00.033 [DBG] Writer#Run Send Primary Message 14
2022-03-18 16:26:00.033 [DBG] Timer::StartT3Timer, SystemBytes=14
2022-03-18 16:26:00.033 [DBG] WriteSendMessage: StartT3Timer 14
2022-03-18 16:26:00.142 [DBG] Timer::StartTimer T8
2022-03-18 16:26:00.142 [DBG] Timer::StopTimer T8
2022-03-18 16:26:00.142 [DBG] Read Data: 17 -- 00 01 02 2C 00 00 00 00 00 0E 01 02 21 01 00 01 00
2022-03-18 16:26:00.142 [DBG] Reader#ByteToBlock Header: 00 01 02 2C 00 00 00 00 00 0E
2022-03-18 16:26:00.142 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 00
2022-03-18 16:26:00.142 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:26:00.158 [DBG] Timer::StopT3Timer, SystemBytes=14
2022-03-18 16:26:00.689 [DBG] Writer#Run Send Primary Message 15
2022-03-18 16:26:00.689 [DBG] Timer::StartT3Timer, SystemBytes=15
2022-03-18 16:26:00.689 [DBG] WriteSendMessage: StartT3Timer 15
2022-03-18 16:26:00.799 [DBG] Timer::StartTimer T8
2022-03-18 16:26:00.799 [DBG] Timer::StopTimer T8
2022-03-18 16:26:00.799 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 0F 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:26:00.799 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 0F
2022-03-18 16:26:00.799 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:26:00.799 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:26:00.815 [DBG] Timer::StopT3Timer, SystemBytes=15
2022-03-18 16:26:01.345 [DBG] Writer#Run Send Primary Message 16
2022-03-18 16:26:01.345 [DBG] Timer::StartT3Timer, SystemBytes=16
2022-03-18 16:26:01.345 [DBG] WriteSendMessage: StartT3Timer 16
2022-03-18 16:26:01.455 [DBG] Timer::StartTimer T8
2022-03-18 16:26:01.455 [DBG] Timer::StopTimer T8
2022-03-18 16:26:01.455 [DBG] Read Data: 198 -- 00 01 05 06 00 00 00 00 00 10 01 02 01 03 21 01 01 B1 04 00 00 00 0A 41 50 74 65 73 74 31 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01 03 21 01 02 B1 04 00 00 00 0B 41 50 74 65 73 74 32 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
2022-03-18 16:26:01.455 [DBG] Reader#ByteToBlock Header: 00 01 05 06 00 00 00 00 00 10
2022-03-18 16:26:01.455 [DBG] Reader#ByteToBlock Data: 01 02 01 03 21 01 01 B1 04 00 00 00 0A 41 50 74 65 73 74 31 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01 03 21 01 02 B1 04 00 00 00 0B 41 50 74 65 73 74 32 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
2022-03-18 16:26:01.455 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:26:01.470 [DBG] Timer::StopT3Timer, SystemBytes=16
2022-03-18 16:26:02.005 [DBG] Writer#Run Send Primary Message 17
2022-03-18 16:26:02.005 [DBG] Timer::StartT3Timer, SystemBytes=17
2022-03-18 16:26:02.005 [DBG] WriteSendMessage: StartT3Timer 17
2022-03-18 16:26:02.116 [DBG] Timer::StartTimer T8
2022-03-18 16:26:02.116 [DBG] Timer::StopTimer T8
2022-03-18 16:26:02.116 [DBG] Read Data: 54 -- 00 01 07 14 00 00 00 00 00 11 01 06 41 05 74 65 73 74 31 41 05 74 65 73 74 32 41 05 74 65 73 74 33 41 05 74 65 73 74 34 41 05 74 65 73 74 35 41 05 74 65 73 74 36
2022-03-18 16:26:02.116 [DBG] Reader#ByteToBlock Header: 00 01 07 14 00 00 00 00 00 11
2022-03-18 16:26:02.116 [DBG] Reader#ByteToBlock Data: 01 06 41 05 74 65 73 74 31 41 05 74 65 73 74 32 41 05 74 65 73 74 33 41 05 74 65 73 74 34 41 05 74 65 73 74 35 41 05 74 65 73 74 36
2022-03-18 16:26:02.116 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:26:02.131 [DBG] Timer::StopT3Timer, SystemBytes=17
2022-03-18 16:26:02.662 [DBG] Writer#Run Send Primary Message 18
2022-03-18 16:26:02.662 [DBG] Timer::StartT3Timer, SystemBytes=18
2022-03-18 16:26:02.662 [DBG] WriteSendMessage: StartT3Timer 18
2022-03-18 16:26:02.771 [DBG] Timer::StartTimer T8
2022-03-18 16:26:02.771 [DBG] Timer::StopTimer T8
2022-03-18 16:26:02.771 [DBG] Read Data: 96 -- 00 01 02 0E 00 00 00 00 00 12 01 0E B1 04 00 00 00 01 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 00 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05
2022-03-18 16:26:02.771 [DBG] Reader#ByteToBlock Header: 00 01 02 0E 00 00 00 00 00 12
2022-03-18 16:26:02.771 [DBG] Reader#ByteToBlock Data: 01 0E B1 04 00 00 00 01 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 00 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05
2022-03-18 16:26:02.771 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:26:02.786 [DBG] Timer::StopT3Timer, SystemBytes=18
2022-03-18 16:26:03.320 [DBG] Writer#Run Send Primary Message 19
2022-03-18 16:26:03.320 [DBG] Timer::StartT3Timer, SystemBytes=19
2022-03-18 16:26:03.320 [DBG] WriteSendMessage: StartT3Timer 19
2022-03-18 16:26:03.431 [DBG] Timer::StartTimer T8
2022-03-18 16:26:03.431 [DBG] Timer::StopTimer T8
2022-03-18 16:26:03.431 [DBG] Read Data: 13 -- 00 01 02 10 00 00 00 00 00 13 21 01 00
2022-03-18 16:26:03.431 [DBG] Reader#ByteToBlock Header: 00 01 02 10 00 00 00 00 00 13
2022-03-18 16:26:03.431 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:26:03.431 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:26:03.446 [DBG] Timer::StopT3Timer, SystemBytes=19
2022-03-18 16:26:03.970 [DBG] Writer#Run Send Primary Message 20
2022-03-18 16:26:03.970 [DBG] Timer::StartT3Timer, SystemBytes=20
2022-03-18 16:26:03.970 [DBG] WriteSendMessage: StartT3Timer 20
2022-03-18 16:26:04.032 [DBG] Timer::StartTimer T8
2022-03-18 16:26:04.032 [DBG] Timer::StopTimer T8
2022-03-18 16:26:04.032 [DBG] Read Data: 13 -- 00 01 01 10 00 00 00 00 00 14 21 01 00
2022-03-18 16:26:04.032 [DBG] Reader#ByteToBlock Header: 00 01 01 10 00 00 00 00 00 14
2022-03-18 16:26:04.032 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:26:04.032 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:26:04.047 [DBG] Timer::StopT3Timer, SystemBytes=20
2022-03-18 16:26:04.577 [DBG] Writer#Run Send Primary Message 21
2022-03-18 16:26:04.577 [DBG] Timer::StartT3Timer, SystemBytes=21
2022-03-18 16:26:04.577 [DBG] WriteSendMessage: StartT3Timer 21
2022-03-18 16:26:04.686 [DBG] Timer::StartTimer T8
2022-03-18 16:26:04.686 [DBG] Timer::StopTimer T8
2022-03-18 16:26:04.686 [DBG] Read Data: 13 -- 00 01 01 12 00 00 00 00 00 15 21 01 00
2022-03-18 16:26:04.686 [DBG] Reader#ByteToBlock Header: 00 01 01 12 00 00 00 00 00 15
2022-03-18 16:26:04.686 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:26:04.686 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:26:04.702 [DBG] Timer::StopT3Timer, SystemBytes=21
2022-03-18 16:26:05.241 [DBG] Writer#Run Send Primary Message 22
2022-03-18 16:26:05.241 [DBG] Timer::StartT3Timer, SystemBytes=22
2022-03-18 16:26:05.241 [DBG] WriteSendMessage: StartT3Timer 22
2022-03-18 16:26:05.350 [DBG] Timer::StartTimer T8
2022-03-18 16:26:05.350 [DBG] Timer::StopTimer T8
2022-03-18 16:26:05.350 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 16 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:26:05.350 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 16
2022-03-18 16:26:05.350 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-18 16:26:05.350 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:26:05.366 [DBG] Timer::StopT3Timer, SystemBytes=22
2022-03-18 16:26:05.896 [DBG] Writer#Run Send Primary Message 23
2022-03-18 16:26:05.896 [DBG] Timer::StartT3Timer, SystemBytes=23
2022-03-18 16:26:05.896 [DBG] WriteSendMessage: StartT3Timer 23
2022-03-18 16:26:05.991 [DBG] Timer::StartTimer T8
2022-03-18 16:26:05.991 [DBG] Timer::StopTimer T8
2022-03-18 16:26:05.991 [DBG] Read Data: 13 -- 00 01 02 18 00 00 00 00 00 17 21 01 00
2022-03-18 16:26:05.991 [DBG] Reader#ByteToBlock Header: 00 01 02 18 00 00 00 00 00 17
2022-03-18 16:26:05.991 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-18 16:26:05.991 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-18 16:26:06.007 [DBG] Timer::StopT3Timer, SystemBytes=23
2022-03-18 16:27:05.992 [DBG] Timer::StartTimer T8
2022-03-18 16:27:05.992 [DBG] Timer::StopTimer T8
2022-03-18 16:27:05.992 [DBG] Read Data: 10 -- FF FF 00 00 00 05 3D 2F D8 E7
2022-03-18 16:27:05.992 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 3D 2F D8 E7
2022-03-18 16:27:05.992 [DBG] HSMSPort::OnReadHsms control message.
2022-03-18 16:27:05.992 [DBG] [WRITE] [SB:1026545895, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 3D 2F D8 E7
2022-03-18 16:27:52.351 [DBG] HSMSTimer::CheckOtherTimeout: 121.0075326, LinkTest
2022-03-18 16:27:52.352 [DBG] Timer::StartTimer T6
2022-03-18 16:27:52.352 [DBG] [WRITE] [SB:2130706433, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 01
2022-03-18 16:27:52.352 [DBG] Timer::StartTimer LinkTest
2022-03-18 16:27:52.368 [DBG] Timer::StartTimer T8
2022-03-18 16:27:52.368 [DBG] Timer::StopTimer T8
2022-03-18 16:27:52.368 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 01
2022-03-18 16:27:52.368 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 01
2022-03-18 16:27:52.368 [DBG] HSMSPort::OnReadHsms control message.
2022-03-18 16:27:52.368 [DBG] Timer::StopTimer T6
2022-03-18 16:33:06.103 [DBG] Start S9FxMonitor Thread.
2022-03-18 16:33:06.108 [DBG] S9FxMonitor Thread Status = True
2022-03-18 16:33:06.108 [DBG] HSMSPort::Initialize execute.
2022-03-18 16:33:06.109 [DBG] Start - Connector Thread.
2022-03-18 16:33:06.112 [DBG] - Connector Thread Status = True
2022-03-18 16:33:06.112 [DBG] Start ACOAT_01#Parser Thread.
2022-03-18 16:33:06.114 [DBG] ACOAT_01#Parser Thread Status = True
2022-03-18 16:33:06.119 [DBG] Start ACOAT_01#Timer Thread.
2022-03-18 16:33:06.120 [DBG] Completely Open the ACOAT_01 SECS Port
2022-03-18 16:33:06.121 [DBG] ACOAT_01#Timer Thread Status = True
2022-03-18 16:39:19.332 [DBG] Start S9FxMonitor Thread.
2022-03-18 16:39:19.338 [DBG] S9FxMonitor Thread Status = True
2022-03-18 16:39:19.338 [DBG] HSMSPort::Initialize execute.
2022-03-18 16:39:19.339 [DBG] Start - Connector Thread.
2022-03-18 16:39:19.341 [DBG] - Connector Thread Status = True
2022-03-18 16:39:19.342 [DBG] Start ACOAT_01#Parser Thread.
2022-03-18 16:39:19.344 [DBG] ACOAT_01#Parser Thread Status = True
2022-03-18 16:39:19.348 [DBG] Start ACOAT_01#Timer Thread.
2022-03-18 16:39:19.348 [DBG] Completely Open the ACOAT_01 SECS Port
2022-03-18 16:39:19.349 [DBG] ACOAT_01#Timer Thread Status = True

View File

@@ -0,0 +1,135 @@
2022-03-23 09:45:09.568 [DBG] Start S9FxMonitor Thread.
2022-03-23 09:45:09.573 [DBG] S9FxMonitor Thread Status = True
2022-03-23 09:45:09.573 [DBG] HSMSPort::Initialize execute.
2022-03-23 09:45:09.575 [DBG] Start - Connector Thread.
2022-03-23 09:45:09.577 [DBG] - Connector Thread Status = True
2022-03-23 09:45:09.578 [DBG] Start ACOAT_01#Parser Thread.
2022-03-23 09:45:09.579 [DBG] ACOAT_01#Parser Thread Status = True
2022-03-23 09:45:09.583 [DBG] Start ACOAT_01#Timer Thread.
2022-03-23 09:45:09.584 [DBG] Completely Open the ACOAT_01 SECS Port
2022-03-23 09:45:09.585 [DBG] ACOAT_01#Timer Thread Status = True
2022-03-23 09:45:21.616 [DBG] HSMSPort::OnConnected Status=CONNECTING
2022-03-23 09:45:21.616 [DBG] UpdateStatus: Prev:UNKNOWN=>Now:CONNECTING=>New:CONNECT
2022-03-23 09:45:21.616 [DBG] UpdateStatus: Prev:CONNECTING=>Now:CONNECT
2022-03-23 09:45:21.617 [DBG] Start ACOAT_01#Reader Thread.
2022-03-23 09:45:21.619 [DBG] ACOAT_01#Reader Thread Status = True
2022-03-23 09:45:21.619 [DBG] Start ACOAT_01#Writer Thread.
2022-03-23 09:45:21.621 [DBG] ACOAT_01#Writer Thread Status = True
2022-03-23 09:45:21.621 [DBG] Timer::StartTimer LinkTest
2022-03-23 09:45:21.622 [DBG] Timer::StartTimer T6
2022-03-23 09:45:21.625 [DBG] [WRITE] [SB:2130706432, SELECT_REQ] 00 00 00 0A FF FF 00 00 00 01 7F 00 00 00
2022-03-23 09:45:22.094 [DBG] Timer::StartTimer T8
2022-03-23 09:45:22.095 [DBG] Timer::StopTimer T8
2022-03-23 09:45:22.095 [DBG] Read Data: 10 -- FF FF 00 00 00 02 7F 00 00 00
2022-03-23 09:45:22.096 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 02 7F 00 00 00
2022-03-23 09:45:22.096 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 09:45:22.096 [DBG] Timer::StopTimer T6
2022-03-23 09:45:22.097 [DBG] UpdateStatus: Prev:CONNECTING=>Now:CONNECT=>New:SELECT
2022-03-23 09:45:22.097 [DBG] UpdateStatus: Prev:CONNECT=>Now:SELECT
2022-03-23 09:45:22.131 [DBG] Writer#Run Send Primary Message 1
2022-03-23 09:45:22.136 [DBG] Timer::StartT3Timer, SystemBytes=1
2022-03-23 09:45:22.136 [DBG] WriteSendMessage: StartT3Timer 1
2022-03-23 09:45:22.441 [DBG] Timer::StartTimer T8
2022-03-23 09:45:22.441 [DBG] Timer::StopTimer T8
2022-03-23 09:45:22.441 [DBG] Read Data: 33 -- 00 01 01 0E 00 00 00 00 00 01 01 02 21 01 00 01 02 41 06 20 20 20 20 20 20 41 06 20 20 20 20 20 20
2022-03-23 09:45:22.441 [DBG] Reader#ByteToBlock Header: 00 01 01 0E 00 00 00 00 00 01
2022-03-23 09:45:22.441 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 02 41 06 20 20 20 20 20 20 41 06 20 20 20 20 20 20
2022-03-23 09:45:22.441 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 09:45:22.465 [DBG] Timer::StopT3Timer, SystemBytes=1
2022-03-23 09:45:23.007 [DBG] Writer#Run Send Primary Message 2
2022-03-23 09:45:23.007 [DBG] Timer::StartT3Timer, SystemBytes=2
2022-03-23 09:45:23.007 [DBG] WriteSendMessage: StartT3Timer 2
2022-03-23 09:45:23.084 [DBG] Timer::StartTimer T8
2022-03-23 09:45:23.084 [DBG] Timer::StopTimer T8
2022-03-23 09:45:23.084 [DBG] Read Data: 13 -- 00 01 01 12 00 00 00 00 00 02 21 01 00
2022-03-23 09:45:23.084 [DBG] Reader#ByteToBlock Header: 00 01 01 12 00 00 00 00 00 02
2022-03-23 09:45:23.084 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-23 09:45:23.084 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 09:45:23.100 [DBG] Timer::StopT3Timer, SystemBytes=2
2022-03-23 09:45:23.624 [DBG] Writer#Run Send Primary Message 3
2022-03-23 09:45:23.624 [DBG] Timer::StartT3Timer, SystemBytes=3
2022-03-23 09:45:23.624 [DBG] WriteSendMessage: StartT3Timer 3
2022-03-23 09:46:09.060 [DBG] HSMSTimer::CheckT3Timeout: 45.4355547, 3
2022-03-23 09:46:09.060 [DBG] Timer#Run: Timeout Message System Bytes=3
2022-03-23 09:46:23.664 [DBG] Timer::StartTimer T8
2022-03-23 09:46:23.664 [DBG] Timer::StopTimer T8
2022-03-23 09:46:23.664 [DBG] Read Data: 10 -- FF FF 00 00 00 05 60 02 59 9A
2022-03-23 09:46:23.664 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 60 02 59 9A
2022-03-23 09:46:23.664 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 09:46:23.664 [DBG] [WRITE] [SB:1610766746, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 60 02 59 9A
2022-03-23 09:47:21.652 [DBG] HSMSTimer::CheckOtherTimeout: 120.031164, LinkTest
2022-03-23 09:47:21.652 [DBG] Timer::StartTimer T6
2022-03-23 09:47:21.652 [DBG] [WRITE] [SB:2130706433, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 01
2022-03-23 09:47:21.652 [DBG] Timer::StartTimer LinkTest
2022-03-23 09:47:21.671 [DBG] Timer::StartTimer T8
2022-03-23 09:47:21.671 [DBG] Timer::StopTimer T8
2022-03-23 09:47:21.671 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 01
2022-03-23 09:47:21.671 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 01
2022-03-23 09:47:21.671 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 09:47:21.671 [DBG] Timer::StopTimer T6
2022-03-23 09:48:21.675 [DBG] Timer::StartTimer T8
2022-03-23 09:48:21.675 [DBG] Timer::StopTimer T8
2022-03-23 09:48:21.675 [DBG] Read Data: 10 -- FF FF 00 00 00 05 60 02 59 9B
2022-03-23 09:48:21.675 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 60 02 59 9B
2022-03-23 09:48:21.675 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 09:48:21.675 [DBG] [WRITE] [SB:1610766747, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 60 02 59 9B
2022-03-23 09:49:21.680 [DBG] Timer::StartTimer T8
2022-03-23 09:49:21.680 [DBG] Timer::StopTimer T8
2022-03-23 09:49:21.680 [DBG] Read Data: 10 -- FF FF 00 00 00 05 60 02 59 9C
2022-03-23 09:49:21.680 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 60 02 59 9C
2022-03-23 09:49:21.680 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 09:49:21.680 [DBG] [WRITE] [SB:1610766748, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 60 02 59 9C
2022-03-23 09:49:21.726 [DBG] HSMSTimer::CheckOtherTimeout: 120.0740481, LinkTest
2022-03-23 09:49:21.726 [DBG] Timer::StartTimer T6
2022-03-23 09:49:21.726 [DBG] [WRITE] [SB:2130706434, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 02
2022-03-23 09:49:21.726 [DBG] Timer::StartTimer LinkTest
2022-03-23 09:49:21.742 [DBG] Timer::StartTimer T8
2022-03-23 09:49:21.742 [DBG] Timer::StopTimer T8
2022-03-23 09:49:21.742 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 02
2022-03-23 09:49:21.742 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 02
2022-03-23 09:49:21.742 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 09:49:21.742 [DBG] Timer::StopTimer T6
2022-03-23 09:50:21.754 [DBG] Timer::StartTimer T8
2022-03-23 09:50:21.754 [DBG] Timer::StopTimer T8
2022-03-23 09:50:21.754 [DBG] Read Data: 10 -- FF FF 00 00 00 05 60 02 59 9D
2022-03-23 09:50:21.754 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 60 02 59 9D
2022-03-23 09:50:21.754 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 09:50:21.754 [DBG] [WRITE] [SB:1610766749, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 60 02 59 9D
2022-03-23 09:51:21.758 [DBG] Timer::StartTimer T8
2022-03-23 09:51:21.758 [DBG] Timer::StopTimer T8
2022-03-23 09:51:21.758 [DBG] Read Data: 10 -- FF FF 00 00 00 05 60 02 59 9E
2022-03-23 09:51:21.758 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 60 02 59 9E
2022-03-23 09:51:21.758 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 09:51:21.758 [DBG] [WRITE] [SB:1610766750, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 60 02 59 9E
2022-03-23 09:51:22.679 [DBG] HSMSTimer::CheckOtherTimeout: 120.9536975, LinkTest
2022-03-23 09:51:22.679 [DBG] Timer::StartTimer T6
2022-03-23 09:51:22.679 [DBG] [WRITE] [SB:2130706435, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 03
2022-03-23 09:51:22.679 [DBG] Timer::StartTimer LinkTest
2022-03-23 09:51:22.696 [DBG] Timer::StartTimer T8
2022-03-23 09:51:22.696 [DBG] Timer::StopTimer T8
2022-03-23 09:51:22.696 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 03
2022-03-23 09:51:22.696 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 03
2022-03-23 09:51:22.696 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 09:51:22.696 [DBG] Timer::StopTimer T6
2022-03-23 09:52:00.441 [DBG] Start to Close the ACOAT_01 SECS Port
2022-03-23 09:52:00.441 [DBG] UpdateStatus: Prev:CONNECT=>Now:SELECT=>New:TERMINATE
2022-03-23 09:52:00.442 [DBG] UpdateStatus: Prev:SELECT=>Now:TERMINATE
2022-03-23 09:52:00.442 [DBG] Terminate ACOAT_01#Reader Thread.
2022-03-23 09:52:00.442 [DBG] [WRITE] [SB:2130706436, SEPARATE] 00 00 00 0A FF FF 00 00 00 09 7F 00 00 04
2022-03-23 09:52:00.509 [DBG] Terminate ACOAT_01#Parser Thread.
2022-03-23 09:52:00.509 [DBG] Terminate - Connector Thread.
2022-03-23 09:52:00.510 [DBG] Terminate ACOAT_01#Writer Thread.
2022-03-23 09:52:00.525 [DBG] ACOAT_01#Writer Thread Status = False
2022-03-23 09:52:00.525 [DBG] ACOAT_01#Parser Thread Status = False
2022-03-23 09:52:00.601 [DBG] Terminate ACOAT_01#Timer Thread.
2022-03-23 09:52:00.601 [DBG] Timer::StopTimer LinkTest
2022-03-23 09:52:00.601 [DBG] Timer::StopTimer T6
2022-03-23 09:52:00.601 [DBG] HSMSPort::TerminateSocket execute.
2022-03-23 09:52:00.609 [DBG] Terminate ACOAT_01#Reader Thread.
2022-03-23 09:52:00.609 [DBG] Reader#FireDisconnect Invoked.
2022-03-23 09:52:00.609 [DBG] ACOAT_01#Reader Thread Status = False
2022-03-23 09:52:00.709 [DBG] Terminate S9FxMonitor Thread.
2022-03-23 09:52:00.709 [DBG] Completely Close the ACOAT_01 SECS Port
2022-03-23 09:52:00.800 [DBG] S9FxMonitor Thread Status = False
2022-03-23 09:52:00.984 [DBG] ACOAT_01#Timer Thread Status = False
2022-03-23 09:52:01.917 [DBG] - Connector Thread Status = False

View File

@@ -0,0 +1,643 @@
2022-03-23 09:52:01.585 [DBG] Start S9FxMonitor Thread.
2022-03-23 09:52:01.609 [DBG] HSMSPort::Initialize execute.
2022-03-23 09:52:01.609 [DBG] Start - Connector Thread.
2022-03-23 09:52:01.612 [DBG] S9FxMonitor Thread Status = True
2022-03-23 09:52:01.613 [DBG] Start ACOAT_01#Parser Thread.
2022-03-23 09:52:01.614 [DBG] - Connector Thread Status = True
2022-03-23 09:52:01.615 [DBG] Start ACOAT_01#Timer Thread.
2022-03-23 09:52:01.617 [DBG] ACOAT_01#Parser Thread Status = True
2022-03-23 09:52:01.618 [DBG] Completely Open the ACOAT_01 SECS Port
2022-03-23 09:52:01.618 [DBG] HSMSPort::OnConnected Status=CONNECTING
2022-03-23 09:52:01.619 [DBG] UpdateStatus: Prev:UNKNOWN=>Now:CONNECTING=>New:CONNECT
2022-03-23 09:52:01.619 [DBG] UpdateStatus: Prev:CONNECTING=>Now:CONNECT
2022-03-23 09:52:01.620 [DBG] ACOAT_01#Timer Thread Status = True
2022-03-23 09:52:01.621 [DBG] Start ACOAT_01#Reader Thread.
2022-03-23 09:52:01.622 [DBG] Start ACOAT_01#Writer Thread.
2022-03-23 09:52:01.622 [DBG] Timer::StartTimer LinkTest
2022-03-23 09:52:01.623 [DBG] Timer::StartTimer T6
2022-03-23 09:52:01.623 [DBG] [WRITE] [SB:2130706432, SELECT_REQ] 00 00 00 0A FF FF 00 00 00 01 7F 00 00 00
2022-03-23 09:52:01.624 [DBG] ACOAT_01#Reader Thread Status = True
2022-03-23 09:52:01.627 [DBG] ACOAT_01#Writer Thread Status = True
2022-03-23 09:52:01.682 [DBG] Timer::StartTimer T8
2022-03-23 09:52:01.682 [DBG] Timer::StopTimer T8
2022-03-23 09:52:01.683 [DBG] Read Data: 10 -- FF FF 00 00 00 02 7F 00 00 00
2022-03-23 09:52:01.683 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 02 7F 00 00 00
2022-03-23 09:52:01.683 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 09:52:01.683 [DBG] Timer::StopTimer T6
2022-03-23 09:52:01.683 [DBG] UpdateStatus: Prev:CONNECTING=>Now:CONNECT=>New:SELECT
2022-03-23 09:52:01.683 [DBG] UpdateStatus: Prev:CONNECT=>Now:SELECT
2022-03-23 09:52:01.702 [DBG] Writer#Run Send Primary Message 1
2022-03-23 09:52:01.702 [DBG] Timer::StartT3Timer, SystemBytes=1
2022-03-23 09:52:01.702 [DBG] WriteSendMessage: StartT3Timer 1
2022-03-23 09:52:01.748 [DBG] Timer::StartTimer T8
2022-03-23 09:52:01.748 [DBG] Timer::StopTimer T8
2022-03-23 09:52:01.748 [DBG] Read Data: 33 -- 00 01 01 0E 00 00 00 00 00 01 01 02 21 01 00 01 02 41 06 20 20 20 20 20 20 41 06 20 20 20 20 20 20
2022-03-23 09:52:01.748 [DBG] Reader#ByteToBlock Header: 00 01 01 0E 00 00 00 00 00 01
2022-03-23 09:52:01.748 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 02 41 06 20 20 20 20 20 20 41 06 20 20 20 20 20 20
2022-03-23 09:52:01.748 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 09:52:01.763 [DBG] Timer::StopT3Timer, SystemBytes=1
2022-03-23 09:52:02.289 [DBG] Writer#Run Send Primary Message 2
2022-03-23 09:52:02.289 [DBG] Timer::StartT3Timer, SystemBytes=2
2022-03-23 09:52:02.289 [DBG] WriteSendMessage: StartT3Timer 2
2022-03-23 09:52:02.379 [DBG] Timer::StartTimer T8
2022-03-23 09:52:02.379 [DBG] Timer::StopTimer T8
2022-03-23 09:52:02.379 [DBG] Read Data: 13 -- 00 01 01 12 00 00 00 00 00 02 21 01 00
2022-03-23 09:52:02.379 [DBG] Reader#ByteToBlock Header: 00 01 01 12 00 00 00 00 00 02
2022-03-23 09:52:02.379 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-23 09:52:02.379 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 09:52:02.394 [DBG] Timer::StopT3Timer, SystemBytes=2
2022-03-23 09:52:02.930 [DBG] Writer#Run Send Primary Message 3
2022-03-23 09:52:02.930 [DBG] Timer::StartT3Timer, SystemBytes=3
2022-03-23 09:52:02.930 [DBG] WriteSendMessage: StartT3Timer 3
2022-03-23 09:52:03.022 [DBG] Timer::StartTimer T8
2022-03-23 09:52:03.022 [DBG] Timer::StopTimer T8
2022-03-23 09:52:03.022 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 03 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-23 09:52:03.022 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 03
2022-03-23 09:52:03.022 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-23 09:52:03.022 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 09:52:03.038 [DBG] Timer::StopT3Timer, SystemBytes=3
2022-03-23 09:52:03.570 [DBG] Writer#Run Send Primary Message 4
2022-03-23 09:52:03.570 [DBG] Timer::StartT3Timer, SystemBytes=4
2022-03-23 09:52:03.570 [DBG] WriteSendMessage: StartT3Timer 4
2022-03-23 09:52:03.664 [DBG] Timer::StartTimer T8
2022-03-23 09:52:03.664 [DBG] Timer::StopTimer T8
2022-03-23 09:52:03.664 [DBG] Read Data: 13 -- 00 01 06 18 00 00 00 00 00 04 21 01 01
2022-03-23 09:52:03.664 [DBG] Reader#ByteToBlock Header: 00 01 06 18 00 00 00 00 00 04
2022-03-23 09:52:03.664 [DBG] Reader#ByteToBlock Data: 21 01 01
2022-03-23 09:52:03.664 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 09:52:03.679 [DBG] Timer::StopT3Timer, SystemBytes=4
2022-03-23 09:52:04.207 [DBG] Writer#Run Send Primary Message 5
2022-03-23 09:52:04.207 [DBG] Timer::StartT3Timer, SystemBytes=5
2022-03-23 09:52:04.207 [DBG] WriteSendMessage: StartT3Timer 5
2022-03-23 09:52:04.313 [DBG] Timer::StartTimer T8
2022-03-23 09:52:04.313 [DBG] Timer::StopTimer T8
2022-03-23 09:52:04.313 [DBG] Read Data: 17 -- 00 01 02 2C 00 00 00 00 00 05 01 02 21 01 00 01 00
2022-03-23 09:52:04.313 [DBG] Reader#ByteToBlock Header: 00 01 02 2C 00 00 00 00 00 05
2022-03-23 09:52:04.313 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 00
2022-03-23 09:52:04.313 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 09:52:04.329 [DBG] Timer::StopT3Timer, SystemBytes=5
2022-03-23 09:52:04.864 [DBG] Writer#Run Send Primary Message 6
2022-03-23 09:52:04.864 [DBG] Timer::StartT3Timer, SystemBytes=6
2022-03-23 09:52:04.864 [DBG] WriteSendMessage: StartT3Timer 6
2022-03-23 09:52:04.971 [DBG] Timer::StartTimer T8
2022-03-23 09:52:04.971 [DBG] Timer::StopTimer T8
2022-03-23 09:52:04.971 [DBG] Read Data: 13 -- 00 01 02 26 00 00 00 00 00 06 21 01 00
2022-03-23 09:52:04.971 [DBG] Reader#ByteToBlock Header: 00 01 02 26 00 00 00 00 00 06
2022-03-23 09:52:04.971 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-23 09:52:04.971 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 09:52:04.986 [DBG] Timer::StopT3Timer, SystemBytes=6
2022-03-23 09:52:05.526 [DBG] Writer#Run Send Primary Message 7
2022-03-23 09:52:05.526 [DBG] Timer::StartT3Timer, SystemBytes=7
2022-03-23 09:52:05.526 [DBG] WriteSendMessage: StartT3Timer 7
2022-03-23 09:52:05.620 [DBG] Timer::StartTimer T8
2022-03-23 09:52:05.620 [DBG] Timer::StopTimer T8
2022-03-23 09:52:05.620 [DBG] Read Data: 13 -- 00 01 02 24 00 00 00 00 00 07 21 01 00
2022-03-23 09:52:05.620 [DBG] Reader#ByteToBlock Header: 00 01 02 24 00 00 00 00 00 07
2022-03-23 09:52:05.620 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-23 09:52:05.620 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 09:52:05.636 [DBG] Timer::StopT3Timer, SystemBytes=7
2022-03-23 09:52:06.166 [DBG] Writer#Run Send Primary Message 8
2022-03-23 09:52:06.166 [DBG] Timer::StartT3Timer, SystemBytes=8
2022-03-23 09:52:06.166 [DBG] WriteSendMessage: StartT3Timer 8
2022-03-23 09:52:06.272 [DBG] Timer::StartTimer T8
2022-03-23 09:52:06.272 [DBG] Timer::StopTimer T8
2022-03-23 09:52:06.272 [DBG] Read Data: 13 -- 00 01 02 22 00 00 00 00 00 08 21 01 00
2022-03-23 09:52:06.272 [DBG] Reader#ByteToBlock Header: 00 01 02 22 00 00 00 00 00 08
2022-03-23 09:52:06.272 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-23 09:52:06.272 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 09:52:06.287 [DBG] Timer::StopT3Timer, SystemBytes=8
2022-03-23 09:52:06.815 [DBG] Writer#Run Send Primary Message 9
2022-03-23 09:52:06.815 [DBG] Timer::StartT3Timer, SystemBytes=9
2022-03-23 09:52:06.815 [DBG] WriteSendMessage: StartT3Timer 9
2022-03-23 09:52:06.924 [DBG] Timer::StartTimer T8
2022-03-23 09:52:06.924 [DBG] Timer::StopTimer T8
2022-03-23 09:52:06.924 [DBG] Read Data: 13 -- 00 01 05 04 00 00 00 00 00 09 21 01 00
2022-03-23 09:52:06.924 [DBG] Reader#ByteToBlock Header: 00 01 05 04 00 00 00 00 00 09
2022-03-23 09:52:06.924 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-23 09:52:06.924 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 09:52:06.939 [DBG] Timer::StopT3Timer, SystemBytes=9
2022-03-23 09:52:07.471 [DBG] Writer#Run Send Primary Message 10
2022-03-23 09:52:07.471 [DBG] Timer::StartT3Timer, SystemBytes=10
2022-03-23 09:52:07.471 [DBG] WriteSendMessage: StartT3Timer 10
2022-03-23 09:52:07.598 [DBG] Timer::StartTimer T8
2022-03-23 09:52:07.598 [DBG] Timer::StopTimer T8
2022-03-23 09:52:07.598 [DBG] Read Data: 13 -- 00 01 02 22 00 00 00 00 00 0A 21 01 00
2022-03-23 09:52:07.598 [DBG] Reader#ByteToBlock Header: 00 01 02 22 00 00 00 00 00 0A
2022-03-23 09:52:07.598 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-23 09:52:07.598 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 09:52:07.613 [DBG] Timer::StopT3Timer, SystemBytes=10
2022-03-23 09:52:08.137 [DBG] Writer#Run Send Primary Message 11
2022-03-23 09:52:08.137 [DBG] Timer::StartT3Timer, SystemBytes=11
2022-03-23 09:52:08.137 [DBG] WriteSendMessage: StartT3Timer 11
2022-03-23 09:52:08.244 [DBG] Timer::StartTimer T8
2022-03-23 09:52:08.244 [DBG] Timer::StopTimer T8
2022-03-23 09:52:08.244 [DBG] Read Data: 13 -- 00 01 02 24 00 00 00 00 00 0B 21 01 00
2022-03-23 09:52:08.244 [DBG] Reader#ByteToBlock Header: 00 01 02 24 00 00 00 00 00 0B
2022-03-23 09:52:08.244 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-23 09:52:08.244 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 09:52:08.259 [DBG] Timer::StopT3Timer, SystemBytes=11
2022-03-23 09:52:08.793 [DBG] Writer#Run Send Primary Message 12
2022-03-23 09:52:08.793 [DBG] Timer::StartT3Timer, SystemBytes=12
2022-03-23 09:52:08.793 [DBG] WriteSendMessage: StartT3Timer 12
2022-03-23 09:52:08.905 [DBG] Timer::StartTimer T8
2022-03-23 09:52:08.905 [DBG] Timer::StopTimer T8
2022-03-23 09:52:08.905 [DBG] Read Data: 13 -- 00 01 02 26 00 00 00 00 00 0C 21 01 00
2022-03-23 09:52:08.905 [DBG] Reader#ByteToBlock Header: 00 01 02 26 00 00 00 00 00 0C
2022-03-23 09:52:08.905 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-23 09:52:08.905 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 09:52:08.926 [DBG] Timer::StopT3Timer, SystemBytes=12
2022-03-23 09:52:09.463 [DBG] Writer#Run Send Primary Message 13
2022-03-23 09:52:09.463 [DBG] Timer::StartT3Timer, SystemBytes=13
2022-03-23 09:52:09.463 [DBG] WriteSendMessage: StartT3Timer 13
2022-03-23 09:52:09.573 [DBG] Timer::StartTimer T8
2022-03-23 09:52:09.573 [DBG] Timer::StopTimer T8
2022-03-23 09:52:09.573 [DBG] Read Data: 13 -- 00 01 05 04 00 00 00 00 00 0D 21 01 00
2022-03-23 09:52:09.573 [DBG] Reader#ByteToBlock Header: 00 01 05 04 00 00 00 00 00 0D
2022-03-23 09:52:09.573 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-23 09:52:09.573 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 09:52:09.589 [DBG] Timer::StopT3Timer, SystemBytes=13
2022-03-23 09:52:10.115 [DBG] Writer#Run Send Primary Message 14
2022-03-23 09:52:10.115 [DBG] Timer::StartT3Timer, SystemBytes=14
2022-03-23 09:52:10.115 [DBG] WriteSendMessage: StartT3Timer 14
2022-03-23 09:52:10.222 [DBG] Timer::StartTimer T8
2022-03-23 09:52:10.222 [DBG] Timer::StopTimer T8
2022-03-23 09:52:10.222 [DBG] Read Data: 17 -- 00 01 02 2C 00 00 00 00 00 0E 01 02 21 01 00 01 00
2022-03-23 09:52:10.222 [DBG] Reader#ByteToBlock Header: 00 01 02 2C 00 00 00 00 00 0E
2022-03-23 09:52:10.222 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 00
2022-03-23 09:52:10.222 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 09:52:10.237 [DBG] Timer::StopT3Timer, SystemBytes=14
2022-03-23 09:52:10.772 [DBG] Writer#Run Send Primary Message 15
2022-03-23 09:52:10.772 [DBG] Timer::StartT3Timer, SystemBytes=15
2022-03-23 09:52:10.772 [DBG] WriteSendMessage: StartT3Timer 15
2022-03-23 09:52:10.864 [DBG] Timer::StartTimer T8
2022-03-23 09:52:10.864 [DBG] Timer::StopTimer T8
2022-03-23 09:52:10.864 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 0F 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-23 09:52:10.864 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 0F
2022-03-23 09:52:10.864 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-23 09:52:10.864 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 09:52:10.879 [DBG] Timer::StopT3Timer, SystemBytes=15
2022-03-23 09:52:11.414 [DBG] Writer#Run Send Primary Message 16
2022-03-23 09:52:11.414 [DBG] Timer::StartT3Timer, SystemBytes=16
2022-03-23 09:52:11.414 [DBG] WriteSendMessage: StartT3Timer 16
2022-03-23 09:52:11.508 [DBG] Timer::StartTimer T8
2022-03-23 09:52:11.508 [DBG] Timer::StopTimer T8
2022-03-23 09:52:11.508 [DBG] Read Data: 198 -- 00 01 05 06 00 00 00 00 00 10 01 02 01 03 21 01 01 B1 04 00 00 00 0A 41 50 74 65 73 74 31 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01 03 21 01 02 B1 04 00 00 00 0B 41 50 74 65 73 74 32 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
2022-03-23 09:52:11.508 [DBG] Reader#ByteToBlock Header: 00 01 05 06 00 00 00 00 00 10
2022-03-23 09:52:11.508 [DBG] Reader#ByteToBlock Data: 01 02 01 03 21 01 01 B1 04 00 00 00 0A 41 50 74 65 73 74 31 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01 03 21 01 02 B1 04 00 00 00 0B 41 50 74 65 73 74 32 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
2022-03-23 09:52:11.508 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 09:52:11.524 [DBG] Timer::StopT3Timer, SystemBytes=16
2022-03-23 09:52:12.058 [DBG] Writer#Run Send Primary Message 17
2022-03-23 09:52:12.058 [DBG] Timer::StartT3Timer, SystemBytes=17
2022-03-23 09:52:12.058 [DBG] WriteSendMessage: StartT3Timer 17
2022-03-23 09:52:12.170 [DBG] Timer::StartTimer T8
2022-03-23 09:52:12.170 [DBG] Timer::StopTimer T8
2022-03-23 09:52:12.170 [DBG] Read Data: 54 -- 00 01 07 14 00 00 00 00 00 11 01 06 41 05 74 65 73 74 31 41 05 74 65 73 74 32 41 05 74 65 73 74 33 41 05 74 65 73 74 34 41 05 74 65 73 74 35 41 05 74 65 73 74 36
2022-03-23 09:52:12.170 [DBG] Reader#ByteToBlock Header: 00 01 07 14 00 00 00 00 00 11
2022-03-23 09:52:12.170 [DBG] Reader#ByteToBlock Data: 01 06 41 05 74 65 73 74 31 41 05 74 65 73 74 32 41 05 74 65 73 74 33 41 05 74 65 73 74 34 41 05 74 65 73 74 35 41 05 74 65 73 74 36
2022-03-23 09:52:12.170 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 09:52:12.186 [DBG] Timer::StopT3Timer, SystemBytes=17
2022-03-23 09:52:12.721 [DBG] Writer#Run Send Primary Message 18
2022-03-23 09:52:12.721 [DBG] Timer::StartT3Timer, SystemBytes=18
2022-03-23 09:52:12.721 [DBG] WriteSendMessage: StartT3Timer 18
2022-03-23 09:52:12.832 [DBG] Timer::StartTimer T8
2022-03-23 09:52:12.832 [DBG] Timer::StopTimer T8
2022-03-23 09:52:12.832 [DBG] Read Data: 96 -- 00 01 02 0E 00 00 00 00 00 12 01 0E B1 04 00 00 00 01 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 00 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05
2022-03-23 09:52:12.832 [DBG] Reader#ByteToBlock Header: 00 01 02 0E 00 00 00 00 00 12
2022-03-23 09:52:12.832 [DBG] Reader#ByteToBlock Data: 01 0E B1 04 00 00 00 01 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 00 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05
2022-03-23 09:52:12.832 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 09:52:12.848 [DBG] Timer::StopT3Timer, SystemBytes=18
2022-03-23 09:52:13.384 [DBG] Writer#Run Send Primary Message 19
2022-03-23 09:52:13.384 [DBG] Timer::StartT3Timer, SystemBytes=19
2022-03-23 09:52:13.384 [DBG] WriteSendMessage: StartT3Timer 19
2022-03-23 09:52:13.495 [DBG] Timer::StartTimer T8
2022-03-23 09:52:13.495 [DBG] Timer::StopTimer T8
2022-03-23 09:52:13.495 [DBG] Read Data: 13 -- 00 01 02 10 00 00 00 00 00 13 21 01 00
2022-03-23 09:52:13.495 [DBG] Reader#ByteToBlock Header: 00 01 02 10 00 00 00 00 00 13
2022-03-23 09:52:13.495 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-23 09:52:13.495 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 09:52:13.511 [DBG] Timer::StopT3Timer, SystemBytes=19
2022-03-23 09:52:14.037 [DBG] Writer#Run Send Primary Message 20
2022-03-23 09:52:14.037 [DBG] Timer::StartT3Timer, SystemBytes=20
2022-03-23 09:52:14.037 [DBG] WriteSendMessage: StartT3Timer 20
2022-03-23 09:52:14.149 [DBG] Timer::StartTimer T8
2022-03-23 09:52:14.149 [DBG] Timer::StopTimer T8
2022-03-23 09:52:14.149 [DBG] Read Data: 13 -- 00 01 01 10 00 00 00 00 00 14 21 01 00
2022-03-23 09:52:14.149 [DBG] Reader#ByteToBlock Header: 00 01 01 10 00 00 00 00 00 14
2022-03-23 09:52:14.149 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-23 09:52:14.149 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 09:52:14.164 [DBG] Timer::StopT3Timer, SystemBytes=20
2022-03-23 09:52:14.694 [DBG] Writer#Run Send Primary Message 21
2022-03-23 09:52:14.694 [DBG] Timer::StartT3Timer, SystemBytes=21
2022-03-23 09:52:14.694 [DBG] WriteSendMessage: StartT3Timer 21
2022-03-23 09:52:14.801 [DBG] Timer::StartTimer T8
2022-03-23 09:52:14.801 [DBG] Timer::StopTimer T8
2022-03-23 09:52:14.801 [DBG] Read Data: 13 -- 00 01 01 12 00 00 00 00 00 15 21 01 00
2022-03-23 09:52:14.801 [DBG] Reader#ByteToBlock Header: 00 01 01 12 00 00 00 00 00 15
2022-03-23 09:52:14.801 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-23 09:52:14.801 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 09:52:14.817 [DBG] Timer::StopT3Timer, SystemBytes=21
2022-03-23 09:52:15.346 [DBG] Writer#Run Send Primary Message 22
2022-03-23 09:52:15.346 [DBG] Timer::StartT3Timer, SystemBytes=22
2022-03-23 09:52:15.346 [DBG] WriteSendMessage: StartT3Timer 22
2022-03-23 09:52:15.455 [DBG] Timer::StartTimer T8
2022-03-23 09:52:15.455 [DBG] Timer::StopTimer T8
2022-03-23 09:52:15.455 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 16 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-23 09:52:15.455 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 16
2022-03-23 09:52:15.455 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-23 09:52:15.455 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 09:52:15.471 [DBG] Timer::StopT3Timer, SystemBytes=22
2022-03-23 09:52:16.010 [DBG] Writer#Run Send Primary Message 23
2022-03-23 09:52:16.010 [DBG] Timer::StartT3Timer, SystemBytes=23
2022-03-23 09:52:16.010 [DBG] WriteSendMessage: StartT3Timer 23
2022-03-23 09:52:16.122 [DBG] Timer::StartTimer T8
2022-03-23 09:52:16.122 [DBG] Timer::StopTimer T8
2022-03-23 09:52:16.122 [DBG] Read Data: 13 -- 00 01 02 18 00 00 00 00 00 17 21 01 00
2022-03-23 09:52:16.122 [DBG] Reader#ByteToBlock Header: 00 01 02 18 00 00 00 00 00 17
2022-03-23 09:52:16.122 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-23 09:52:16.122 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 09:52:16.137 [DBG] Timer::StopT3Timer, SystemBytes=23
2022-03-23 09:53:16.125 [DBG] Timer::StartTimer T8
2022-03-23 09:53:16.125 [DBG] Timer::StopTimer T8
2022-03-23 09:53:16.125 [DBG] Read Data: 10 -- FF FF 00 00 00 05 5F 17 7D 4F
2022-03-23 09:53:16.125 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 5F 17 7D 4F
2022-03-23 09:53:16.125 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 09:53:16.125 [DBG] [WRITE] [SB:1595374927, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 5F 17 7D 4F
2022-03-23 09:54:02.572 [DBG] HSMSTimer::CheckOtherTimeout: 120.9497083, LinkTest
2022-03-23 09:54:02.572 [DBG] Timer::StartTimer T6
2022-03-23 09:54:02.572 [DBG] [WRITE] [SB:2130706433, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 01
2022-03-23 09:54:02.572 [DBG] Timer::StartTimer LinkTest
2022-03-23 09:54:02.589 [DBG] Timer::StartTimer T8
2022-03-23 09:54:02.589 [DBG] Timer::StopTimer T8
2022-03-23 09:54:02.589 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 01
2022-03-23 09:54:02.589 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 01
2022-03-23 09:54:02.589 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 09:54:02.589 [DBG] Timer::StopTimer T6
2022-03-23 09:55:02.601 [DBG] Timer::StartTimer T8
2022-03-23 09:55:02.601 [DBG] Timer::StopTimer T8
2022-03-23 09:55:02.601 [DBG] Read Data: 10 -- FF FF 00 00 00 05 5F 17 7D 50
2022-03-23 09:55:02.601 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 5F 17 7D 50
2022-03-23 09:55:02.601 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 09:55:02.601 [DBG] [WRITE] [SB:1595374928, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 5F 17 7D 50
2022-03-23 09:56:02.615 [DBG] Timer::StartTimer T8
2022-03-23 09:56:02.615 [DBG] Timer::StopTimer T8
2022-03-23 09:56:02.615 [DBG] Read Data: 10 -- FF FF 00 00 00 05 5F 17 7D 51
2022-03-23 09:56:02.615 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 5F 17 7D 51
2022-03-23 09:56:02.615 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 09:56:02.615 [DBG] [WRITE] [SB:1595374929, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 5F 17 7D 51
2022-03-23 09:56:03.538 [DBG] HSMSTimer::CheckOtherTimeout: 120.9657338, LinkTest
2022-03-23 09:56:03.538 [DBG] Timer::StartTimer T6
2022-03-23 09:56:03.538 [DBG] [WRITE] [SB:2130706434, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 02
2022-03-23 09:56:03.538 [DBG] Timer::StartTimer LinkTest
2022-03-23 09:56:03.553 [DBG] Timer::StartTimer T8
2022-03-23 09:56:03.554 [DBG] Timer::StopTimer T8
2022-03-23 09:56:03.554 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 02
2022-03-23 09:56:03.554 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 02
2022-03-23 09:56:03.554 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 09:56:03.554 [DBG] Timer::StopTimer T6
2022-03-23 09:57:03.566 [DBG] Timer::StartTimer T8
2022-03-23 09:57:03.566 [DBG] Timer::StopTimer T8
2022-03-23 09:57:03.566 [DBG] Read Data: 10 -- FF FF 00 00 00 05 5F 17 7D 52
2022-03-23 09:57:03.566 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 5F 17 7D 52
2022-03-23 09:57:03.566 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 09:57:03.566 [DBG] [WRITE] [SB:1595374930, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 5F 17 7D 52
2022-03-23 09:58:03.549 [DBG] HSMSTimer::CheckOtherTimeout: 120.0112159, LinkTest
2022-03-23 09:58:03.549 [DBG] Timer::StartTimer T6
2022-03-23 09:58:03.549 [DBG] [WRITE] [SB:2130706435, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 03
2022-03-23 09:58:03.549 [DBG] Timer::StartTimer LinkTest
2022-03-23 09:58:03.564 [DBG] Timer::StartTimer T8
2022-03-23 09:58:03.564 [DBG] Timer::StopTimer T8
2022-03-23 09:58:03.564 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 03
2022-03-23 09:58:03.564 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 03
2022-03-23 09:58:03.564 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 09:58:03.564 [DBG] Timer::StopTimer T6
2022-03-23 09:59:03.574 [DBG] Timer::StartTimer T8
2022-03-23 09:59:03.574 [DBG] Timer::StopTimer T8
2022-03-23 09:59:03.574 [DBG] Read Data: 10 -- FF FF 00 00 00 05 5F 17 7D 53
2022-03-23 09:59:03.574 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 5F 17 7D 53
2022-03-23 09:59:03.574 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 09:59:03.574 [DBG] [WRITE] [SB:1595374931, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 5F 17 7D 53
2022-03-23 10:00:03.590 [DBG] Timer::StartTimer T8
2022-03-23 10:00:03.590 [DBG] Timer::StopTimer T8
2022-03-23 10:00:03.590 [DBG] Read Data: 10 -- FF FF 00 00 00 05 5F 17 7D 54
2022-03-23 10:00:03.590 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 5F 17 7D 54
2022-03-23 10:00:03.590 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:00:03.590 [DBG] [WRITE] [SB:1595374932, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 5F 17 7D 54
2022-03-23 10:00:04.520 [DBG] HSMSTimer::CheckOtherTimeout: 120.9706512, LinkTest
2022-03-23 10:00:04.520 [DBG] Timer::StartTimer T6
2022-03-23 10:00:04.520 [DBG] [WRITE] [SB:2130706436, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 04
2022-03-23 10:00:04.520 [DBG] Timer::StartTimer LinkTest
2022-03-23 10:00:04.536 [DBG] Timer::StartTimer T8
2022-03-23 10:00:04.536 [DBG] Timer::StopTimer T8
2022-03-23 10:00:04.536 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 04
2022-03-23 10:00:04.536 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 04
2022-03-23 10:00:04.536 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:00:04.536 [DBG] Timer::StopTimer T6
2022-03-23 10:01:04.543 [DBG] Timer::StartTimer T8
2022-03-23 10:01:04.543 [DBG] Timer::StopTimer T8
2022-03-23 10:01:04.543 [DBG] Read Data: 10 -- FF FF 00 00 00 05 5F 17 7D 55
2022-03-23 10:01:04.543 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 5F 17 7D 55
2022-03-23 10:01:04.543 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:01:04.543 [DBG] [WRITE] [SB:1595374933, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 5F 17 7D 55
2022-03-23 10:02:04.554 [DBG] Timer::StartTimer T8
2022-03-23 10:02:04.554 [DBG] Timer::StopTimer T8
2022-03-23 10:02:04.554 [DBG] Read Data: 10 -- FF FF 00 00 00 05 5F 17 7D 56
2022-03-23 10:02:04.554 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 5F 17 7D 56
2022-03-23 10:02:04.554 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:02:04.554 [DBG] [WRITE] [SB:1595374934, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 5F 17 7D 56
2022-03-23 10:02:05.515 [DBG] HSMSTimer::CheckOtherTimeout: 120.9955848, LinkTest
2022-03-23 10:02:05.515 [DBG] Timer::StartTimer T6
2022-03-23 10:02:05.515 [DBG] [WRITE] [SB:2130706437, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 05
2022-03-23 10:02:05.515 [DBG] Timer::StartTimer LinkTest
2022-03-23 10:02:05.532 [DBG] Timer::StartTimer T8
2022-03-23 10:02:05.532 [DBG] Timer::StopTimer T8
2022-03-23 10:02:05.532 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 05
2022-03-23 10:02:05.532 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 05
2022-03-23 10:02:05.532 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:02:05.532 [DBG] Timer::StopTimer T6
2022-03-23 10:03:05.537 [DBG] Timer::StartTimer T8
2022-03-23 10:03:05.537 [DBG] Timer::StopTimer T8
2022-03-23 10:03:05.537 [DBG] Read Data: 10 -- FF FF 00 00 00 05 5F 17 7D 57
2022-03-23 10:03:05.537 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 5F 17 7D 57
2022-03-23 10:03:05.537 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:03:05.537 [DBG] [WRITE] [SB:1595374935, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 5F 17 7D 57
2022-03-23 10:04:05.542 [DBG] Timer::StartTimer T8
2022-03-23 10:04:05.542 [DBG] Timer::StopTimer T8
2022-03-23 10:04:05.542 [DBG] Read Data: 10 -- FF FF 00 00 00 05 5F 17 7D 58
2022-03-23 10:04:05.542 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 5F 17 7D 58
2022-03-23 10:04:05.542 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:04:05.542 [DBG] [WRITE] [SB:1595374936, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 5F 17 7D 58
2022-03-23 10:04:06.516 [DBG] HSMSTimer::CheckOtherTimeout: 121.0005713, LinkTest
2022-03-23 10:04:06.516 [DBG] Timer::StartTimer T6
2022-03-23 10:04:06.516 [DBG] [WRITE] [SB:2130706438, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 06
2022-03-23 10:04:06.516 [DBG] Timer::StartTimer LinkTest
2022-03-23 10:04:06.533 [DBG] Timer::StartTimer T8
2022-03-23 10:04:06.533 [DBG] Timer::StopTimer T8
2022-03-23 10:04:06.533 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 06
2022-03-23 10:04:06.533 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 06
2022-03-23 10:04:06.533 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:04:06.533 [DBG] Timer::StopTimer T6
2022-03-23 10:05:06.537 [DBG] Timer::StartTimer T8
2022-03-23 10:05:06.537 [DBG] Timer::StopTimer T8
2022-03-23 10:05:06.537 [DBG] Read Data: 10 -- FF FF 00 00 00 05 5F 17 7D 59
2022-03-23 10:05:06.537 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 5F 17 7D 59
2022-03-23 10:05:06.537 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:05:06.537 [DBG] [WRITE] [SB:1595374937, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 5F 17 7D 59
2022-03-23 10:06:06.540 [DBG] Timer::StartTimer T8
2022-03-23 10:06:06.540 [DBG] Timer::StopTimer T8
2022-03-23 10:06:06.540 [DBG] Read Data: 10 -- FF FF 00 00 00 05 5F 17 7D 5A
2022-03-23 10:06:06.540 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 5F 17 7D 5A
2022-03-23 10:06:06.540 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:06:06.540 [DBG] [WRITE] [SB:1595374938, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 5F 17 7D 5A
2022-03-23 10:06:07.508 [DBG] HSMSTimer::CheckOtherTimeout: 120.992594, LinkTest
2022-03-23 10:06:07.508 [DBG] Timer::StartTimer T6
2022-03-23 10:06:07.508 [DBG] [WRITE] [SB:2130706439, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 07
2022-03-23 10:06:07.508 [DBG] Timer::StartTimer LinkTest
2022-03-23 10:06:07.524 [DBG] Timer::StartTimer T8
2022-03-23 10:06:07.524 [DBG] Timer::StopTimer T8
2022-03-23 10:06:07.524 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 07
2022-03-23 10:06:07.524 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 07
2022-03-23 10:06:07.524 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:06:07.524 [DBG] Timer::StopTimer T6
2022-03-23 10:07:07.527 [DBG] Timer::StartTimer T8
2022-03-23 10:07:07.527 [DBG] Timer::StopTimer T8
2022-03-23 10:07:07.527 [DBG] Read Data: 10 -- FF FF 00 00 00 05 5F 17 7D 5B
2022-03-23 10:07:07.527 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 5F 17 7D 5B
2022-03-23 10:07:07.527 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:07:07.527 [DBG] [WRITE] [SB:1595374939, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 5F 17 7D 5B
2022-03-23 10:08:07.517 [DBG] HSMSTimer::CheckOtherTimeout: 120.0082227, LinkTest
2022-03-23 10:08:07.517 [DBG] Timer::StartTimer T6
2022-03-23 10:08:07.517 [DBG] [WRITE] [SB:2130706440, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 08
2022-03-23 10:08:07.517 [DBG] Timer::StartTimer LinkTest
2022-03-23 10:08:07.533 [DBG] Timer::StartTimer T8
2022-03-23 10:08:07.533 [DBG] Timer::StopTimer T8
2022-03-23 10:08:07.533 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 08
2022-03-23 10:08:07.533 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 08
2022-03-23 10:08:07.533 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:08:07.533 [DBG] Timer::StopTimer T6
2022-03-23 10:09:07.547 [DBG] Timer::StartTimer T8
2022-03-23 10:09:07.547 [DBG] Timer::StopTimer T8
2022-03-23 10:09:07.547 [DBG] Read Data: 10 -- FF FF 00 00 00 05 5F 17 7D 5C
2022-03-23 10:09:07.547 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 5F 17 7D 5C
2022-03-23 10:09:07.547 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:09:07.547 [DBG] [WRITE] [SB:1595374940, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 5F 17 7D 5C
2022-03-23 10:10:07.560 [DBG] Timer::StartTimer T8
2022-03-23 10:10:07.560 [DBG] Timer::StopTimer T8
2022-03-23 10:10:07.560 [DBG] Read Data: 10 -- FF FF 00 00 00 05 5F 17 7D 5D
2022-03-23 10:10:07.560 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 5F 17 7D 5D
2022-03-23 10:10:07.560 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:10:07.560 [DBG] [WRITE] [SB:1595374941, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 5F 17 7D 5D
2022-03-23 10:10:08.509 [DBG] HSMSTimer::CheckOtherTimeout: 120.992593, LinkTest
2022-03-23 10:10:08.509 [DBG] Timer::StartTimer T6
2022-03-23 10:10:08.509 [DBG] [WRITE] [SB:2130706441, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 09
2022-03-23 10:10:08.509 [DBG] Timer::StartTimer LinkTest
2022-03-23 10:10:08.528 [DBG] Timer::StartTimer T8
2022-03-23 10:10:08.528 [DBG] Timer::StopTimer T8
2022-03-23 10:10:08.528 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 09
2022-03-23 10:10:08.528 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 09
2022-03-23 10:10:08.528 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:10:08.528 [DBG] Timer::StopTimer T6
2022-03-23 10:11:08.529 [DBG] Timer::StartTimer T8
2022-03-23 10:11:08.529 [DBG] Timer::StopTimer T8
2022-03-23 10:11:08.529 [DBG] Read Data: 10 -- FF FF 00 00 00 05 5F 17 7D 5E
2022-03-23 10:11:08.529 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 5F 17 7D 5E
2022-03-23 10:11:08.529 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:11:08.529 [DBG] [WRITE] [SB:1595374942, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 5F 17 7D 5E
2022-03-23 10:12:08.535 [DBG] Timer::StartTimer T8
2022-03-23 10:12:08.535 [DBG] Timer::StopTimer T8
2022-03-23 10:12:08.535 [DBG] Read Data: 10 -- FF FF 00 00 00 05 5F 17 7D 5F
2022-03-23 10:12:08.535 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 5F 17 7D 5F
2022-03-23 10:12:08.535 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:12:08.535 [DBG] [WRITE] [SB:1595374943, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 5F 17 7D 5F
2022-03-23 10:12:09.493 [DBG] HSMSTimer::CheckOtherTimeout: 120.9836164, LinkTest
2022-03-23 10:12:09.493 [DBG] Timer::StartTimer T6
2022-03-23 10:12:09.493 [DBG] [WRITE] [SB:2130706442, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 0A
2022-03-23 10:12:09.493 [DBG] Timer::StartTimer LinkTest
2022-03-23 10:12:09.508 [DBG] Timer::StartTimer T8
2022-03-23 10:12:09.508 [DBG] Timer::StopTimer T8
2022-03-23 10:12:09.508 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 0A
2022-03-23 10:12:09.508 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 0A
2022-03-23 10:12:09.508 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:12:09.508 [DBG] Timer::StopTimer T6
2022-03-23 10:13:09.513 [DBG] Timer::StartTimer T8
2022-03-23 10:13:09.513 [DBG] Timer::StopTimer T8
2022-03-23 10:13:09.513 [DBG] Read Data: 10 -- FF FF 00 00 00 05 5F 17 7D 60
2022-03-23 10:13:09.513 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 5F 17 7D 60
2022-03-23 10:13:09.513 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:13:09.513 [DBG] [WRITE] [SB:1595374944, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 5F 17 7D 60
2022-03-23 10:14:09.495 [DBG] HSMSTimer::CheckOtherTimeout: 120.00224, LinkTest
2022-03-23 10:14:09.495 [DBG] Timer::StartTimer T6
2022-03-23 10:14:09.495 [DBG] [WRITE] [SB:2130706443, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 0B
2022-03-23 10:14:09.495 [DBG] Timer::StartTimer LinkTest
2022-03-23 10:14:09.512 [DBG] Timer::StartTimer T8
2022-03-23 10:14:09.512 [DBG] Timer::StopTimer T8
2022-03-23 10:14:09.512 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 0B
2022-03-23 10:14:09.512 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 0B
2022-03-23 10:14:09.512 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:14:09.512 [DBG] Timer::StopTimer T6
2022-03-23 10:15:09.521 [DBG] Timer::StartTimer T8
2022-03-23 10:15:09.521 [DBG] Timer::StopTimer T8
2022-03-23 10:15:09.521 [DBG] Read Data: 10 -- FF FF 00 00 00 05 5F 17 7D 61
2022-03-23 10:15:09.521 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 5F 17 7D 61
2022-03-23 10:15:09.521 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:15:09.521 [DBG] [WRITE] [SB:1595374945, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 5F 17 7D 61
2022-03-23 10:16:09.536 [DBG] Timer::StartTimer T8
2022-03-23 10:16:09.536 [DBG] Timer::StopTimer T8
2022-03-23 10:16:09.536 [DBG] Read Data: 10 -- FF FF 00 00 00 05 5F 17 7D 62
2022-03-23 10:16:09.536 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 5F 17 7D 62
2022-03-23 10:16:09.536 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:16:09.536 [DBG] [WRITE] [SB:1595374946, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 5F 17 7D 62
2022-03-23 10:16:10.481 [DBG] HSMSTimer::CheckOtherTimeout: 120.9856112, LinkTest
2022-03-23 10:16:10.481 [DBG] Timer::StartTimer T6
2022-03-23 10:16:10.481 [DBG] [WRITE] [SB:2130706444, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 0C
2022-03-23 10:16:10.481 [DBG] Timer::StartTimer LinkTest
2022-03-23 10:16:10.496 [DBG] Timer::StartTimer T8
2022-03-23 10:16:10.496 [DBG] Timer::StopTimer T8
2022-03-23 10:16:10.496 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 0C
2022-03-23 10:16:10.497 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 0C
2022-03-23 10:16:10.497 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:16:10.497 [DBG] Timer::StopTimer T6
2022-03-23 10:16:35.920 [DBG] Writer#Run Send Primary Message 24
2022-03-23 10:16:35.920 [DBG] Timer::StartT3Timer, SystemBytes=24
2022-03-23 10:16:35.920 [DBG] WriteSendMessage: StartT3Timer 24
2022-03-23 10:16:36.027 [DBG] Timer::StartTimer T8
2022-03-23 10:16:36.027 [DBG] Timer::StopTimer T8
2022-03-23 10:16:36.027 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 18 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-23 10:16:36.027 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 18
2022-03-23 10:16:36.027 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-23 10:16:36.027 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 10:16:36.042 [DBG] Timer::StopT3Timer, SystemBytes=24
2022-03-23 10:16:53.335 [DBG] Writer#Run Send Primary Message 25
2022-03-23 10:16:53.335 [DBG] Timer::StartT3Timer, SystemBytes=25
2022-03-23 10:16:53.335 [DBG] WriteSendMessage: StartT3Timer 25
2022-03-23 10:16:53.441 [DBG] Timer::StartTimer T8
2022-03-23 10:16:53.441 [DBG] Timer::StopTimer T8
2022-03-23 10:16:53.441 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 19 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-23 10:16:53.441 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 19
2022-03-23 10:16:53.441 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-23 10:16:53.441 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 10:16:53.457 [DBG] Timer::StopT3Timer, SystemBytes=25
2022-03-23 10:17:01.188 [DBG] Writer#Run Send Primary Message 26
2022-03-23 10:17:01.188 [DBG] Timer::StartT3Timer, SystemBytes=26
2022-03-23 10:17:01.188 [DBG] WriteSendMessage: StartT3Timer 26
2022-03-23 10:17:01.297 [DBG] Timer::StartTimer T8
2022-03-23 10:17:01.297 [DBG] Timer::StopTimer T8
2022-03-23 10:17:01.297 [DBG] Read Data: 96 -- 00 01 02 0E 00 00 00 00 00 1A 01 0E B1 04 00 00 00 01 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 00 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05
2022-03-23 10:17:01.297 [DBG] Reader#ByteToBlock Header: 00 01 02 0E 00 00 00 00 00 1A
2022-03-23 10:17:01.297 [DBG] Reader#ByteToBlock Data: 01 0E B1 04 00 00 00 01 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 00 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05
2022-03-23 10:17:01.297 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 10:17:01.312 [DBG] Timer::StopT3Timer, SystemBytes=26
2022-03-23 10:17:23.150 [DBG] Writer#Run Send Primary Message 27
2022-03-23 10:17:23.150 [DBG] Timer::StartT3Timer, SystemBytes=27
2022-03-23 10:17:23.150 [DBG] WriteSendMessage: StartT3Timer 27
2022-03-23 10:17:23.241 [DBG] Timer::StartTimer T8
2022-03-23 10:17:23.241 [DBG] Timer::StopTimer T8
2022-03-23 10:17:23.241 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 1B 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-23 10:17:23.241 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 1B
2022-03-23 10:17:23.241 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-23 10:17:23.241 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 10:17:23.257 [DBG] Timer::StopT3Timer, SystemBytes=27
2022-03-23 10:18:11.222 [DBG] HSMSTimer::CheckOtherTimeout: 120.7412645, LinkTest
2022-03-23 10:18:11.222 [DBG] Timer::StartTimer T6
2022-03-23 10:18:11.222 [DBG] [WRITE] [SB:2130706445, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 0D
2022-03-23 10:18:11.222 [DBG] Timer::StartTimer LinkTest
2022-03-23 10:18:11.238 [DBG] Timer::StartTimer T8
2022-03-23 10:18:11.238 [DBG] Timer::StopTimer T8
2022-03-23 10:18:11.238 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 0D
2022-03-23 10:18:11.238 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 0D
2022-03-23 10:18:11.238 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:18:11.238 [DBG] Timer::StopTimer T6
2022-03-23 10:18:18.641 [DBG] Writer#Run Send Primary Message 28
2022-03-23 10:18:18.641 [DBG] Timer::StartT3Timer, SystemBytes=28
2022-03-23 10:18:18.641 [DBG] WriteSendMessage: StartT3Timer 28
2022-03-23 10:18:18.762 [DBG] Timer::StartTimer T8
2022-03-23 10:18:18.762 [DBG] Timer::StopTimer T8
2022-03-23 10:18:18.762 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 1C 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-23 10:18:18.762 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 1C
2022-03-23 10:18:18.762 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-23 10:18:18.762 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 10:18:18.777 [DBG] Timer::StopT3Timer, SystemBytes=28
2022-03-23 10:18:51.837 [DBG] Writer#Run Send Primary Message 29
2022-03-23 10:18:51.837 [DBG] Timer::StartT3Timer, SystemBytes=29
2022-03-23 10:18:51.837 [DBG] WriteSendMessage: StartT3Timer 29
2022-03-23 10:19:36.921 [DBG] HSMSTimer::CheckT3Timeout: 45.0834956, 29
2022-03-23 10:19:36.921 [DBG] Timer#Run: Timeout Message System Bytes=29
2022-03-23 10:19:51.846 [DBG] Timer::StartTimer T8
2022-03-23 10:19:51.846 [DBG] Timer::StopTimer T8
2022-03-23 10:19:51.846 [DBG] Read Data: 10 -- FF FF 00 00 00 05 5F 17 7D 63
2022-03-23 10:19:51.846 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 5F 17 7D 63
2022-03-23 10:19:51.846 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:19:51.846 [DBG] [WRITE] [SB:1595374947, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 5F 17 7D 63
2022-03-23 10:20:12.227 [DBG] HSMSTimer::CheckOtherTimeout: 121.0055591, LinkTest
2022-03-23 10:20:12.227 [DBG] Timer::StartTimer T6
2022-03-23 10:20:12.227 [DBG] [WRITE] [SB:2130706446, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 0E
2022-03-23 10:20:12.227 [DBG] Timer::StartTimer LinkTest
2022-03-23 10:20:12.244 [DBG] Timer::StartTimer T8
2022-03-23 10:20:12.244 [DBG] Timer::StopTimer T8
2022-03-23 10:20:12.244 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 0E
2022-03-23 10:20:12.244 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 0E
2022-03-23 10:20:12.244 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:20:12.244 [DBG] Timer::StopTimer T6
2022-03-23 10:20:31.683 [DBG] Writer#Run Send Primary Message 30
2022-03-23 10:20:31.683 [DBG] Timer::StartT3Timer, SystemBytes=30
2022-03-23 10:20:31.683 [DBG] WriteSendMessage: StartT3Timer 30
2022-03-23 10:20:31.743 [DBG] Timer::StartTimer T8
2022-03-23 10:20:31.743 [DBG] Timer::StopTimer T8
2022-03-23 10:20:31.743 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 1E 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-23 10:20:31.743 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 1E
2022-03-23 10:20:31.743 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-23 10:20:31.743 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-23 10:20:31.758 [DBG] Timer::StopT3Timer, SystemBytes=30
2022-03-23 10:21:31.749 [DBG] Timer::StartTimer T8
2022-03-23 10:21:31.749 [DBG] Timer::StopTimer T8
2022-03-23 10:21:31.749 [DBG] Read Data: 10 -- FF FF 00 00 00 05 5F 17 7D 64
2022-03-23 10:21:31.749 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 5F 17 7D 64
2022-03-23 10:21:31.749 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:21:31.749 [DBG] [WRITE] [SB:1595374948, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 5F 17 7D 64
2022-03-23 10:22:13.179 [DBG] HSMSTimer::CheckOtherTimeout: 120.9517015, LinkTest
2022-03-23 10:22:13.179 [DBG] Timer::StartTimer T6
2022-03-23 10:22:13.179 [DBG] [WRITE] [SB:2130706447, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 0F
2022-03-23 10:22:13.179 [DBG] Timer::StartTimer LinkTest
2022-03-23 10:22:13.195 [DBG] Timer::StartTimer T8
2022-03-23 10:22:13.195 [DBG] Timer::StopTimer T8
2022-03-23 10:22:13.195 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 0F
2022-03-23 10:22:13.195 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 0F
2022-03-23 10:22:13.195 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:22:13.195 [DBG] Timer::StopTimer T6
2022-03-23 10:23:13.200 [DBG] Timer::StartTimer T8
2022-03-23 10:23:13.200 [DBG] Timer::StopTimer T8
2022-03-23 10:23:13.200 [DBG] Read Data: 10 -- FF FF 00 00 00 05 5F 17 7D 65
2022-03-23 10:23:13.200 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 5F 17 7D 65
2022-03-23 10:23:13.200 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:23:13.200 [DBG] [WRITE] [SB:1595374949, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 5F 17 7D 65
2022-03-23 10:24:13.207 [DBG] Timer::StartTimer T8
2022-03-23 10:24:13.207 [DBG] Timer::StopTimer T8
2022-03-23 10:24:13.207 [DBG] Read Data: 10 -- FF FF 00 00 00 05 5F 17 7D 66
2022-03-23 10:24:13.207 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 5F 17 7D 66
2022-03-23 10:24:13.207 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:24:13.207 [DBG] [WRITE] [SB:1595374950, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 5F 17 7D 66
2022-03-23 10:24:14.165 [DBG] HSMSTimer::CheckOtherTimeout: 120.9856091, LinkTest
2022-03-23 10:24:14.165 [DBG] Timer::StartTimer T6
2022-03-23 10:24:14.165 [DBG] [WRITE] [SB:2130706448, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 10
2022-03-23 10:24:14.165 [DBG] Timer::StartTimer LinkTest
2022-03-23 10:24:14.182 [DBG] Timer::StartTimer T8
2022-03-23 10:24:14.182 [DBG] Timer::StopTimer T8
2022-03-23 10:24:14.182 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 10
2022-03-23 10:24:14.182 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 10
2022-03-23 10:24:14.182 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:24:14.182 [DBG] Timer::StopTimer T6
2022-03-23 10:25:14.193 [DBG] Timer::StartTimer T8
2022-03-23 10:25:14.193 [DBG] Timer::StopTimer T8
2022-03-23 10:25:14.193 [DBG] Read Data: 10 -- FF FF 00 00 00 05 5F 17 7D 67
2022-03-23 10:25:14.193 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 5F 17 7D 67
2022-03-23 10:25:14.193 [DBG] HSMSPort::OnReadHsms control message.
2022-03-23 10:25:14.193 [DBG] [WRITE] [SB:1595374951, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 5F 17 7D 67
2022-03-23 10:25:30.975 [DBG] Start S9FxMonitor Thread.
2022-03-23 10:25:30.979 [DBG] S9FxMonitor Thread Status = True
2022-03-23 10:25:30.980 [DBG] HSMSPort::Initialize execute.
2022-03-23 10:25:30.981 [DBG] Start - Connector Thread.
2022-03-23 10:25:30.983 [DBG] - Connector Thread Status = True
2022-03-23 10:25:30.983 [DBG] Start ACOAT_01#Parser Thread.
2022-03-23 10:25:30.985 [DBG] ACOAT_01#Parser Thread Status = True
2022-03-23 10:25:30.990 [DBG] Start ACOAT_01#Timer Thread.
2022-03-23 10:25:30.991 [DBG] Completely Open the ACOAT_01 SECS Port
2022-03-23 10:25:30.992 [DBG] ACOAT_01#Timer Thread Status = True

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,10 @@
2022-03-28 14:18:40.763 [DBG] Start S9FxMonitor Thread.
2022-03-28 14:18:40.768 [DBG] S9FxMonitor Thread Status = True
2022-03-28 14:18:40.768 [DBG] HSMSPort::Initialize execute.
2022-03-28 14:18:40.769 [DBG] Start - Connector Thread.
2022-03-28 14:18:40.771 [DBG] - Connector Thread Status = True
2022-03-28 14:18:40.772 [DBG] Start ACOAT_01#Parser Thread.
2022-03-28 14:18:40.773 [DBG] ACOAT_01#Parser Thread Status = True
2022-03-28 14:18:40.778 [DBG] Start ACOAT_01#Timer Thread.
2022-03-28 14:18:40.778 [DBG] Completely Open the ACOAT_01 SECS Port
2022-03-28 14:18:40.779 [DBG] ACOAT_01#Timer Thread Status = True

View File

@@ -0,0 +1,375 @@
2022-03-28 14:18:49.143 [DBG] Start S9FxMonitor Thread.
2022-03-28 14:18:49.166 [DBG] HSMSPort::Initialize execute.
2022-03-28 14:18:49.166 [DBG] Start - Connector Thread.
2022-03-28 14:18:49.167 [DBG] S9FxMonitor Thread Status = True
2022-03-28 14:18:49.169 [DBG] Start ACOAT_01#Parser Thread.
2022-03-28 14:18:49.170 [DBG] - Connector Thread Status = True
2022-03-28 14:18:49.170 [DBG] Start ACOAT_01#Timer Thread.
2022-03-28 14:18:49.172 [DBG] ACOAT_01#Parser Thread Status = True
2022-03-28 14:18:49.173 [DBG] Completely Open the ACOAT_01 SECS Port
2022-03-28 14:18:49.175 [DBG] ACOAT_01#Timer Thread Status = True
2022-03-28 14:19:13.280 [DBG] HSMSPort::OnConnected Status=CONNECTING
2022-03-28 14:19:13.280 [DBG] UpdateStatus: Prev:UNKNOWN=>Now:CONNECTING=>New:CONNECT
2022-03-28 14:19:13.280 [DBG] UpdateStatus: Prev:CONNECTING=>Now:CONNECT
2022-03-28 14:19:13.281 [DBG] Start ACOAT_01#Reader Thread.
2022-03-28 14:19:13.283 [DBG] ACOAT_01#Reader Thread Status = True
2022-03-28 14:19:13.283 [DBG] Start ACOAT_01#Writer Thread.
2022-03-28 14:19:13.285 [DBG] ACOAT_01#Writer Thread Status = True
2022-03-28 14:19:13.285 [DBG] Timer::StartTimer LinkTest
2022-03-28 14:19:13.286 [DBG] Timer::StartTimer T6
2022-03-28 14:19:13.287 [DBG] [WRITE] [SB:2130706432, SELECT_REQ] 00 00 00 0A FF FF 00 00 00 01 7F 00 00 00
2022-03-28 14:19:13.687 [DBG] Timer::StartTimer T8
2022-03-28 14:19:13.688 [DBG] Timer::StopTimer T8
2022-03-28 14:19:13.688 [DBG] Read Data: 10 -- FF FF 00 00 00 02 7F 00 00 00
2022-03-28 14:19:13.688 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 02 7F 00 00 00
2022-03-28 14:19:13.689 [DBG] HSMSPort::OnReadHsms control message.
2022-03-28 14:19:13.689 [DBG] Timer::StopTimer T6
2022-03-28 14:19:13.689 [DBG] UpdateStatus: Prev:CONNECTING=>Now:CONNECT=>New:SELECT
2022-03-28 14:19:13.689 [DBG] UpdateStatus: Prev:CONNECT=>Now:SELECT
2022-03-28 14:19:13.718 [DBG] Writer#Run Send Primary Message 1
2022-03-28 14:19:13.722 [DBG] Timer::StartT3Timer, SystemBytes=1
2022-03-28 14:19:13.722 [DBG] WriteSendMessage: StartT3Timer 1
2022-03-28 14:19:14.011 [DBG] Timer::StartTimer T8
2022-03-28 14:19:14.011 [DBG] Timer::StopTimer T8
2022-03-28 14:19:14.011 [DBG] Read Data: 33 -- 00 01 01 0E 00 00 00 00 00 01 01 02 21 01 00 01 02 41 06 20 20 20 20 20 20 41 06 20 20 20 20 20 20
2022-03-28 14:19:14.011 [DBG] Reader#ByteToBlock Header: 00 01 01 0E 00 00 00 00 00 01
2022-03-28 14:19:14.011 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 02 41 06 20 20 20 20 20 20 41 06 20 20 20 20 20 20
2022-03-28 14:19:14.011 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:19:14.034 [DBG] Timer::StopT3Timer, SystemBytes=1
2022-03-28 14:19:14.571 [DBG] Writer#Run Send Primary Message 2
2022-03-28 14:19:14.571 [DBG] Timer::StartT3Timer, SystemBytes=2
2022-03-28 14:19:14.571 [DBG] WriteSendMessage: StartT3Timer 2
2022-03-28 14:19:14.647 [DBG] Timer::StartTimer T8
2022-03-28 14:19:14.647 [DBG] Timer::StopTimer T8
2022-03-28 14:19:14.647 [DBG] Read Data: 13 -- 00 01 01 12 00 00 00 00 00 02 21 01 00
2022-03-28 14:19:14.647 [DBG] Reader#ByteToBlock Header: 00 01 01 12 00 00 00 00 00 02
2022-03-28 14:19:14.647 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 14:19:14.647 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:19:14.663 [DBG] Timer::StopT3Timer, SystemBytes=2
2022-03-28 14:19:15.199 [DBG] Writer#Run Send Primary Message 3
2022-03-28 14:19:15.199 [DBG] Timer::StartT3Timer, SystemBytes=3
2022-03-28 14:19:15.199 [DBG] WriteSendMessage: StartT3Timer 3
2022-03-28 14:20:00.769 [DBG] HSMSTimer::CheckT3Timeout: 45.5700711, 3
2022-03-28 14:20:00.769 [DBG] Timer#Run: Timeout Message System Bytes=3
2022-03-28 14:20:15.242 [DBG] Timer::StartTimer T8
2022-03-28 14:20:15.242 [DBG] Timer::StopTimer T8
2022-03-28 14:20:15.242 [DBG] Read Data: 10 -- FF FF 00 00 00 05 38 CE 13 5C
2022-03-28 14:20:15.242 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 05 38 CE 13 5C
2022-03-28 14:20:15.242 [DBG] HSMSPort::OnReadHsms control message.
2022-03-28 14:20:15.242 [DBG] [WRITE] [SB:953029468, LINKTEST_RSP] 00 00 00 0A FF FF 00 00 00 06 38 CE 13 5C
2022-03-28 14:21:13.324 [DBG] HSMSTimer::CheckOtherTimeout: 120.0403653, LinkTest
2022-03-28 14:21:13.324 [DBG] Timer::StartTimer T6
2022-03-28 14:21:13.324 [DBG] [WRITE] [SB:2130706433, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 01
2022-03-28 14:21:13.324 [DBG] Timer::StartTimer LinkTest
2022-03-28 14:21:13.343 [DBG] Timer::StartTimer T8
2022-03-28 14:21:13.343 [DBG] Timer::StopTimer T8
2022-03-28 14:21:13.343 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 01
2022-03-28 14:21:13.343 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 01
2022-03-28 14:21:13.343 [DBG] HSMSPort::OnReadHsms control message.
2022-03-28 14:21:13.343 [DBG] Timer::StopTimer T6
2022-03-28 14:22:20.893 [DBG] Start S9FxMonitor Thread.
2022-03-28 14:22:20.898 [DBG] S9FxMonitor Thread Status = True
2022-03-28 14:22:20.898 [DBG] HSMSPort::Initialize execute.
2022-03-28 14:22:20.900 [DBG] Start - Connector Thread.
2022-03-28 14:22:20.901 [DBG] - Connector Thread Status = True
2022-03-28 14:22:20.902 [DBG] Start ACOAT_01#Parser Thread.
2022-03-28 14:22:20.903 [DBG] ACOAT_01#Parser Thread Status = True
2022-03-28 14:22:20.907 [DBG] Start ACOAT_01#Timer Thread.
2022-03-28 14:22:20.908 [DBG] Completely Open the ACOAT_01 SECS Port
2022-03-28 14:22:20.908 [DBG] HSMSPort::OnConnected Status=CONNECTING
2022-03-28 14:22:20.909 [DBG] UpdateStatus: Prev:UNKNOWN=>Now:CONNECTING=>New:CONNECT
2022-03-28 14:22:20.909 [DBG] UpdateStatus: Prev:CONNECTING=>Now:CONNECT
2022-03-28 14:22:20.910 [DBG] ACOAT_01#Timer Thread Status = True
2022-03-28 14:22:20.912 [DBG] Start ACOAT_01#Reader Thread.
2022-03-28 14:22:20.915 [DBG] ACOAT_01#Reader Thread Status = True
2022-03-28 14:22:20.918 [DBG] Start ACOAT_01#Writer Thread.
2022-03-28 14:22:20.920 [DBG] ACOAT_01#Writer Thread Status = True
2022-03-28 14:22:20.922 [DBG] Timer::StartTimer LinkTest
2022-03-28 14:22:20.922 [DBG] Timer::StartTimer T6
2022-03-28 14:22:20.924 [DBG] [WRITE] [SB:2130706432, SELECT_REQ] 00 00 00 0A FF FF 00 00 00 01 7F 00 00 00
2022-03-28 14:22:20.975 [DBG] Timer::StartTimer T8
2022-03-28 14:22:20.977 [DBG] Timer::StopTimer T8
2022-03-28 14:22:20.977 [DBG] Read Data: 10 -- FF FF 00 00 00 02 7F 00 00 00
2022-03-28 14:22:20.977 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 02 7F 00 00 00
2022-03-28 14:22:20.978 [DBG] HSMSPort::OnReadHsms control message.
2022-03-28 14:22:20.978 [DBG] Timer::StopTimer T6
2022-03-28 14:22:20.978 [DBG] UpdateStatus: Prev:CONNECTING=>Now:CONNECT=>New:SELECT
2022-03-28 14:22:20.978 [DBG] UpdateStatus: Prev:CONNECT=>Now:SELECT
2022-03-28 14:22:21.021 [DBG] Writer#Run Send Primary Message 1
2022-03-28 14:22:21.025 [DBG] Timer::StartT3Timer, SystemBytes=1
2022-03-28 14:22:21.025 [DBG] WriteSendMessage: StartT3Timer 1
2022-03-28 14:22:21.099 [DBG] Timer::StartTimer T8
2022-03-28 14:22:21.099 [DBG] Timer::StopTimer T8
2022-03-28 14:22:21.099 [DBG] Read Data: 33 -- 00 01 01 0E 00 00 00 00 00 01 01 02 21 01 00 01 02 41 06 20 20 20 20 20 20 41 06 20 20 20 20 20 20
2022-03-28 14:22:21.099 [DBG] Reader#ByteToBlock Header: 00 01 01 0E 00 00 00 00 00 01
2022-03-28 14:22:21.099 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 02 41 06 20 20 20 20 20 20 41 06 20 20 20 20 20 20
2022-03-28 14:22:21.099 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:22:21.127 [DBG] Timer::StopT3Timer, SystemBytes=1
2022-03-28 14:22:21.659 [DBG] Writer#Run Send Primary Message 2
2022-03-28 14:22:21.659 [DBG] Timer::StartT3Timer, SystemBytes=2
2022-03-28 14:22:21.659 [DBG] WriteSendMessage: StartT3Timer 2
2022-03-28 14:22:21.735 [DBG] Timer::StartTimer T8
2022-03-28 14:22:21.735 [DBG] Timer::StopTimer T8
2022-03-28 14:22:21.735 [DBG] Read Data: 13 -- 00 01 01 12 00 00 00 00 00 02 21 01 00
2022-03-28 14:22:21.735 [DBG] Reader#ByteToBlock Header: 00 01 01 12 00 00 00 00 00 02
2022-03-28 14:22:21.735 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 14:22:21.735 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:22:21.751 [DBG] Timer::StopT3Timer, SystemBytes=2
2022-03-28 14:22:22.279 [DBG] Writer#Run Send Primary Message 3
2022-03-28 14:22:22.279 [DBG] Timer::StartT3Timer, SystemBytes=3
2022-03-28 14:22:22.279 [DBG] WriteSendMessage: StartT3Timer 3
2022-03-28 14:22:22.359 [DBG] Timer::StartTimer T8
2022-03-28 14:22:22.359 [DBG] Timer::StopTimer T8
2022-03-28 14:22:22.359 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 03 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-28 14:22:22.359 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 03
2022-03-28 14:22:22.359 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-28 14:22:22.359 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:22:22.376 [DBG] Timer::StopT3Timer, SystemBytes=3
2022-03-28 14:22:22.908 [DBG] Writer#Run Send Primary Message 4
2022-03-28 14:22:22.908 [DBG] Timer::StartT3Timer, SystemBytes=4
2022-03-28 14:22:22.908 [DBG] WriteSendMessage: StartT3Timer 4
2022-03-28 14:22:23.017 [DBG] Timer::StartTimer T8
2022-03-28 14:22:23.017 [DBG] Timer::StopTimer T8
2022-03-28 14:22:23.017 [DBG] Read Data: 13 -- 00 01 06 18 00 00 00 00 00 04 21 01 01
2022-03-28 14:22:23.017 [DBG] Reader#ByteToBlock Header: 00 01 06 18 00 00 00 00 00 04
2022-03-28 14:22:23.017 [DBG] Reader#ByteToBlock Data: 21 01 01
2022-03-28 14:22:23.017 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:22:23.033 [DBG] Timer::StopT3Timer, SystemBytes=4
2022-03-28 14:22:23.570 [DBG] Writer#Run Send Primary Message 5
2022-03-28 14:22:23.570 [DBG] Timer::StartT3Timer, SystemBytes=5
2022-03-28 14:22:23.570 [DBG] WriteSendMessage: StartT3Timer 5
2022-03-28 14:22:23.680 [DBG] Timer::StartTimer T8
2022-03-28 14:22:23.680 [DBG] Timer::StopTimer T8
2022-03-28 14:22:23.680 [DBG] Read Data: 17 -- 00 01 02 2C 00 00 00 00 00 05 01 02 21 01 00 01 00
2022-03-28 14:22:23.680 [DBG] Reader#ByteToBlock Header: 00 01 02 2C 00 00 00 00 00 05
2022-03-28 14:22:23.680 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 00
2022-03-28 14:22:23.680 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:22:23.695 [DBG] Timer::StopT3Timer, SystemBytes=5
2022-03-28 14:22:24.228 [DBG] Writer#Run Send Primary Message 6
2022-03-28 14:22:24.228 [DBG] Timer::StartT3Timer, SystemBytes=6
2022-03-28 14:22:24.228 [DBG] WriteSendMessage: StartT3Timer 6
2022-03-28 14:22:24.338 [DBG] Timer::StartTimer T8
2022-03-28 14:22:24.338 [DBG] Timer::StopTimer T8
2022-03-28 14:22:24.338 [DBG] Read Data: 13 -- 00 01 02 26 00 00 00 00 00 06 21 01 00
2022-03-28 14:22:24.338 [DBG] Reader#ByteToBlock Header: 00 01 02 26 00 00 00 00 00 06
2022-03-28 14:22:24.338 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 14:22:24.338 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:22:24.354 [DBG] Timer::StopT3Timer, SystemBytes=6
2022-03-28 14:22:24.888 [DBG] Writer#Run Send Primary Message 7
2022-03-28 14:22:24.888 [DBG] Timer::StartT3Timer, SystemBytes=7
2022-03-28 14:22:24.888 [DBG] WriteSendMessage: StartT3Timer 7
2022-03-28 14:22:24.998 [DBG] Timer::StartTimer T8
2022-03-28 14:22:24.998 [DBG] Timer::StopTimer T8
2022-03-28 14:22:24.998 [DBG] Read Data: 13 -- 00 01 02 24 00 00 00 00 00 07 21 01 00
2022-03-28 14:22:24.998 [DBG] Reader#ByteToBlock Header: 00 01 02 24 00 00 00 00 00 07
2022-03-28 14:22:24.998 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 14:22:24.998 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:22:25.014 [DBG] Timer::StopT3Timer, SystemBytes=7
2022-03-28 14:22:25.542 [DBG] Writer#Run Send Primary Message 8
2022-03-28 14:22:25.542 [DBG] Timer::StartT3Timer, SystemBytes=8
2022-03-28 14:22:25.542 [DBG] WriteSendMessage: StartT3Timer 8
2022-03-28 14:22:25.648 [DBG] Timer::StartTimer T8
2022-03-28 14:22:25.648 [DBG] Timer::StopTimer T8
2022-03-28 14:22:25.648 [DBG] Read Data: 13 -- 00 01 02 22 00 00 00 00 00 08 21 01 00
2022-03-28 14:22:25.648 [DBG] Reader#ByteToBlock Header: 00 01 02 22 00 00 00 00 00 08
2022-03-28 14:22:25.648 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 14:22:25.648 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:22:25.664 [DBG] Timer::StopT3Timer, SystemBytes=8
2022-03-28 14:22:26.193 [DBG] Writer#Run Send Primary Message 9
2022-03-28 14:22:26.193 [DBG] Timer::StartT3Timer, SystemBytes=9
2022-03-28 14:22:26.193 [DBG] WriteSendMessage: StartT3Timer 9
2022-03-28 14:22:26.305 [DBG] Timer::StartTimer T8
2022-03-28 14:22:26.305 [DBG] Timer::StopTimer T8
2022-03-28 14:22:26.305 [DBG] Read Data: 13 -- 00 01 05 04 00 00 00 00 00 09 21 01 00
2022-03-28 14:22:26.305 [DBG] Reader#ByteToBlock Header: 00 01 05 04 00 00 00 00 00 09
2022-03-28 14:22:26.305 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 14:22:26.305 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:22:26.321 [DBG] Timer::StopT3Timer, SystemBytes=9
2022-03-28 14:22:26.845 [DBG] Writer#Run Send Primary Message 10
2022-03-28 14:22:26.845 [DBG] Timer::StartT3Timer, SystemBytes=10
2022-03-28 14:22:26.845 [DBG] WriteSendMessage: StartT3Timer 10
2022-03-28 14:22:26.907 [DBG] Timer::StartTimer T8
2022-03-28 14:22:26.907 [DBG] Timer::StopTimer T8
2022-03-28 14:22:26.907 [DBG] Read Data: 13 -- 00 01 02 22 00 00 00 00 00 0A 21 01 00
2022-03-28 14:22:26.907 [DBG] Reader#ByteToBlock Header: 00 01 02 22 00 00 00 00 00 0A
2022-03-28 14:22:26.907 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 14:22:26.907 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:22:26.923 [DBG] Timer::StopT3Timer, SystemBytes=10
2022-03-28 14:22:27.462 [DBG] Writer#Run Send Primary Message 11
2022-03-28 14:22:27.462 [DBG] Timer::StartT3Timer, SystemBytes=11
2022-03-28 14:22:27.462 [DBG] WriteSendMessage: StartT3Timer 11
2022-03-28 14:22:27.523 [DBG] Timer::StartTimer T8
2022-03-28 14:22:27.523 [DBG] Timer::StopTimer T8
2022-03-28 14:22:27.523 [DBG] Read Data: 13 -- 00 01 02 24 00 00 00 00 00 0B 21 01 00
2022-03-28 14:22:27.523 [DBG] Reader#ByteToBlock Header: 00 01 02 24 00 00 00 00 00 0B
2022-03-28 14:22:27.523 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 14:22:27.523 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:22:27.539 [DBG] Timer::StopT3Timer, SystemBytes=11
2022-03-28 14:22:28.068 [DBG] Writer#Run Send Primary Message 12
2022-03-28 14:22:28.068 [DBG] Timer::StartT3Timer, SystemBytes=12
2022-03-28 14:22:28.068 [DBG] WriteSendMessage: StartT3Timer 12
2022-03-28 14:22:28.174 [DBG] Timer::StartTimer T8
2022-03-28 14:22:28.174 [DBG] Timer::StopTimer T8
2022-03-28 14:22:28.174 [DBG] Read Data: 13 -- 00 01 02 26 00 00 00 00 00 0C 21 01 00
2022-03-28 14:22:28.174 [DBG] Reader#ByteToBlock Header: 00 01 02 26 00 00 00 00 00 0C
2022-03-28 14:22:28.174 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 14:22:28.174 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:22:28.190 [DBG] Timer::StopT3Timer, SystemBytes=12
2022-03-28 14:22:28.714 [DBG] Writer#Run Send Primary Message 13
2022-03-28 14:22:28.714 [DBG] Timer::StartT3Timer, SystemBytes=13
2022-03-28 14:22:28.714 [DBG] WriteSendMessage: StartT3Timer 13
2022-03-28 14:22:28.778 [DBG] Timer::StartTimer T8
2022-03-28 14:22:28.778 [DBG] Timer::StopTimer T8
2022-03-28 14:22:28.778 [DBG] Read Data: 13 -- 00 01 05 04 00 00 00 00 00 0D 21 01 00
2022-03-28 14:22:28.778 [DBG] Reader#ByteToBlock Header: 00 01 05 04 00 00 00 00 00 0D
2022-03-28 14:22:28.778 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 14:22:28.778 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:22:28.794 [DBG] Timer::StopT3Timer, SystemBytes=13
2022-03-28 14:22:29.332 [DBG] Writer#Run Send Primary Message 14
2022-03-28 14:22:29.332 [DBG] Timer::StartT3Timer, SystemBytes=14
2022-03-28 14:22:29.332 [DBG] WriteSendMessage: StartT3Timer 14
2022-03-28 14:22:29.423 [DBG] Timer::StartTimer T8
2022-03-28 14:22:29.423 [DBG] Timer::StopTimer T8
2022-03-28 14:22:29.423 [DBG] Read Data: 17 -- 00 01 02 2C 00 00 00 00 00 0E 01 02 21 01 00 01 00
2022-03-28 14:22:29.423 [DBG] Reader#ByteToBlock Header: 00 01 02 2C 00 00 00 00 00 0E
2022-03-28 14:22:29.423 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 00
2022-03-28 14:22:29.423 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:22:29.438 [DBG] Timer::StopT3Timer, SystemBytes=14
2022-03-28 14:22:29.971 [DBG] Writer#Run Send Primary Message 15
2022-03-28 14:22:29.971 [DBG] Timer::StartT3Timer, SystemBytes=15
2022-03-28 14:22:29.971 [DBG] WriteSendMessage: StartT3Timer 15
2022-03-28 14:22:30.079 [DBG] Timer::StartTimer T8
2022-03-28 14:22:30.079 [DBG] Timer::StopTimer T8
2022-03-28 14:22:30.079 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 0F 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-28 14:22:30.079 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 0F
2022-03-28 14:22:30.079 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-28 14:22:30.079 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:22:30.093 [DBG] Timer::StopT3Timer, SystemBytes=15
2022-03-28 14:22:30.617 [DBG] Writer#Run Send Primary Message 16
2022-03-28 14:22:30.617 [DBG] Timer::StartT3Timer, SystemBytes=16
2022-03-28 14:22:30.617 [DBG] WriteSendMessage: StartT3Timer 16
2022-03-28 14:22:30.724 [DBG] Timer::StartTimer T8
2022-03-28 14:22:30.724 [DBG] Timer::StopTimer T8
2022-03-28 14:22:30.724 [DBG] Read Data: 198 -- 00 01 05 06 00 00 00 00 00 10 01 02 01 03 21 01 01 B1 04 00 00 00 0A 41 50 74 65 73 74 31 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01 03 21 01 02 B1 04 00 00 00 0B 41 50 74 65 73 74 32 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
2022-03-28 14:22:30.724 [DBG] Reader#ByteToBlock Header: 00 01 05 06 00 00 00 00 00 10
2022-03-28 14:22:30.724 [DBG] Reader#ByteToBlock Data: 01 02 01 03 21 01 01 B1 04 00 00 00 0A 41 50 74 65 73 74 31 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01 03 21 01 02 B1 04 00 00 00 0B 41 50 74 65 73 74 32 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
2022-03-28 14:22:30.724 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:22:30.739 [DBG] Timer::StopT3Timer, SystemBytes=16
2022-03-28 14:22:31.270 [DBG] Writer#Run Send Primary Message 17
2022-03-28 14:22:31.270 [DBG] Timer::StartT3Timer, SystemBytes=17
2022-03-28 14:22:31.270 [DBG] WriteSendMessage: StartT3Timer 17
2022-03-28 14:22:31.376 [DBG] Timer::StartTimer T8
2022-03-28 14:22:31.376 [DBG] Timer::StopTimer T8
2022-03-28 14:22:31.376 [DBG] Read Data: 54 -- 00 01 07 14 00 00 00 00 00 11 01 06 41 05 74 65 73 74 31 41 05 74 65 73 74 32 41 05 74 65 73 74 33 41 05 74 65 73 74 34 41 05 74 65 73 74 35 41 05 74 65 73 74 36
2022-03-28 14:22:31.376 [DBG] Reader#ByteToBlock Header: 00 01 07 14 00 00 00 00 00 11
2022-03-28 14:22:31.376 [DBG] Reader#ByteToBlock Data: 01 06 41 05 74 65 73 74 31 41 05 74 65 73 74 32 41 05 74 65 73 74 33 41 05 74 65 73 74 34 41 05 74 65 73 74 35 41 05 74 65 73 74 36
2022-03-28 14:22:31.376 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:22:31.392 [DBG] Timer::StopT3Timer, SystemBytes=17
2022-03-28 14:22:31.927 [DBG] Writer#Run Send Primary Message 18
2022-03-28 14:22:31.927 [DBG] Timer::StartT3Timer, SystemBytes=18
2022-03-28 14:22:31.927 [DBG] WriteSendMessage: StartT3Timer 18
2022-03-28 14:22:32.018 [DBG] Timer::StartTimer T8
2022-03-28 14:22:32.018 [DBG] Timer::StopTimer T8
2022-03-28 14:22:32.018 [DBG] Read Data: 96 -- 00 01 02 0E 00 00 00 00 00 12 01 0E B1 04 00 00 00 01 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 00 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05
2022-03-28 14:22:32.018 [DBG] Reader#ByteToBlock Header: 00 01 02 0E 00 00 00 00 00 12
2022-03-28 14:22:32.018 [DBG] Reader#ByteToBlock Data: 01 0E B1 04 00 00 00 01 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 00 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05
2022-03-28 14:22:32.018 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:22:32.033 [DBG] Timer::StopT3Timer, SystemBytes=18
2022-03-28 14:22:32.563 [DBG] Writer#Run Send Primary Message 19
2022-03-28 14:22:32.563 [DBG] Timer::StartT3Timer, SystemBytes=19
2022-03-28 14:22:32.563 [DBG] WriteSendMessage: StartT3Timer 19
2022-03-28 14:22:32.627 [DBG] Timer::StartTimer T8
2022-03-28 14:22:32.627 [DBG] Timer::StopTimer T8
2022-03-28 14:22:32.627 [DBG] Read Data: 13 -- 00 01 02 10 00 00 00 00 00 13 21 01 00
2022-03-28 14:22:32.627 [DBG] Reader#ByteToBlock Header: 00 01 02 10 00 00 00 00 00 13
2022-03-28 14:22:32.627 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 14:22:32.627 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:22:32.643 [DBG] Timer::StopT3Timer, SystemBytes=19
2022-03-28 14:22:33.181 [DBG] Writer#Run Send Primary Message 20
2022-03-28 14:22:33.181 [DBG] Timer::StartT3Timer, SystemBytes=20
2022-03-28 14:22:33.181 [DBG] WriteSendMessage: StartT3Timer 20
2022-03-28 14:22:33.293 [DBG] Timer::StartTimer T8
2022-03-28 14:22:33.293 [DBG] Timer::StopTimer T8
2022-03-28 14:22:33.293 [DBG] Read Data: 13 -- 00 01 01 10 00 00 00 00 00 14 21 01 00
2022-03-28 14:22:33.293 [DBG] Reader#ByteToBlock Header: 00 01 01 10 00 00 00 00 00 14
2022-03-28 14:22:33.293 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 14:22:33.293 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:22:33.309 [DBG] Timer::StopT3Timer, SystemBytes=20
2022-03-28 14:22:33.847 [DBG] Writer#Run Send Primary Message 21
2022-03-28 14:22:33.847 [DBG] Timer::StartT3Timer, SystemBytes=21
2022-03-28 14:22:33.847 [DBG] WriteSendMessage: StartT3Timer 21
2022-03-28 14:22:33.959 [DBG] Timer::StartTimer T8
2022-03-28 14:22:33.959 [DBG] Timer::StopTimer T8
2022-03-28 14:22:33.959 [DBG] Read Data: 13 -- 00 01 01 12 00 00 00 00 00 15 21 01 00
2022-03-28 14:22:33.959 [DBG] Reader#ByteToBlock Header: 00 01 01 12 00 00 00 00 00 15
2022-03-28 14:22:33.959 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 14:22:33.959 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:22:33.975 [DBG] Timer::StopT3Timer, SystemBytes=21
2022-03-28 14:22:34.510 [DBG] Writer#Run Send Primary Message 22
2022-03-28 14:22:34.510 [DBG] Timer::StartT3Timer, SystemBytes=22
2022-03-28 14:22:34.510 [DBG] WriteSendMessage: StartT3Timer 22
2022-03-28 14:22:34.621 [DBG] Timer::StartTimer T8
2022-03-28 14:22:34.621 [DBG] Timer::StopTimer T8
2022-03-28 14:22:34.621 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 16 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-28 14:22:34.621 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 16
2022-03-28 14:22:34.621 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-28 14:22:34.621 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:22:34.637 [DBG] Timer::StopT3Timer, SystemBytes=22
2022-03-28 14:22:35.169 [DBG] Writer#Run Send Primary Message 23
2022-03-28 14:22:35.169 [DBG] Timer::StartT3Timer, SystemBytes=23
2022-03-28 14:22:35.169 [DBG] WriteSendMessage: StartT3Timer 23
2022-03-28 14:22:35.280 [DBG] Timer::StartTimer T8
2022-03-28 14:22:35.280 [DBG] Timer::StopTimer T8
2022-03-28 14:22:35.280 [DBG] Read Data: 13 -- 00 01 02 18 00 00 00 00 00 17 21 01 00
2022-03-28 14:22:35.280 [DBG] Reader#ByteToBlock Header: 00 01 02 18 00 00 00 00 00 17
2022-03-28 14:22:35.280 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 14:22:35.280 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:22:35.296 [DBG] Timer::StopT3Timer, SystemBytes=23
2022-03-28 14:22:48.698 [DBG] Timer::StartTimer T8
2022-03-28 14:22:48.698 [DBG] Timer::StopTimer T8
2022-03-28 14:22:48.698 [DBG] Read Data: 110 -- 00 01 86 0B 00 00 26 97 6C 9B 01 03 B1 04 00 00 00 00 B1 04 00 04 93 F6 01 02 B1 04 00 03 0D 56 01 0E 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 41 07 32 30 30 31 31 30 30 41 04 74 65 73 74 B1 04 00 00 07 D0 B1 04 00 00 03 E8 41 02 4F 4B A5 01 01 41 01 32 41 01 33 41 01 34 41 01 31 41 01 31 41 01 31
2022-03-28 14:22:48.698 [DBG] Reader#ByteToBlock Header: 00 01 86 0B 00 00 26 97 6C 9B
2022-03-28 14:22:48.698 [DBG] Reader#ByteToBlock Data: 01 03 B1 04 00 00 00 00 B1 04 00 04 93 F6 01 02 B1 04 00 03 0D 56 01 0E 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 41 07 32 30 30 31 31 30 30 41 04 74 65 73 74 B1 04 00 00 07 D0 B1 04 00 00 03 E8 41 02 4F 4B A5 01 01 41 01 32 41 01 33 41 01 34 41 01 31 41 01 31 41 01 31
2022-03-28 14:22:48.698 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:22:48.720 [DBG] Writer#Run Send Secondary Message 647457947
2022-03-28 14:23:37.451 [DBG] Timer::StartTimer T8
2022-03-28 14:23:37.451 [DBG] Timer::StopTimer T8
2022-03-28 14:23:37.451 [DBG] Read Data: 110 -- 00 01 86 0B 00 00 26 97 6C 9C 01 03 B1 04 00 00 00 00 B1 04 00 04 93 F6 01 02 B1 04 00 03 0D 56 01 0E 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 41 07 32 30 30 31 31 30 30 41 04 74 65 73 74 B1 04 00 00 07 D0 B1 04 00 00 03 E8 41 02 4F 4B A5 01 01 41 01 32 41 01 33 41 01 34 41 01 31 41 01 31 41 01 31
2022-03-28 14:23:37.451 [DBG] Reader#ByteToBlock Header: 00 01 86 0B 00 00 26 97 6C 9C
2022-03-28 14:23:37.451 [DBG] Reader#ByteToBlock Data: 01 03 B1 04 00 00 00 00 B1 04 00 04 93 F6 01 02 B1 04 00 03 0D 56 01 0E 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 41 07 32 30 30 31 31 30 30 41 04 74 65 73 74 B1 04 00 00 07 D0 B1 04 00 00 03 E8 41 02 4F 4B A5 01 01 41 01 32 41 01 33 41 01 34 41 01 31 41 01 31 41 01 31
2022-03-28 14:23:37.451 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:23:37.482 [DBG] Writer#Run Send Secondary Message 647457948
2022-03-28 14:24:01.550 [DBG] Timer::StartTimer T8
2022-03-28 14:24:01.550 [DBG] Timer::StopTimer T8
2022-03-28 14:24:01.550 [DBG] Read Data: 110 -- 00 01 86 0B 00 00 26 97 6C 9D 01 03 B1 04 00 00 00 00 B1 04 00 04 93 F6 01 02 B1 04 00 03 0D 56 01 0E 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 41 07 32 30 30 31 31 30 30 41 04 74 65 73 74 B1 04 00 00 07 D0 B1 04 00 00 03 E8 41 02 4F 4B A5 01 01 41 01 32 41 01 33 41 01 34 41 01 31 41 01 31 41 01 31
2022-03-28 14:24:01.550 [DBG] Reader#ByteToBlock Header: 00 01 86 0B 00 00 26 97 6C 9D
2022-03-28 14:24:01.550 [DBG] Reader#ByteToBlock Data: 01 03 B1 04 00 00 00 00 B1 04 00 04 93 F6 01 02 B1 04 00 03 0D 56 01 0E 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 41 07 32 30 30 31 31 30 30 41 04 74 65 73 74 B1 04 00 00 07 D0 B1 04 00 00 03 E8 41 02 4F 4B A5 01 01 41 01 32 41 01 33 41 01 34 41 01 31 41 01 31 41 01 31
2022-03-28 14:24:01.550 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:24:14.884 [DBG] Writer#Run Send Secondary Message 647457949
2022-03-28 14:24:21.924 [DBG] HSMSTimer::CheckOtherTimeout: 121.0052346, LinkTest
2022-03-28 14:24:24.491 [DBG] Timer::StartTimer T6
2022-03-28 14:24:24.491 [DBG] [WRITE] [SB:2130706433, LINKTEST_REQ] 00 00 00 0A FF FF 00 00 00 05 7F 00 00 01
2022-03-28 14:24:24.491 [DBG] Timer::StartTimer LinkTest
2022-03-28 14:24:24.494 [DBG] Timer::StartTimer T8
2022-03-28 14:24:24.494 [DBG] Timer::StopTimer T8
2022-03-28 14:24:24.494 [DBG] Read Data: 10 -- FF FF 00 00 00 06 7F 00 00 01
2022-03-28 14:24:24.494 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 06 7F 00 00 01
2022-03-28 14:24:24.494 [DBG] HSMSPort::OnReadHsms control message.
2022-03-28 14:24:24.494 [DBG] Timer::StopTimer T6
2022-03-28 14:24:47.067 [DBG] Timer::StartTimer T8
2022-03-28 14:24:47.067 [DBG] Timer::StopTimer T8
2022-03-28 14:24:47.067 [DBG] Read Data: 110 -- 00 01 86 0B 00 00 26 97 6C 9E 01 03 B1 04 00 00 00 00 B1 04 00 04 93 F6 01 02 B1 04 00 03 0D 56 01 0E 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 41 07 32 30 30 31 31 30 30 41 04 74 65 73 74 B1 04 00 00 07 D0 B1 04 00 00 03 E8 41 02 4F 4B A5 01 01 41 01 32 41 01 33 41 01 34 41 01 31 41 01 31 41 01 31
2022-03-28 14:24:47.067 [DBG] Reader#ByteToBlock Header: 00 01 86 0B 00 00 26 97 6C 9E
2022-03-28 14:24:47.067 [DBG] Reader#ByteToBlock Data: 01 03 B1 04 00 00 00 00 B1 04 00 04 93 F6 01 02 B1 04 00 03 0D 56 01 0E 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 41 07 32 30 30 31 31 30 30 41 04 74 65 73 74 B1 04 00 00 07 D0 B1 04 00 00 03 E8 41 02 4F 4B A5 01 01 41 01 32 41 01 33 41 01 34 41 01 31 41 01 31 41 01 31
2022-03-28 14:24:47.067 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 14:24:47.090 [DBG] Writer#Run Send Secondary Message 647457950
2022-03-28 14:26:46.300 [DBG] Start S9FxMonitor Thread.
2022-03-28 14:26:46.305 [DBG] S9FxMonitor Thread Status = True
2022-03-28 14:26:46.306 [DBG] HSMSPort::Initialize execute.
2022-03-28 14:26:46.307 [DBG] Start - Connector Thread.
2022-03-28 14:26:46.309 [DBG] - Connector Thread Status = True
2022-03-28 14:26:46.309 [DBG] Start ACOAT_01#Parser Thread.
2022-03-28 14:26:46.311 [DBG] ACOAT_01#Parser Thread Status = True
2022-03-28 14:26:46.317 [DBG] Start ACOAT_01#Timer Thread.
2022-03-28 14:26:46.317 [DBG] Completely Open the ACOAT_01 SECS Port
2022-03-28 14:26:46.319 [DBG] ACOAT_01#Timer Thread Status = True

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,290 @@
2022-03-28 16:31:09.023 [DBG] Start S9FxMonitor Thread.
2022-03-28 16:31:09.047 [DBG] HSMSPort::Initialize execute.
2022-03-28 16:31:09.047 [DBG] Start - Connector Thread.
2022-03-28 16:31:09.049 [DBG] S9FxMonitor Thread Status = True
2022-03-28 16:31:09.050 [DBG] Start ACOAT_01#Parser Thread.
2022-03-28 16:31:09.053 [DBG] - Connector Thread Status = True
2022-03-28 16:31:09.054 [DBG] Start ACOAT_01#Timer Thread.
2022-03-28 16:31:09.057 [DBG] ACOAT_01#Parser Thread Status = True
2022-03-28 16:31:09.058 [DBG] Completely Open the ACOAT_01 SECS Port
2022-03-28 16:31:09.058 [DBG] HSMSPort::OnConnected Status=CONNECTING
2022-03-28 16:31:09.059 [DBG] UpdateStatus: Prev:UNKNOWN=>Now:CONNECTING=>New:CONNECT
2022-03-28 16:31:09.059 [DBG] UpdateStatus: Prev:CONNECTING=>Now:CONNECT
2022-03-28 16:31:09.061 [DBG] ACOAT_01#Timer Thread Status = True
2022-03-28 16:31:09.062 [DBG] Start ACOAT_01#Reader Thread.
2022-03-28 16:31:09.062 [DBG] Start ACOAT_01#Writer Thread.
2022-03-28 16:31:09.064 [DBG] ACOAT_01#Reader Thread Status = True
2022-03-28 16:31:09.065 [DBG] Timer::StartTimer LinkTest
2022-03-28 16:31:09.065 [DBG] Timer::StartTimer T6
2022-03-28 16:31:09.065 [DBG] [WRITE] [SB:2130706432, SELECT_REQ] 00 00 00 0A FF FF 00 00 00 01 7F 00 00 00
2022-03-28 16:31:09.067 [DBG] ACOAT_01#Writer Thread Status = True
2022-03-28 16:31:09.130 [DBG] Timer::StartTimer T8
2022-03-28 16:31:09.130 [DBG] Timer::StopTimer T8
2022-03-28 16:31:09.130 [DBG] Read Data: 10 -- FF FF 00 00 00 02 7F 00 00 00
2022-03-28 16:31:09.130 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 02 7F 00 00 00
2022-03-28 16:31:09.131 [DBG] HSMSPort::OnReadHsms control message.
2022-03-28 16:31:09.131 [DBG] Timer::StopTimer T6
2022-03-28 16:31:09.131 [DBG] UpdateStatus: Prev:CONNECTING=>Now:CONNECT=>New:SELECT
2022-03-28 16:31:09.131 [DBG] UpdateStatus: Prev:CONNECT=>Now:SELECT
2022-03-28 16:31:09.145 [DBG] Writer#Run Send Primary Message 1
2022-03-28 16:31:09.145 [DBG] Timer::StartT3Timer, SystemBytes=1
2022-03-28 16:31:09.145 [DBG] WriteSendMessage: StartT3Timer 1
2022-03-28 16:31:09.254 [DBG] Timer::StartTimer T8
2022-03-28 16:31:09.254 [DBG] Timer::StopTimer T8
2022-03-28 16:31:09.254 [DBG] Read Data: 33 -- 00 01 01 0E 00 00 00 00 00 01 01 02 21 01 00 01 02 41 06 20 20 20 20 20 20 41 06 20 20 20 20 20 20
2022-03-28 16:31:09.254 [DBG] Reader#ByteToBlock Header: 00 01 01 0E 00 00 00 00 00 01
2022-03-28 16:31:09.254 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 02 41 06 20 20 20 20 20 20 41 06 20 20 20 20 20 20
2022-03-28 16:31:09.254 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:31:09.270 [DBG] Timer::StopT3Timer, SystemBytes=1
2022-03-28 16:31:09.806 [DBG] Writer#Run Send Primary Message 2
2022-03-28 16:31:09.806 [DBG] Timer::StartT3Timer, SystemBytes=2
2022-03-28 16:31:09.806 [DBG] WriteSendMessage: StartT3Timer 2
2022-03-28 16:31:09.897 [DBG] Timer::StartTimer T8
2022-03-28 16:31:09.897 [DBG] Timer::StopTimer T8
2022-03-28 16:31:09.897 [DBG] Read Data: 13 -- 00 01 01 12 00 00 00 00 00 02 21 01 00
2022-03-28 16:31:09.897 [DBG] Reader#ByteToBlock Header: 00 01 01 12 00 00 00 00 00 02
2022-03-28 16:31:09.897 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:31:09.897 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:31:09.912 [DBG] Timer::StopT3Timer, SystemBytes=2
2022-03-28 16:31:10.448 [DBG] Writer#Run Send Primary Message 3
2022-03-28 16:31:10.448 [DBG] Timer::StartT3Timer, SystemBytes=3
2022-03-28 16:31:10.448 [DBG] WriteSendMessage: StartT3Timer 3
2022-03-28 16:31:10.558 [DBG] Timer::StartTimer T8
2022-03-28 16:31:10.558 [DBG] Timer::StopTimer T8
2022-03-28 16:31:10.558 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 03 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-28 16:31:10.558 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 03
2022-03-28 16:31:10.558 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-28 16:31:10.558 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:31:10.574 [DBG] Timer::StopT3Timer, SystemBytes=3
2022-03-28 16:31:11.109 [DBG] Writer#Run Send Primary Message 4
2022-03-28 16:31:11.109 [DBG] Timer::StartT3Timer, SystemBytes=4
2022-03-28 16:31:11.109 [DBG] WriteSendMessage: StartT3Timer 4
2022-03-28 16:31:11.218 [DBG] Timer::StartTimer T8
2022-03-28 16:31:11.218 [DBG] Timer::StopTimer T8
2022-03-28 16:31:11.218 [DBG] Read Data: 13 -- 00 01 06 18 00 00 00 00 00 04 21 01 01
2022-03-28 16:31:11.218 [DBG] Reader#ByteToBlock Header: 00 01 06 18 00 00 00 00 00 04
2022-03-28 16:31:11.218 [DBG] Reader#ByteToBlock Data: 21 01 01
2022-03-28 16:31:11.218 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:31:11.234 [DBG] Timer::StopT3Timer, SystemBytes=4
2022-03-28 16:31:11.765 [DBG] Writer#Run Send Primary Message 5
2022-03-28 16:31:11.765 [DBG] Timer::StartT3Timer, SystemBytes=5
2022-03-28 16:31:11.765 [DBG] WriteSendMessage: StartT3Timer 5
2022-03-28 16:31:11.828 [DBG] Timer::StartTimer T8
2022-03-28 16:31:11.828 [DBG] Timer::StopTimer T8
2022-03-28 16:31:11.828 [DBG] Read Data: 17 -- 00 01 02 2C 00 00 00 00 00 05 01 02 21 01 00 01 00
2022-03-28 16:31:11.828 [DBG] Reader#ByteToBlock Header: 00 01 02 2C 00 00 00 00 00 05
2022-03-28 16:31:11.828 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 00
2022-03-28 16:31:11.828 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:31:11.843 [DBG] Timer::StopT3Timer, SystemBytes=5
2022-03-28 16:31:12.367 [DBG] Writer#Run Send Primary Message 6
2022-03-28 16:31:12.367 [DBG] Timer::StartT3Timer, SystemBytes=6
2022-03-28 16:31:12.367 [DBG] WriteSendMessage: StartT3Timer 6
2022-03-28 16:31:12.431 [DBG] Timer::StartTimer T8
2022-03-28 16:31:12.431 [DBG] Timer::StopTimer T8
2022-03-28 16:31:12.431 [DBG] Read Data: 13 -- 00 01 02 26 00 00 00 00 00 06 21 01 00
2022-03-28 16:31:12.431 [DBG] Reader#ByteToBlock Header: 00 01 02 26 00 00 00 00 00 06
2022-03-28 16:31:12.431 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:31:12.431 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:31:12.446 [DBG] Timer::StopT3Timer, SystemBytes=6
2022-03-28 16:31:12.970 [DBG] Writer#Run Send Primary Message 7
2022-03-28 16:31:12.970 [DBG] Timer::StartT3Timer, SystemBytes=7
2022-03-28 16:31:12.970 [DBG] WriteSendMessage: StartT3Timer 7
2022-03-28 16:31:13.034 [DBG] Timer::StartTimer T8
2022-03-28 16:31:13.034 [DBG] Timer::StopTimer T8
2022-03-28 16:31:13.034 [DBG] Read Data: 13 -- 00 01 02 24 00 00 00 00 00 07 21 01 00
2022-03-28 16:31:13.034 [DBG] Reader#ByteToBlock Header: 00 01 02 24 00 00 00 00 00 07
2022-03-28 16:31:13.034 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:31:13.034 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:31:13.049 [DBG] Timer::StopT3Timer, SystemBytes=7
2022-03-28 16:31:13.584 [DBG] Writer#Run Send Primary Message 8
2022-03-28 16:31:13.584 [DBG] Timer::StartT3Timer, SystemBytes=8
2022-03-28 16:31:13.584 [DBG] WriteSendMessage: StartT3Timer 8
2022-03-28 16:31:13.676 [DBG] Timer::StartTimer T8
2022-03-28 16:31:13.676 [DBG] Timer::StopTimer T8
2022-03-28 16:31:13.676 [DBG] Read Data: 13 -- 00 01 02 22 00 00 00 00 00 08 21 01 00
2022-03-28 16:31:13.676 [DBG] Reader#ByteToBlock Header: 00 01 02 22 00 00 00 00 00 08
2022-03-28 16:31:13.676 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:31:13.676 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:31:13.692 [DBG] Timer::StopT3Timer, SystemBytes=8
2022-03-28 16:31:14.228 [DBG] Writer#Run Send Primary Message 9
2022-03-28 16:31:14.228 [DBG] Timer::StartT3Timer, SystemBytes=9
2022-03-28 16:31:14.228 [DBG] WriteSendMessage: StartT3Timer 9
2022-03-28 16:31:14.334 [DBG] Timer::StartTimer T8
2022-03-28 16:31:14.334 [DBG] Timer::StopTimer T8
2022-03-28 16:31:14.334 [DBG] Read Data: 13 -- 00 01 05 04 00 00 00 00 00 09 21 01 00
2022-03-28 16:31:14.334 [DBG] Reader#ByteToBlock Header: 00 01 05 04 00 00 00 00 00 09
2022-03-28 16:31:14.334 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:31:14.334 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:31:14.349 [DBG] Timer::StopT3Timer, SystemBytes=9
2022-03-28 16:31:14.887 [DBG] Writer#Run Send Primary Message 10
2022-03-28 16:31:14.888 [DBG] Timer::StartT3Timer, SystemBytes=10
2022-03-28 16:31:14.888 [DBG] WriteSendMessage: StartT3Timer 10
2022-03-28 16:31:15.009 [DBG] Timer::StartTimer T8
2022-03-28 16:31:15.009 [DBG] Timer::StopTimer T8
2022-03-28 16:31:15.009 [DBG] Read Data: 13 -- 00 01 02 22 00 00 00 00 00 0A 21 01 00
2022-03-28 16:31:15.009 [DBG] Reader#ByteToBlock Header: 00 01 02 22 00 00 00 00 00 0A
2022-03-28 16:31:15.009 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:31:15.009 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:31:15.025 [DBG] Timer::StopT3Timer, SystemBytes=10
2022-03-28 16:31:15.554 [DBG] Writer#Run Send Primary Message 11
2022-03-28 16:31:15.554 [DBG] Timer::StartT3Timer, SystemBytes=11
2022-03-28 16:31:15.554 [DBG] WriteSendMessage: StartT3Timer 11
2022-03-28 16:31:15.665 [DBG] Timer::StartTimer T8
2022-03-28 16:31:15.665 [DBG] Timer::StopTimer T8
2022-03-28 16:31:15.665 [DBG] Read Data: 13 -- 00 01 02 24 00 00 00 00 00 0B 21 01 00
2022-03-28 16:31:15.665 [DBG] Reader#ByteToBlock Header: 00 01 02 24 00 00 00 00 00 0B
2022-03-28 16:31:15.665 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:31:15.665 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:31:15.681 [DBG] Timer::StopT3Timer, SystemBytes=11
2022-03-28 16:31:16.218 [DBG] Writer#Run Send Primary Message 12
2022-03-28 16:31:16.218 [DBG] Timer::StartT3Timer, SystemBytes=12
2022-03-28 16:31:16.218 [DBG] WriteSendMessage: StartT3Timer 12
2022-03-28 16:31:16.328 [DBG] Timer::StartTimer T8
2022-03-28 16:31:16.328 [DBG] Timer::StopTimer T8
2022-03-28 16:31:16.328 [DBG] Read Data: 13 -- 00 01 02 26 00 00 00 00 00 0C 21 01 00
2022-03-28 16:31:16.328 [DBG] Reader#ByteToBlock Header: 00 01 02 26 00 00 00 00 00 0C
2022-03-28 16:31:16.328 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:31:16.328 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:31:16.344 [DBG] Timer::StopT3Timer, SystemBytes=12
2022-03-28 16:31:16.868 [DBG] Writer#Run Send Primary Message 13
2022-03-28 16:31:16.868 [DBG] Timer::StartT3Timer, SystemBytes=13
2022-03-28 16:31:16.868 [DBG] WriteSendMessage: StartT3Timer 13
2022-03-28 16:31:16.946 [DBG] Timer::StartTimer T8
2022-03-28 16:31:16.946 [DBG] Timer::StopTimer T8
2022-03-28 16:31:16.946 [DBG] Read Data: 13 -- 00 01 05 04 00 00 00 00 00 0D 21 01 00
2022-03-28 16:31:16.946 [DBG] Reader#ByteToBlock Header: 00 01 05 04 00 00 00 00 00 0D
2022-03-28 16:31:16.946 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:31:16.946 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:31:16.962 [DBG] Timer::StopT3Timer, SystemBytes=13
2022-03-28 16:31:17.499 [DBG] Writer#Run Send Primary Message 14
2022-03-28 16:31:17.499 [DBG] Timer::StartT3Timer, SystemBytes=14
2022-03-28 16:31:17.499 [DBG] WriteSendMessage: StartT3Timer 14
2022-03-28 16:31:17.608 [DBG] Timer::StartTimer T8
2022-03-28 16:31:17.608 [DBG] Timer::StopTimer T8
2022-03-28 16:31:17.608 [DBG] Read Data: 17 -- 00 01 02 2C 00 00 00 00 00 0E 01 02 21 01 00 01 00
2022-03-28 16:31:17.608 [DBG] Reader#ByteToBlock Header: 00 01 02 2C 00 00 00 00 00 0E
2022-03-28 16:31:17.608 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 00
2022-03-28 16:31:17.608 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:31:17.624 [DBG] Timer::StopT3Timer, SystemBytes=14
2022-03-28 16:31:18.159 [DBG] Writer#Run Send Primary Message 15
2022-03-28 16:31:18.159 [DBG] Timer::StartT3Timer, SystemBytes=15
2022-03-28 16:31:18.159 [DBG] WriteSendMessage: StartT3Timer 15
2022-03-28 16:31:18.271 [DBG] Timer::StartTimer T8
2022-03-28 16:31:18.271 [DBG] Timer::StopTimer T8
2022-03-28 16:31:18.271 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 0F 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-28 16:31:18.271 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 0F
2022-03-28 16:31:18.271 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-28 16:31:18.271 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:31:18.286 [DBG] Timer::StopT3Timer, SystemBytes=15
2022-03-28 16:31:18.823 [DBG] Writer#Run Send Primary Message 16
2022-03-28 16:31:18.823 [DBG] Timer::StartT3Timer, SystemBytes=16
2022-03-28 16:31:18.823 [DBG] WriteSendMessage: StartT3Timer 16
2022-03-28 16:31:18.887 [DBG] Timer::StartTimer T8
2022-03-28 16:31:18.887 [DBG] Timer::StopTimer T8
2022-03-28 16:31:18.887 [DBG] Read Data: 198 -- 00 01 05 06 00 00 00 00 00 10 01 02 01 03 21 01 01 B1 04 00 00 00 0A 41 50 74 65 73 74 31 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01 03 21 01 02 B1 04 00 00 00 0B 41 50 74 65 73 74 32 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
2022-03-28 16:31:18.887 [DBG] Reader#ByteToBlock Header: 00 01 05 06 00 00 00 00 00 10
2022-03-28 16:31:18.887 [DBG] Reader#ByteToBlock Data: 01 02 01 03 21 01 01 B1 04 00 00 00 0A 41 50 74 65 73 74 31 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01 03 21 01 02 B1 04 00 00 00 0B 41 50 74 65 73 74 32 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
2022-03-28 16:31:18.887 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:31:18.903 [DBG] Timer::StopT3Timer, SystemBytes=16
2022-03-28 16:31:19.439 [DBG] Writer#Run Send Primary Message 17
2022-03-28 16:31:19.439 [DBG] Timer::StartT3Timer, SystemBytes=17
2022-03-28 16:31:19.439 [DBG] WriteSendMessage: StartT3Timer 17
2022-03-28 16:31:19.547 [DBG] Timer::StartTimer T8
2022-03-28 16:31:19.547 [DBG] Timer::StopTimer T8
2022-03-28 16:31:19.547 [DBG] Read Data: 54 -- 00 01 07 14 00 00 00 00 00 11 01 06 41 05 74 65 73 74 31 41 05 74 65 73 74 32 41 05 74 65 73 74 33 41 05 74 65 73 74 34 41 05 74 65 73 74 35 41 05 74 65 73 74 36
2022-03-28 16:31:19.547 [DBG] Reader#ByteToBlock Header: 00 01 07 14 00 00 00 00 00 11
2022-03-28 16:31:19.547 [DBG] Reader#ByteToBlock Data: 01 06 41 05 74 65 73 74 31 41 05 74 65 73 74 32 41 05 74 65 73 74 33 41 05 74 65 73 74 34 41 05 74 65 73 74 35 41 05 74 65 73 74 36
2022-03-28 16:31:19.547 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:31:19.563 [DBG] Timer::StopT3Timer, SystemBytes=17
2022-03-28 16:31:20.098 [DBG] Writer#Run Send Primary Message 18
2022-03-28 16:31:20.098 [DBG] Timer::StartT3Timer, SystemBytes=18
2022-03-28 16:31:20.098 [DBG] WriteSendMessage: StartT3Timer 18
2022-03-28 16:31:20.191 [DBG] Timer::StartTimer T8
2022-03-28 16:31:20.191 [DBG] Timer::StopTimer T8
2022-03-28 16:31:20.191 [DBG] Read Data: 96 -- 00 01 02 0E 00 00 00 00 00 12 01 0E B1 04 00 00 00 01 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 00 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05
2022-03-28 16:31:20.191 [DBG] Reader#ByteToBlock Header: 00 01 02 0E 00 00 00 00 00 12
2022-03-28 16:31:20.191 [DBG] Reader#ByteToBlock Data: 01 0E B1 04 00 00 00 01 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 00 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05
2022-03-28 16:31:20.191 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:31:20.206 [DBG] Timer::StopT3Timer, SystemBytes=18
2022-03-28 16:31:20.730 [DBG] Writer#Run Send Primary Message 19
2022-03-28 16:31:20.730 [DBG] Timer::StartT3Timer, SystemBytes=19
2022-03-28 16:31:20.730 [DBG] WriteSendMessage: StartT3Timer 19
2022-03-28 16:31:20.810 [DBG] Timer::StartTimer T8
2022-03-28 16:31:20.810 [DBG] Timer::StopTimer T8
2022-03-28 16:31:20.810 [DBG] Read Data: 13 -- 00 01 02 10 00 00 00 00 00 13 21 01 00
2022-03-28 16:31:20.810 [DBG] Reader#ByteToBlock Header: 00 01 02 10 00 00 00 00 00 13
2022-03-28 16:31:20.810 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:31:20.810 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:31:20.826 [DBG] Timer::StopT3Timer, SystemBytes=19
2022-03-28 16:31:21.360 [DBG] Writer#Run Send Primary Message 20
2022-03-28 16:31:21.360 [DBG] Timer::StartT3Timer, SystemBytes=20
2022-03-28 16:31:21.360 [DBG] WriteSendMessage: StartT3Timer 20
2022-03-28 16:31:21.467 [DBG] Timer::StartTimer T8
2022-03-28 16:31:21.467 [DBG] Timer::StopTimer T8
2022-03-28 16:31:21.467 [DBG] Read Data: 13 -- 00 01 01 10 00 00 00 00 00 14 21 01 00
2022-03-28 16:31:21.467 [DBG] Reader#ByteToBlock Header: 00 01 01 10 00 00 00 00 00 14
2022-03-28 16:31:21.467 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:31:21.467 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:31:21.483 [DBG] Timer::StopT3Timer, SystemBytes=20
2022-03-28 16:31:22.013 [DBG] Writer#Run Send Primary Message 21
2022-03-28 16:31:22.013 [DBG] Timer::StartT3Timer, SystemBytes=21
2022-03-28 16:31:22.013 [DBG] WriteSendMessage: StartT3Timer 21
2022-03-28 16:31:22.092 [DBG] Timer::StartTimer T8
2022-03-28 16:31:22.092 [DBG] Timer::StopTimer T8
2022-03-28 16:31:22.092 [DBG] Read Data: 13 -- 00 01 01 12 00 00 00 00 00 15 21 01 00
2022-03-28 16:31:22.092 [DBG] Reader#ByteToBlock Header: 00 01 01 12 00 00 00 00 00 15
2022-03-28 16:31:22.092 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:31:22.092 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:31:22.107 [DBG] Timer::StopT3Timer, SystemBytes=21
2022-03-28 16:31:22.646 [DBG] Writer#Run Send Primary Message 22
2022-03-28 16:31:22.646 [DBG] Timer::StartT3Timer, SystemBytes=22
2022-03-28 16:31:22.646 [DBG] WriteSendMessage: StartT3Timer 22
2022-03-28 16:31:22.754 [DBG] Timer::StartTimer T8
2022-03-28 16:31:22.754 [DBG] Timer::StopTimer T8
2022-03-28 16:31:22.754 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 16 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-28 16:31:22.754 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 16
2022-03-28 16:31:22.754 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-28 16:31:22.754 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:31:22.769 [DBG] Timer::StopT3Timer, SystemBytes=22
2022-03-28 16:31:23.298 [DBG] Writer#Run Send Primary Message 23
2022-03-28 16:31:23.298 [DBG] Timer::StartT3Timer, SystemBytes=23
2022-03-28 16:31:23.298 [DBG] WriteSendMessage: StartT3Timer 23
2022-03-28 16:31:23.410 [DBG] Timer::StartTimer T8
2022-03-28 16:31:23.410 [DBG] Timer::StopTimer T8
2022-03-28 16:31:23.410 [DBG] Read Data: 13 -- 00 01 02 18 00 00 00 00 00 17 21 01 00
2022-03-28 16:31:23.410 [DBG] Reader#ByteToBlock Header: 00 01 02 18 00 00 00 00 00 17
2022-03-28 16:31:23.410 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:31:23.410 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:31:23.426 [DBG] Timer::StopT3Timer, SystemBytes=23
2022-03-28 16:31:32.979 [DBG] Start to Close the ACOAT_01 SECS Port
2022-03-28 16:31:32.979 [DBG] UpdateStatus: Prev:CONNECT=>Now:SELECT=>New:TERMINATE
2022-03-28 16:31:32.979 [DBG] UpdateStatus: Prev:SELECT=>Now:TERMINATE
2022-03-28 16:31:32.979 [DBG] Terminate ACOAT_01#Reader Thread.
2022-03-28 16:31:32.979 [DBG] [WRITE] [SB:2130706433, SEPARATE] 00 00 00 0A FF FF 00 00 00 09 7F 00 00 01
2022-03-28 16:31:33.043 [DBG] Terminate ACOAT_01#Parser Thread.
2022-03-28 16:31:33.043 [DBG] Terminate - Connector Thread.
2022-03-28 16:31:33.043 [DBG] Terminate ACOAT_01#Writer Thread.
2022-03-28 16:31:33.059 [DBG] ACOAT_01#Parser Thread Status = False
2022-03-28 16:31:33.059 [DBG] ACOAT_01#Writer Thread Status = False
2022-03-28 16:31:33.135 [DBG] Terminate ACOAT_01#Timer Thread.
2022-03-28 16:31:33.135 [DBG] Timer::StopTimer LinkTest
2022-03-28 16:31:33.135 [DBG] Timer::StopTimer T6
2022-03-28 16:31:33.135 [DBG] HSMSPort::TerminateSocket execute.
2022-03-28 16:31:33.154 [DBG] Terminate ACOAT_01#Reader Thread.
2022-03-28 16:31:33.154 [DBG] Reader#FireDisconnect Invoked.
2022-03-28 16:31:33.154 [DBG] ACOAT_01#Reader Thread Status = False
2022-03-28 16:31:33.226 [DBG] Terminate S9FxMonitor Thread.
2022-03-28 16:31:33.226 [DBG] Completely Close the ACOAT_01 SECS Port
2022-03-28 16:31:33.381 [DBG] S9FxMonitor Thread Status = False
2022-03-28 16:31:33.980 [DBG] ACOAT_01#Timer Thread Status = False
2022-03-28 16:31:42.990 [DBG] - Connector Thread Status = False
2022-03-28 16:32:22.513 [DBG] Start S9FxMonitor Thread.
2022-03-28 16:32:22.517 [DBG] S9FxMonitor Thread Status = True
2022-03-28 16:32:22.517 [DBG] HSMSPort::Initialize execute.
2022-03-28 16:32:22.518 [DBG] Start - Connector Thread.
2022-03-28 16:32:22.520 [DBG] - Connector Thread Status = True
2022-03-28 16:32:22.520 [DBG] Start ACOAT_01#Parser Thread.
2022-03-28 16:32:22.522 [DBG] ACOAT_01#Parser Thread Status = True
2022-03-28 16:32:22.527 [DBG] Start ACOAT_01#Timer Thread.
2022-03-28 16:32:22.528 [DBG] Completely Open the ACOAT_01 SECS Port
2022-03-28 16:32:22.529 [DBG] ACOAT_01#Timer Thread Status = True

View File

@@ -0,0 +1,543 @@
2022-03-28 16:32:31.640 [DBG] Start S9FxMonitor Thread.
2022-03-28 16:32:31.665 [DBG] HSMSPort::Initialize execute.
2022-03-28 16:32:31.665 [DBG] Start - Connector Thread.
2022-03-28 16:32:31.666 [DBG] S9FxMonitor Thread Status = True
2022-03-28 16:32:31.667 [DBG] Start ACOAT_01#Parser Thread.
2022-03-28 16:32:31.669 [DBG] - Connector Thread Status = True
2022-03-28 16:32:31.671 [DBG] Start ACOAT_01#Timer Thread.
2022-03-28 16:32:31.672 [DBG] ACOAT_01#Parser Thread Status = True
2022-03-28 16:32:31.673 [DBG] Completely Open the ACOAT_01 SECS Port
2022-03-28 16:32:31.674 [DBG] HSMSPort::OnConnected Status=CONNECTING
2022-03-28 16:32:31.674 [DBG] UpdateStatus: Prev:UNKNOWN=>Now:CONNECTING=>New:CONNECT
2022-03-28 16:32:31.674 [DBG] UpdateStatus: Prev:CONNECTING=>Now:CONNECT
2022-03-28 16:32:31.675 [DBG] ACOAT_01#Timer Thread Status = True
2022-03-28 16:32:31.676 [DBG] Start ACOAT_01#Reader Thread.
2022-03-28 16:32:31.679 [DBG] ACOAT_01#Reader Thread Status = True
2022-03-28 16:32:31.681 [DBG] Start ACOAT_01#Writer Thread.
2022-03-28 16:32:31.683 [DBG] ACOAT_01#Writer Thread Status = True
2022-03-28 16:32:31.684 [DBG] Timer::StartTimer LinkTest
2022-03-28 16:32:31.684 [DBG] Timer::StartTimer T6
2022-03-28 16:32:31.686 [DBG] [WRITE] [SB:2130706432, SELECT_REQ] 00 00 00 0A FF FF 00 00 00 01 7F 00 00 00
2022-03-28 16:32:31.738 [DBG] Timer::StartTimer T8
2022-03-28 16:32:31.740 [DBG] Timer::StopTimer T8
2022-03-28 16:32:31.740 [DBG] Read Data: 10 -- FF FF 00 00 00 02 7F 00 00 00
2022-03-28 16:32:31.740 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 02 7F 00 00 00
2022-03-28 16:32:31.741 [DBG] HSMSPort::OnReadHsms control message.
2022-03-28 16:32:31.741 [DBG] Timer::StopTimer T6
2022-03-28 16:32:31.741 [DBG] UpdateStatus: Prev:CONNECTING=>Now:CONNECT=>New:SELECT
2022-03-28 16:32:31.741 [DBG] UpdateStatus: Prev:CONNECT=>Now:SELECT
2022-03-28 16:32:31.768 [DBG] Writer#Run Send Primary Message 1
2022-03-28 16:32:31.776 [DBG] Timer::StartT3Timer, SystemBytes=1
2022-03-28 16:32:31.776 [DBG] WriteSendMessage: StartT3Timer 1
2022-03-28 16:32:31.859 [DBG] Timer::StartTimer T8
2022-03-28 16:32:31.859 [DBG] Timer::StopTimer T8
2022-03-28 16:32:31.859 [DBG] Read Data: 33 -- 00 01 01 0E 00 00 00 00 00 01 01 02 21 01 00 01 02 41 06 20 20 20 20 20 20 41 06 20 20 20 20 20 20
2022-03-28 16:32:31.859 [DBG] Reader#ByteToBlock Header: 00 01 01 0E 00 00 00 00 00 01
2022-03-28 16:32:31.859 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 02 41 06 20 20 20 20 20 20 41 06 20 20 20 20 20 20
2022-03-28 16:32:31.859 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:32:31.882 [DBG] Timer::StopT3Timer, SystemBytes=1
2022-03-28 16:32:32.414 [DBG] Writer#Run Send Primary Message 2
2022-03-28 16:32:32.414 [DBG] Timer::StartT3Timer, SystemBytes=2
2022-03-28 16:32:32.414 [DBG] WriteSendMessage: StartT3Timer 2
2022-03-28 16:32:32.526 [DBG] Timer::StartTimer T8
2022-03-28 16:32:32.526 [DBG] Timer::StopTimer T8
2022-03-28 16:32:32.526 [DBG] Read Data: 13 -- 00 01 01 12 00 00 00 00 00 02 21 01 00
2022-03-28 16:32:32.526 [DBG] Reader#ByteToBlock Header: 00 01 01 12 00 00 00 00 00 02
2022-03-28 16:32:32.526 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:32:32.526 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:32:32.542 [DBG] Timer::StopT3Timer, SystemBytes=2
2022-03-28 16:32:33.075 [DBG] Writer#Run Send Primary Message 3
2022-03-28 16:32:33.075 [DBG] Timer::StartT3Timer, SystemBytes=3
2022-03-28 16:32:33.075 [DBG] WriteSendMessage: StartT3Timer 3
2022-03-28 16:32:33.167 [DBG] Timer::StartTimer T8
2022-03-28 16:32:33.167 [DBG] Timer::StopTimer T8
2022-03-28 16:32:33.167 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 03 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-28 16:32:33.167 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 03
2022-03-28 16:32:33.167 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-28 16:32:33.167 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:32:33.183 [DBG] Timer::StopT3Timer, SystemBytes=3
2022-03-28 16:32:33.713 [DBG] Writer#Run Send Primary Message 4
2022-03-28 16:32:33.713 [DBG] Timer::StartT3Timer, SystemBytes=4
2022-03-28 16:32:33.713 [DBG] WriteSendMessage: StartT3Timer 4
2022-03-28 16:32:33.774 [DBG] Timer::StartTimer T8
2022-03-28 16:32:33.774 [DBG] Timer::StopTimer T8
2022-03-28 16:32:33.774 [DBG] Read Data: 13 -- 00 01 06 18 00 00 00 00 00 04 21 01 01
2022-03-28 16:32:33.774 [DBG] Reader#ByteToBlock Header: 00 01 06 18 00 00 00 00 00 04
2022-03-28 16:32:33.774 [DBG] Reader#ByteToBlock Data: 21 01 01
2022-03-28 16:32:33.774 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:32:33.790 [DBG] Timer::StopT3Timer, SystemBytes=4
2022-03-28 16:32:34.327 [DBG] Writer#Run Send Primary Message 5
2022-03-28 16:32:34.327 [DBG] Timer::StartT3Timer, SystemBytes=5
2022-03-28 16:32:34.327 [DBG] WriteSendMessage: StartT3Timer 5
2022-03-28 16:32:34.407 [DBG] Timer::StartTimer T8
2022-03-28 16:32:34.407 [DBG] Timer::StopTimer T8
2022-03-28 16:32:34.407 [DBG] Read Data: 17 -- 00 01 02 2C 00 00 00 00 00 05 01 02 21 01 00 01 00
2022-03-28 16:32:34.407 [DBG] Reader#ByteToBlock Header: 00 01 02 2C 00 00 00 00 00 05
2022-03-28 16:32:34.407 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 00
2022-03-28 16:32:34.407 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:32:34.423 [DBG] Timer::StopT3Timer, SystemBytes=5
2022-03-28 16:32:34.960 [DBG] Writer#Run Send Primary Message 6
2022-03-28 16:32:34.960 [DBG] Timer::StartT3Timer, SystemBytes=6
2022-03-28 16:32:34.960 [DBG] WriteSendMessage: StartT3Timer 6
2022-03-28 16:32:35.087 [DBG] Timer::StartTimer T8
2022-03-28 16:32:35.087 [DBG] Timer::StopTimer T8
2022-03-28 16:32:35.087 [DBG] Read Data: 13 -- 00 01 02 26 00 00 00 00 00 06 21 01 00
2022-03-28 16:32:35.087 [DBG] Reader#ByteToBlock Header: 00 01 02 26 00 00 00 00 00 06
2022-03-28 16:32:35.087 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:32:35.087 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:32:35.103 [DBG] Timer::StopT3Timer, SystemBytes=6
2022-03-28 16:32:35.639 [DBG] Writer#Run Send Primary Message 7
2022-03-28 16:32:35.639 [DBG] Timer::StartT3Timer, SystemBytes=7
2022-03-28 16:32:35.639 [DBG] WriteSendMessage: StartT3Timer 7
2022-03-28 16:32:35.747 [DBG] Timer::StartTimer T8
2022-03-28 16:32:35.747 [DBG] Timer::StopTimer T8
2022-03-28 16:32:35.747 [DBG] Read Data: 13 -- 00 01 02 24 00 00 00 00 00 07 21 01 00
2022-03-28 16:32:35.747 [DBG] Reader#ByteToBlock Header: 00 01 02 24 00 00 00 00 00 07
2022-03-28 16:32:35.747 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:32:35.747 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:32:35.762 [DBG] Timer::StopT3Timer, SystemBytes=7
2022-03-28 16:32:36.288 [DBG] Writer#Run Send Primary Message 8
2022-03-28 16:32:36.288 [DBG] Timer::StartT3Timer, SystemBytes=8
2022-03-28 16:32:36.288 [DBG] WriteSendMessage: StartT3Timer 8
2022-03-28 16:32:36.366 [DBG] Timer::StartTimer T8
2022-03-28 16:32:36.366 [DBG] Timer::StopTimer T8
2022-03-28 16:32:36.366 [DBG] Read Data: 13 -- 00 01 02 22 00 00 00 00 00 08 21 01 00
2022-03-28 16:32:36.366 [DBG] Reader#ByteToBlock Header: 00 01 02 22 00 00 00 00 00 08
2022-03-28 16:32:36.366 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:32:36.366 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:32:36.382 [DBG] Timer::StopT3Timer, SystemBytes=8
2022-03-28 16:32:36.918 [DBG] Writer#Run Send Primary Message 9
2022-03-28 16:32:36.918 [DBG] Timer::StartT3Timer, SystemBytes=9
2022-03-28 16:32:36.918 [DBG] WriteSendMessage: StartT3Timer 9
2022-03-28 16:32:36.998 [DBG] Timer::StartTimer T8
2022-03-28 16:32:36.998 [DBG] Timer::StopTimer T8
2022-03-28 16:32:36.998 [DBG] Read Data: 13 -- 00 01 05 04 00 00 00 00 00 09 21 01 00
2022-03-28 16:32:36.998 [DBG] Reader#ByteToBlock Header: 00 01 05 04 00 00 00 00 00 09
2022-03-28 16:32:36.998 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:32:36.998 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:32:37.014 [DBG] Timer::StopT3Timer, SystemBytes=9
2022-03-28 16:32:37.548 [DBG] Writer#Run Send Primary Message 10
2022-03-28 16:32:37.548 [DBG] Timer::StartT3Timer, SystemBytes=10
2022-03-28 16:32:37.548 [DBG] WriteSendMessage: StartT3Timer 10
2022-03-28 16:32:37.674 [DBG] Timer::StartTimer T8
2022-03-28 16:32:37.674 [DBG] Timer::StopTimer T8
2022-03-28 16:32:37.674 [DBG] Read Data: 13 -- 00 01 02 22 00 00 00 00 00 0A 21 01 00
2022-03-28 16:32:37.674 [DBG] Reader#ByteToBlock Header: 00 01 02 22 00 00 00 00 00 0A
2022-03-28 16:32:37.674 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:32:37.674 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:32:37.690 [DBG] Timer::StopT3Timer, SystemBytes=10
2022-03-28 16:32:38.215 [DBG] Writer#Run Send Primary Message 11
2022-03-28 16:32:38.215 [DBG] Timer::StartT3Timer, SystemBytes=11
2022-03-28 16:32:38.215 [DBG] WriteSendMessage: StartT3Timer 11
2022-03-28 16:32:38.292 [DBG] Timer::StartTimer T8
2022-03-28 16:32:38.292 [DBG] Timer::StopTimer T8
2022-03-28 16:32:38.292 [DBG] Read Data: 13 -- 00 01 02 24 00 00 00 00 00 0B 21 01 00
2022-03-28 16:32:38.292 [DBG] Reader#ByteToBlock Header: 00 01 02 24 00 00 00 00 00 0B
2022-03-28 16:32:38.292 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:32:38.292 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:32:38.308 [DBG] Timer::StopT3Timer, SystemBytes=11
2022-03-28 16:32:38.844 [DBG] Writer#Run Send Primary Message 12
2022-03-28 16:32:38.844 [DBG] Timer::StartT3Timer, SystemBytes=12
2022-03-28 16:32:38.844 [DBG] WriteSendMessage: StartT3Timer 12
2022-03-28 16:32:38.955 [DBG] Timer::StartTimer T8
2022-03-28 16:32:38.955 [DBG] Timer::StopTimer T8
2022-03-28 16:32:38.955 [DBG] Read Data: 13 -- 00 01 02 26 00 00 00 00 00 0C 21 01 00
2022-03-28 16:32:38.955 [DBG] Reader#ByteToBlock Header: 00 01 02 26 00 00 00 00 00 0C
2022-03-28 16:32:38.955 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:32:38.955 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:32:38.971 [DBG] Timer::StopT3Timer, SystemBytes=12
2022-03-28 16:32:39.503 [DBG] Writer#Run Send Primary Message 13
2022-03-28 16:32:39.503 [DBG] Timer::StartT3Timer, SystemBytes=13
2022-03-28 16:32:39.503 [DBG] WriteSendMessage: StartT3Timer 13
2022-03-28 16:32:39.613 [DBG] Timer::StartTimer T8
2022-03-28 16:32:39.613 [DBG] Timer::StopTimer T8
2022-03-28 16:32:39.613 [DBG] Read Data: 13 -- 00 01 05 04 00 00 00 00 00 0D 21 01 00
2022-03-28 16:32:39.613 [DBG] Reader#ByteToBlock Header: 00 01 05 04 00 00 00 00 00 0D
2022-03-28 16:32:39.613 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:32:39.613 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:32:39.629 [DBG] Timer::StopT3Timer, SystemBytes=13
2022-03-28 16:32:40.163 [DBG] Writer#Run Send Primary Message 14
2022-03-28 16:32:40.163 [DBG] Timer::StartT3Timer, SystemBytes=14
2022-03-28 16:32:40.163 [DBG] WriteSendMessage: StartT3Timer 14
2022-03-28 16:32:40.243 [DBG] Timer::StartTimer T8
2022-03-28 16:32:40.243 [DBG] Timer::StopTimer T8
2022-03-28 16:32:40.243 [DBG] Read Data: 17 -- 00 01 02 2C 00 00 00 00 00 0E 01 02 21 01 00 01 00
2022-03-28 16:32:40.243 [DBG] Reader#ByteToBlock Header: 00 01 02 2C 00 00 00 00 00 0E
2022-03-28 16:32:40.243 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 00
2022-03-28 16:32:40.243 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:32:40.259 [DBG] Timer::StopT3Timer, SystemBytes=14
2022-03-28 16:32:40.798 [DBG] Writer#Run Send Primary Message 15
2022-03-28 16:32:40.798 [DBG] Timer::StartT3Timer, SystemBytes=15
2022-03-28 16:32:40.798 [DBG] WriteSendMessage: StartT3Timer 15
2022-03-28 16:32:40.905 [DBG] Timer::StartTimer T8
2022-03-28 16:32:40.905 [DBG] Timer::StopTimer T8
2022-03-28 16:32:40.905 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 0F 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-28 16:32:40.905 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 0F
2022-03-28 16:32:40.905 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-28 16:32:40.905 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:32:40.921 [DBG] Timer::StopT3Timer, SystemBytes=15
2022-03-28 16:32:41.458 [DBG] Writer#Run Send Primary Message 16
2022-03-28 16:32:41.458 [DBG] Timer::StartT3Timer, SystemBytes=16
2022-03-28 16:32:41.458 [DBG] WriteSendMessage: StartT3Timer 16
2022-03-28 16:32:41.538 [DBG] Timer::StartTimer T8
2022-03-28 16:32:41.538 [DBG] Timer::StopTimer T8
2022-03-28 16:32:41.538 [DBG] Read Data: 198 -- 00 01 05 06 00 00 00 00 00 10 01 02 01 03 21 01 01 B1 04 00 00 00 0A 41 50 74 65 73 74 31 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01 03 21 01 02 B1 04 00 00 00 0B 41 50 74 65 73 74 32 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
2022-03-28 16:32:41.538 [DBG] Reader#ByteToBlock Header: 00 01 05 06 00 00 00 00 00 10
2022-03-28 16:32:41.538 [DBG] Reader#ByteToBlock Data: 01 02 01 03 21 01 01 B1 04 00 00 00 0A 41 50 74 65 73 74 31 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01 03 21 01 02 B1 04 00 00 00 0B 41 50 74 65 73 74 32 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
2022-03-28 16:32:41.538 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:32:41.554 [DBG] Timer::StopT3Timer, SystemBytes=16
2022-03-28 16:32:42.092 [DBG] Writer#Run Send Primary Message 17
2022-03-28 16:32:42.092 [DBG] Timer::StartT3Timer, SystemBytes=17
2022-03-28 16:32:42.092 [DBG] WriteSendMessage: StartT3Timer 17
2022-03-28 16:32:42.199 [DBG] Timer::StartTimer T8
2022-03-28 16:32:42.199 [DBG] Timer::StopTimer T8
2022-03-28 16:32:42.199 [DBG] Read Data: 54 -- 00 01 07 14 00 00 00 00 00 11 01 06 41 05 74 65 73 74 31 41 05 74 65 73 74 32 41 05 74 65 73 74 33 41 05 74 65 73 74 34 41 05 74 65 73 74 35 41 05 74 65 73 74 36
2022-03-28 16:32:42.199 [DBG] Reader#ByteToBlock Header: 00 01 07 14 00 00 00 00 00 11
2022-03-28 16:32:42.199 [DBG] Reader#ByteToBlock Data: 01 06 41 05 74 65 73 74 31 41 05 74 65 73 74 32 41 05 74 65 73 74 33 41 05 74 65 73 74 34 41 05 74 65 73 74 35 41 05 74 65 73 74 36
2022-03-28 16:32:42.199 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:32:42.214 [DBG] Timer::StopT3Timer, SystemBytes=17
2022-03-28 16:32:42.740 [DBG] Writer#Run Send Primary Message 18
2022-03-28 16:32:42.740 [DBG] Timer::StartT3Timer, SystemBytes=18
2022-03-28 16:32:42.740 [DBG] WriteSendMessage: StartT3Timer 18
2022-03-28 16:32:42.864 [DBG] Timer::StartTimer T8
2022-03-28 16:32:42.864 [DBG] Timer::StopTimer T8
2022-03-28 16:32:42.864 [DBG] Read Data: 96 -- 00 01 02 0E 00 00 00 00 00 12 01 0E B1 04 00 00 00 01 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 00 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05
2022-03-28 16:32:42.864 [DBG] Reader#ByteToBlock Header: 00 01 02 0E 00 00 00 00 00 12
2022-03-28 16:32:42.864 [DBG] Reader#ByteToBlock Data: 01 0E B1 04 00 00 00 01 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 00 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05
2022-03-28 16:32:42.864 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:32:42.880 [DBG] Timer::StopT3Timer, SystemBytes=18
2022-03-28 16:32:43.415 [DBG] Writer#Run Send Primary Message 19
2022-03-28 16:32:43.415 [DBG] Timer::StartT3Timer, SystemBytes=19
2022-03-28 16:32:43.415 [DBG] WriteSendMessage: StartT3Timer 19
2022-03-28 16:32:43.506 [DBG] Timer::StartTimer T8
2022-03-28 16:32:43.506 [DBG] Timer::StopTimer T8
2022-03-28 16:32:43.506 [DBG] Read Data: 13 -- 00 01 02 10 00 00 00 00 00 13 21 01 00
2022-03-28 16:32:43.506 [DBG] Reader#ByteToBlock Header: 00 01 02 10 00 00 00 00 00 13
2022-03-28 16:32:43.506 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:32:43.506 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:32:43.521 [DBG] Timer::StopT3Timer, SystemBytes=19
2022-03-28 16:32:44.057 [DBG] Writer#Run Send Primary Message 20
2022-03-28 16:32:44.057 [DBG] Timer::StartT3Timer, SystemBytes=20
2022-03-28 16:32:44.057 [DBG] WriteSendMessage: StartT3Timer 20
2022-03-28 16:32:44.164 [DBG] Timer::StartTimer T8
2022-03-28 16:32:44.164 [DBG] Timer::StopTimer T8
2022-03-28 16:32:44.164 [DBG] Read Data: 13 -- 00 01 01 10 00 00 00 00 00 14 21 01 00
2022-03-28 16:32:44.164 [DBG] Reader#ByteToBlock Header: 00 01 01 10 00 00 00 00 00 14
2022-03-28 16:32:44.164 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:32:44.164 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:32:44.179 [DBG] Timer::StopT3Timer, SystemBytes=20
2022-03-28 16:32:44.713 [DBG] Writer#Run Send Primary Message 21
2022-03-28 16:32:44.713 [DBG] Timer::StartT3Timer, SystemBytes=21
2022-03-28 16:32:44.713 [DBG] WriteSendMessage: StartT3Timer 21
2022-03-28 16:32:44.777 [DBG] Timer::StartTimer T8
2022-03-28 16:32:44.777 [DBG] Timer::StopTimer T8
2022-03-28 16:32:44.777 [DBG] Read Data: 13 -- 00 01 01 12 00 00 00 00 00 15 21 01 00
2022-03-28 16:32:44.777 [DBG] Reader#ByteToBlock Header: 00 01 01 12 00 00 00 00 00 15
2022-03-28 16:32:44.777 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:32:44.777 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:32:44.793 [DBG] Timer::StopT3Timer, SystemBytes=21
2022-03-28 16:32:45.323 [DBG] Writer#Run Send Primary Message 22
2022-03-28 16:32:45.323 [DBG] Timer::StartT3Timer, SystemBytes=22
2022-03-28 16:32:45.323 [DBG] WriteSendMessage: StartT3Timer 22
2022-03-28 16:32:45.431 [DBG] Timer::StartTimer T8
2022-03-28 16:32:45.431 [DBG] Timer::StopTimer T8
2022-03-28 16:32:45.431 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 16 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-28 16:32:45.431 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 16
2022-03-28 16:32:45.431 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-28 16:32:45.431 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:32:45.447 [DBG] Timer::StopT3Timer, SystemBytes=22
2022-03-28 16:32:45.986 [DBG] Writer#Run Send Primary Message 23
2022-03-28 16:32:45.986 [DBG] Timer::StartT3Timer, SystemBytes=23
2022-03-28 16:32:45.986 [DBG] WriteSendMessage: StartT3Timer 23
2022-03-28 16:32:46.095 [DBG] Timer::StartTimer T8
2022-03-28 16:32:46.095 [DBG] Timer::StopTimer T8
2022-03-28 16:32:46.095 [DBG] Read Data: 13 -- 00 01 02 18 00 00 00 00 00 17 21 01 00
2022-03-28 16:32:46.095 [DBG] Reader#ByteToBlock Header: 00 01 02 18 00 00 00 00 00 17
2022-03-28 16:32:46.095 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:32:46.095 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:32:46.109 [DBG] Timer::StopT3Timer, SystemBytes=23
2022-03-28 16:32:49.790 [DBG] Timer::StartTimer T8
2022-03-28 16:32:49.790 [DBG] Timer::StopTimer T8
2022-03-28 16:32:49.790 [DBG] Read Data: 10 -- FF FF 00 00 00 09 52 B0 77 CE
2022-03-28 16:32:49.790 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 09 52 B0 77 CE
2022-03-28 16:32:49.790 [DBG] HSMSPort::OnReadHsms control message.
2022-03-28 16:32:51.802 [DBG] HSMSPort::OnDisconnect HSMSDisconnected.
2022-03-28 16:32:56.221 [DBG] UpdateStatus: Prev:CONNECT=>Now:SELECT=>New:DISCONNECT
2022-03-28 16:32:56.221 [DBG] UpdateStatus: Prev:SELECT=>Now:DISCONNECT
2022-03-28 16:32:56.222 [DBG] Terminate ACOAT_01#Reader Thread.
2022-03-28 16:32:56.222 [DBG] Terminate ACOAT_01#Writer Thread.
2022-03-28 16:32:56.222 [DBG] Timer::StopTimer LinkTest
2022-03-28 16:32:56.222 [DBG] Timer::StopTimer T6
2022-03-28 16:32:56.235 [DBG] ACOAT_01#Writer Thread Status = False
2022-03-28 16:32:56.250 [DBG] HSMSPort::TerminateSocket execute.
2022-03-28 16:32:56.250 [DBG] ACOAT_01#Reader Thread Status = False
2022-03-28 16:33:01.723 [DBG] HSMSPort::OnConnected Status=DISCONNECT
2022-03-28 16:33:01.723 [DBG] UpdateStatus: Prev:SELECT=>Now:DISCONNECT=>New:CONNECT
2022-03-28 16:33:01.723 [DBG] UpdateStatus: Prev:DISCONNECT=>Now:CONNECT
2022-03-28 16:33:01.723 [DBG] Start ACOAT_01#Reader Thread.
2022-03-28 16:33:01.723 [DBG] Start ACOAT_01#Writer Thread.
2022-03-28 16:33:01.725 [DBG] ACOAT_01#Reader Thread Status = True
2022-03-28 16:33:01.726 [DBG] Timer::StartTimer LinkTest
2022-03-28 16:33:01.726 [DBG] Timer::StartTimer T6
2022-03-28 16:33:01.726 [DBG] [WRITE] [SB:2130706433, SELECT_REQ] 00 00 00 0A FF FF 00 00 00 01 7F 00 00 01
2022-03-28 16:33:01.727 [DBG] ACOAT_01#Writer Thread Status = True
2022-03-28 16:33:01.776 [DBG] Timer::StartTimer T8
2022-03-28 16:33:01.776 [DBG] Timer::StopTimer T8
2022-03-28 16:33:01.776 [DBG] Read Data: 10 -- FF FF 00 00 00 02 7F 00 00 01
2022-03-28 16:33:01.776 [DBG] Reader#ByteToBlock Header: FF FF 00 00 00 02 7F 00 00 01
2022-03-28 16:33:01.776 [DBG] HSMSPort::OnReadHsms control message.
2022-03-28 16:33:01.776 [DBG] Timer::StopTimer T6
2022-03-28 16:33:01.776 [DBG] UpdateStatus: Prev:DISCONNECT=>Now:CONNECT=>New:SELECT
2022-03-28 16:33:01.776 [DBG] UpdateStatus: Prev:CONNECT=>Now:SELECT
2022-03-28 16:33:01.786 [DBG] Writer#Run Send Primary Message 24
2022-03-28 16:33:01.786 [DBG] Timer::StartT3Timer, SystemBytes=24
2022-03-28 16:33:01.786 [DBG] WriteSendMessage: StartT3Timer 24
2022-03-28 16:33:01.895 [DBG] Timer::StartTimer T8
2022-03-28 16:33:01.895 [DBG] Timer::StopTimer T8
2022-03-28 16:33:01.895 [DBG] Read Data: 33 -- 00 01 01 0E 00 00 00 00 00 18 01 02 21 01 00 01 02 41 06 20 20 20 20 20 20 41 06 20 20 20 20 20 20
2022-03-28 16:33:01.895 [DBG] Reader#ByteToBlock Header: 00 01 01 0E 00 00 00 00 00 18
2022-03-28 16:33:01.895 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 02 41 06 20 20 20 20 20 20 41 06 20 20 20 20 20 20
2022-03-28 16:33:01.895 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:33:01.910 [DBG] Timer::StopT3Timer, SystemBytes=24
2022-03-28 16:33:02.435 [DBG] Writer#Run Send Primary Message 25
2022-03-28 16:33:02.435 [DBG] Timer::StartT3Timer, SystemBytes=25
2022-03-28 16:33:02.435 [DBG] WriteSendMessage: StartT3Timer 25
2022-03-28 16:33:02.556 [DBG] Timer::StartTimer T8
2022-03-28 16:33:02.556 [DBG] Timer::StopTimer T8
2022-03-28 16:33:02.556 [DBG] Read Data: 13 -- 00 01 01 12 00 00 00 00 00 19 21 01 00
2022-03-28 16:33:02.556 [DBG] Reader#ByteToBlock Header: 00 01 01 12 00 00 00 00 00 19
2022-03-28 16:33:02.556 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:33:02.556 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:33:02.571 [DBG] Timer::StopT3Timer, SystemBytes=25
2022-03-28 16:33:03.101 [DBG] Writer#Run Send Primary Message 26
2022-03-28 16:33:03.101 [DBG] Timer::StartT3Timer, SystemBytes=26
2022-03-28 16:33:03.101 [DBG] WriteSendMessage: StartT3Timer 26
2022-03-28 16:33:03.223 [DBG] Timer::StartTimer T8
2022-03-28 16:33:03.223 [DBG] Timer::StopTimer T8
2022-03-28 16:33:03.223 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 1A 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-28 16:33:03.223 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 1A
2022-03-28 16:33:03.223 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-28 16:33:03.223 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:33:03.238 [DBG] Timer::StopT3Timer, SystemBytes=26
2022-03-28 16:33:03.773 [DBG] Writer#Run Send Primary Message 27
2022-03-28 16:33:03.773 [DBG] Timer::StartT3Timer, SystemBytes=27
2022-03-28 16:33:03.773 [DBG] WriteSendMessage: StartT3Timer 27
2022-03-28 16:33:03.879 [DBG] Timer::StartTimer T8
2022-03-28 16:33:03.879 [DBG] Timer::StopTimer T8
2022-03-28 16:33:03.879 [DBG] Read Data: 13 -- 00 01 06 18 00 00 00 00 00 1B 21 01 01
2022-03-28 16:33:03.879 [DBG] Reader#ByteToBlock Header: 00 01 06 18 00 00 00 00 00 1B
2022-03-28 16:33:03.879 [DBG] Reader#ByteToBlock Data: 21 01 01
2022-03-28 16:33:03.879 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:33:03.895 [DBG] Timer::StopT3Timer, SystemBytes=27
2022-03-28 16:33:04.431 [DBG] Writer#Run Send Primary Message 28
2022-03-28 16:33:04.431 [DBG] Timer::StartT3Timer, SystemBytes=28
2022-03-28 16:33:04.431 [DBG] WriteSendMessage: StartT3Timer 28
2022-03-28 16:33:04.543 [DBG] Timer::StartTimer T8
2022-03-28 16:33:04.543 [DBG] Timer::StopTimer T8
2022-03-28 16:33:04.543 [DBG] Read Data: 17 -- 00 01 02 2C 00 00 00 00 00 1C 01 02 21 01 00 01 00
2022-03-28 16:33:04.543 [DBG] Reader#ByteToBlock Header: 00 01 02 2C 00 00 00 00 00 1C
2022-03-28 16:33:04.543 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 00
2022-03-28 16:33:04.543 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:33:04.558 [DBG] Timer::StopT3Timer, SystemBytes=28
2022-03-28 16:33:05.092 [DBG] Writer#Run Send Primary Message 29
2022-03-28 16:33:05.092 [DBG] Timer::StartT3Timer, SystemBytes=29
2022-03-28 16:33:05.092 [DBG] WriteSendMessage: StartT3Timer 29
2022-03-28 16:33:05.200 [DBG] Timer::StartTimer T8
2022-03-28 16:33:05.200 [DBG] Timer::StopTimer T8
2022-03-28 16:33:05.200 [DBG] Read Data: 13 -- 00 01 02 26 00 00 00 00 00 1D 21 01 00
2022-03-28 16:33:05.200 [DBG] Reader#ByteToBlock Header: 00 01 02 26 00 00 00 00 00 1D
2022-03-28 16:33:05.200 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:33:05.200 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:33:05.215 [DBG] Timer::StopT3Timer, SystemBytes=29
2022-03-28 16:33:05.752 [DBG] Writer#Run Send Primary Message 30
2022-03-28 16:33:05.752 [DBG] Timer::StartT3Timer, SystemBytes=30
2022-03-28 16:33:05.752 [DBG] WriteSendMessage: StartT3Timer 30
2022-03-28 16:33:05.829 [DBG] Timer::StartTimer T8
2022-03-28 16:33:05.829 [DBG] Timer::StopTimer T8
2022-03-28 16:33:05.829 [DBG] Read Data: 13 -- 00 01 02 24 00 00 00 00 00 1E 21 01 00
2022-03-28 16:33:05.829 [DBG] Reader#ByteToBlock Header: 00 01 02 24 00 00 00 00 00 1E
2022-03-28 16:33:05.829 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:33:05.829 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:33:05.844 [DBG] Timer::StopT3Timer, SystemBytes=30
2022-03-28 16:33:06.380 [DBG] Writer#Run Send Primary Message 31
2022-03-28 16:33:06.380 [DBG] Timer::StartT3Timer, SystemBytes=31
2022-03-28 16:33:06.380 [DBG] WriteSendMessage: StartT3Timer 31
2022-03-28 16:33:06.508 [DBG] Timer::StartTimer T8
2022-03-28 16:33:06.508 [DBG] Timer::StopTimer T8
2022-03-28 16:33:06.508 [DBG] Read Data: 13 -- 00 01 02 22 00 00 00 00 00 1F 21 01 00
2022-03-28 16:33:06.508 [DBG] Reader#ByteToBlock Header: 00 01 02 22 00 00 00 00 00 1F
2022-03-28 16:33:06.508 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:33:06.508 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:33:06.524 [DBG] Timer::StopT3Timer, SystemBytes=31
2022-03-28 16:33:07.058 [DBG] Writer#Run Send Primary Message 32
2022-03-28 16:33:07.058 [DBG] Timer::StartT3Timer, SystemBytes=32
2022-03-28 16:33:07.058 [DBG] WriteSendMessage: StartT3Timer 32
2022-03-28 16:33:07.164 [DBG] Timer::StartTimer T8
2022-03-28 16:33:07.164 [DBG] Timer::StopTimer T8
2022-03-28 16:33:07.164 [DBG] Read Data: 13 -- 00 01 05 04 00 00 00 00 00 20 21 01 00
2022-03-28 16:33:07.164 [DBG] Reader#ByteToBlock Header: 00 01 05 04 00 00 00 00 00 20
2022-03-28 16:33:07.164 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:33:07.164 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:33:07.179 [DBG] Timer::StopT3Timer, SystemBytes=32
2022-03-28 16:33:07.715 [DBG] Writer#Run Send Primary Message 33
2022-03-28 16:33:07.715 [DBG] Timer::StartT3Timer, SystemBytes=33
2022-03-28 16:33:07.715 [DBG] WriteSendMessage: StartT3Timer 33
2022-03-28 16:33:07.836 [DBG] Timer::StartTimer T8
2022-03-28 16:33:07.836 [DBG] Timer::StopTimer T8
2022-03-28 16:33:07.836 [DBG] Read Data: 13 -- 00 01 02 22 00 00 00 00 00 21 21 01 00
2022-03-28 16:33:07.836 [DBG] Reader#ByteToBlock Header: 00 01 02 22 00 00 00 00 00 21
2022-03-28 16:33:07.836 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:33:07.836 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:33:07.852 [DBG] Timer::StopT3Timer, SystemBytes=33
2022-03-28 16:33:08.380 [DBG] Writer#Run Send Primary Message 34
2022-03-28 16:33:08.380 [DBG] Timer::StartT3Timer, SystemBytes=34
2022-03-28 16:33:08.380 [DBG] WriteSendMessage: StartT3Timer 34
2022-03-28 16:33:08.491 [DBG] Timer::StartTimer T8
2022-03-28 16:33:08.491 [DBG] Timer::StopTimer T8
2022-03-28 16:33:08.491 [DBG] Read Data: 13 -- 00 01 02 24 00 00 00 00 00 22 21 01 00
2022-03-28 16:33:08.491 [DBG] Reader#ByteToBlock Header: 00 01 02 24 00 00 00 00 00 22
2022-03-28 16:33:08.491 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:33:08.491 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:33:08.506 [DBG] Timer::StopT3Timer, SystemBytes=34
2022-03-28 16:33:09.035 [DBG] Writer#Run Send Primary Message 35
2022-03-28 16:33:09.035 [DBG] Timer::StartT3Timer, SystemBytes=35
2022-03-28 16:33:09.035 [DBG] WriteSendMessage: StartT3Timer 35
2022-03-28 16:33:09.111 [DBG] Timer::StartTimer T8
2022-03-28 16:33:09.111 [DBG] Timer::StopTimer T8
2022-03-28 16:33:09.111 [DBG] Read Data: 13 -- 00 01 02 26 00 00 00 00 00 23 21 01 00
2022-03-28 16:33:09.111 [DBG] Reader#ByteToBlock Header: 00 01 02 26 00 00 00 00 00 23
2022-03-28 16:33:09.111 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:33:09.111 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:33:09.127 [DBG] Timer::StopT3Timer, SystemBytes=35
2022-03-28 16:33:09.654 [DBG] Writer#Run Send Primary Message 36
2022-03-28 16:33:09.654 [DBG] Timer::StartT3Timer, SystemBytes=36
2022-03-28 16:33:09.654 [DBG] WriteSendMessage: StartT3Timer 36
2022-03-28 16:33:09.762 [DBG] Timer::StartTimer T8
2022-03-28 16:33:09.762 [DBG] Timer::StopTimer T8
2022-03-28 16:33:09.762 [DBG] Read Data: 13 -- 00 01 05 04 00 00 00 00 00 24 21 01 00
2022-03-28 16:33:09.762 [DBG] Reader#ByteToBlock Header: 00 01 05 04 00 00 00 00 00 24
2022-03-28 16:33:09.762 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:33:09.762 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:33:09.777 [DBG] Timer::StopT3Timer, SystemBytes=36
2022-03-28 16:33:10.312 [DBG] Writer#Run Send Primary Message 37
2022-03-28 16:33:10.312 [DBG] Timer::StartT3Timer, SystemBytes=37
2022-03-28 16:33:10.312 [DBG] WriteSendMessage: StartT3Timer 37
2022-03-28 16:33:10.376 [DBG] Timer::StartTimer T8
2022-03-28 16:33:10.376 [DBG] Timer::StopTimer T8
2022-03-28 16:33:10.376 [DBG] Read Data: 17 -- 00 01 02 2C 00 00 00 00 00 25 01 02 21 01 00 01 00
2022-03-28 16:33:10.376 [DBG] Reader#ByteToBlock Header: 00 01 02 2C 00 00 00 00 00 25
2022-03-28 16:33:10.376 [DBG] Reader#ByteToBlock Data: 01 02 21 01 00 01 00
2022-03-28 16:33:10.376 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:33:10.392 [DBG] Timer::StopT3Timer, SystemBytes=37
2022-03-28 16:33:10.926 [DBG] Writer#Run Send Primary Message 38
2022-03-28 16:33:10.926 [DBG] Timer::StartT3Timer, SystemBytes=38
2022-03-28 16:33:10.926 [DBG] WriteSendMessage: StartT3Timer 38
2022-03-28 16:33:11.004 [DBG] Timer::StartTimer T8
2022-03-28 16:33:11.004 [DBG] Timer::StopTimer T8
2022-03-28 16:33:11.004 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 26 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-28 16:33:11.004 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 26
2022-03-28 16:33:11.004 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-28 16:33:11.004 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:33:11.020 [DBG] Timer::StopT3Timer, SystemBytes=38
2022-03-28 16:33:11.556 [DBG] Writer#Run Send Primary Message 39
2022-03-28 16:33:11.556 [DBG] Timer::StartT3Timer, SystemBytes=39
2022-03-28 16:33:11.556 [DBG] WriteSendMessage: StartT3Timer 39
2022-03-28 16:33:11.683 [DBG] Timer::StartTimer T8
2022-03-28 16:33:11.683 [DBG] Timer::StopTimer T8
2022-03-28 16:33:11.683 [DBG] Read Data: 198 -- 00 01 05 06 00 00 00 00 00 27 01 02 01 03 21 01 01 B1 04 00 00 00 0A 41 50 74 65 73 74 31 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01 03 21 01 02 B1 04 00 00 00 0B 41 50 74 65 73 74 32 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
2022-03-28 16:33:11.683 [DBG] Reader#ByteToBlock Header: 00 01 05 06 00 00 00 00 00 27
2022-03-28 16:33:11.683 [DBG] Reader#ByteToBlock Data: 01 02 01 03 21 01 01 B1 04 00 00 00 0A 41 50 74 65 73 74 31 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01 03 21 01 02 B1 04 00 00 00 0B 41 50 74 65 73 74 32 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
2022-03-28 16:33:11.683 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:33:11.698 [DBG] Timer::StopT3Timer, SystemBytes=39
2022-03-28 16:33:12.231 [DBG] Writer#Run Send Primary Message 40
2022-03-28 16:33:12.231 [DBG] Timer::StartT3Timer, SystemBytes=40
2022-03-28 16:33:12.231 [DBG] WriteSendMessage: StartT3Timer 40
2022-03-28 16:33:12.342 [DBG] Timer::StartTimer T8
2022-03-28 16:33:12.342 [DBG] Timer::StopTimer T8
2022-03-28 16:33:12.342 [DBG] Read Data: 54 -- 00 01 07 14 00 00 00 00 00 28 01 06 41 05 74 65 73 74 31 41 05 74 65 73 74 32 41 05 74 65 73 74 33 41 05 74 65 73 74 34 41 05 74 65 73 74 35 41 05 74 65 73 74 36
2022-03-28 16:33:12.342 [DBG] Reader#ByteToBlock Header: 00 01 07 14 00 00 00 00 00 28
2022-03-28 16:33:12.342 [DBG] Reader#ByteToBlock Data: 01 06 41 05 74 65 73 74 31 41 05 74 65 73 74 32 41 05 74 65 73 74 33 41 05 74 65 73 74 34 41 05 74 65 73 74 35 41 05 74 65 73 74 36
2022-03-28 16:33:12.342 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:33:12.358 [DBG] Timer::StopT3Timer, SystemBytes=40
2022-03-28 16:33:12.889 [DBG] Writer#Run Send Primary Message 41
2022-03-28 16:33:12.889 [DBG] Timer::StartT3Timer, SystemBytes=41
2022-03-28 16:33:12.889 [DBG] WriteSendMessage: StartT3Timer 41
2022-03-28 16:33:12.999 [DBG] Timer::StartTimer T8
2022-03-28 16:33:12.999 [DBG] Timer::StopTimer T8
2022-03-28 16:33:12.999 [DBG] Read Data: 96 -- 00 01 02 0E 00 00 00 00 00 29 01 0E B1 04 00 00 00 01 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 00 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05
2022-03-28 16:33:12.999 [DBG] Reader#ByteToBlock Header: 00 01 02 0E 00 00 00 00 00 29
2022-03-28 16:33:12.999 [DBG] Reader#ByteToBlock Data: 01 0E B1 04 00 00 00 01 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 00 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05 B1 04 00 00 00 05
2022-03-28 16:33:12.999 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:33:13.014 [DBG] Timer::StopT3Timer, SystemBytes=41
2022-03-28 16:33:13.547 [DBG] Writer#Run Send Primary Message 42
2022-03-28 16:33:13.547 [DBG] Timer::StartT3Timer, SystemBytes=42
2022-03-28 16:33:13.547 [DBG] WriteSendMessage: StartT3Timer 42
2022-03-28 16:33:13.610 [DBG] Timer::StartTimer T8
2022-03-28 16:33:13.610 [DBG] Timer::StopTimer T8
2022-03-28 16:33:13.610 [DBG] Read Data: 13 -- 00 01 02 10 00 00 00 00 00 2A 21 01 00
2022-03-28 16:33:13.610 [DBG] Reader#ByteToBlock Header: 00 01 02 10 00 00 00 00 00 2A
2022-03-28 16:33:13.610 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:33:13.610 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:33:13.625 [DBG] Timer::StopT3Timer, SystemBytes=42
2022-03-28 16:33:14.162 [DBG] Writer#Run Send Primary Message 43
2022-03-28 16:33:14.162 [DBG] Timer::StartT3Timer, SystemBytes=43
2022-03-28 16:33:14.162 [DBG] WriteSendMessage: StartT3Timer 43
2022-03-28 16:33:14.223 [DBG] Timer::StartTimer T8
2022-03-28 16:33:14.223 [DBG] Timer::StopTimer T8
2022-03-28 16:33:14.223 [DBG] Read Data: 13 -- 00 01 01 10 00 00 00 00 00 2B 21 01 00
2022-03-28 16:33:14.223 [DBG] Reader#ByteToBlock Header: 00 01 01 10 00 00 00 00 00 2B
2022-03-28 16:33:14.223 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:33:14.223 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:33:14.238 [DBG] Timer::StopT3Timer, SystemBytes=43
2022-03-28 16:33:14.768 [DBG] Writer#Run Send Primary Message 44
2022-03-28 16:33:14.768 [DBG] Timer::StartT3Timer, SystemBytes=44
2022-03-28 16:33:14.768 [DBG] WriteSendMessage: StartT3Timer 44
2022-03-28 16:33:14.832 [DBG] Timer::StartTimer T8
2022-03-28 16:33:14.832 [DBG] Timer::StopTimer T8
2022-03-28 16:33:14.832 [DBG] Read Data: 13 -- 00 01 01 12 00 00 00 00 00 2C 21 01 00
2022-03-28 16:33:14.832 [DBG] Reader#ByteToBlock Header: 00 01 01 12 00 00 00 00 00 2C
2022-03-28 16:33:14.832 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:33:14.832 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:33:14.848 [DBG] Timer::StopT3Timer, SystemBytes=44
2022-03-28 16:33:15.384 [DBG] Writer#Run Send Primary Message 45
2022-03-28 16:33:15.384 [DBG] Timer::StartT3Timer, SystemBytes=45
2022-03-28 16:33:15.384 [DBG] WriteSendMessage: StartT3Timer 45
2022-03-28 16:33:15.512 [DBG] Timer::StartTimer T8
2022-03-28 16:33:15.512 [DBG] Timer::StopTimer T8
2022-03-28 16:33:15.512 [DBG] Read Data: 71 -- 00 01 01 04 00 00 00 00 00 2D 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-28 16:33:15.512 [DBG] Reader#ByteToBlock Header: 00 01 01 04 00 00 00 00 00 2D
2022-03-28 16:33:15.512 [DBG] Reader#ByteToBlock Data: 01 0A 41 13 32 30 32 31 2D 30 39 2D 31 37 54 31 33 3A 34 38 3A 32 35 A5 01 00 A5 01 04 A5 01 05 A9 02 07 D0 A9 02 03 E8 41 04 74 65 73 74 A5 01 00 B1 04 00 00 00 00 B1 04 00 00 00 00
2022-03-28 16:33:15.512 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:33:15.527 [DBG] Timer::StopT3Timer, SystemBytes=45
2022-03-28 16:33:16.065 [DBG] Writer#Run Send Primary Message 46
2022-03-28 16:33:16.065 [DBG] Timer::StartT3Timer, SystemBytes=46
2022-03-28 16:33:16.065 [DBG] WriteSendMessage: StartT3Timer 46
2022-03-28 16:33:16.159 [DBG] Timer::StartTimer T8
2022-03-28 16:33:16.159 [DBG] Timer::StopTimer T8
2022-03-28 16:33:16.159 [DBG] Read Data: 13 -- 00 01 02 18 00 00 00 00 00 2E 21 01 00
2022-03-28 16:33:16.159 [DBG] Reader#ByteToBlock Header: 00 01 02 18 00 00 00 00 00 2E
2022-03-28 16:33:16.159 [DBG] Reader#ByteToBlock Data: 21 01 00
2022-03-28 16:33:16.159 [DBG] HSMSPort::OnReadHsms Not control message.
2022-03-28 16:33:16.175 [DBG] Timer::StopT3Timer, SystemBytes=46
2022-03-28 16:33:31.282 [DBG] Start to Close the ACOAT_01 SECS Port
2022-03-28 16:33:31.283 [DBG] UpdateStatus: Prev:CONNECT=>Now:SELECT=>New:TERMINATE
2022-03-28 16:33:31.283 [DBG] UpdateStatus: Prev:SELECT=>Now:TERMINATE
2022-03-28 16:33:31.283 [DBG] Terminate ACOAT_01#Reader Thread.
2022-03-28 16:33:31.283 [DBG] [WRITE] [SB:2130706434, SEPARATE] 00 00 00 0A FF FF 00 00 00 09 7F 00 00 02
2022-03-28 16:33:31.356 [DBG] Terminate ACOAT_01#Parser Thread.
2022-03-28 16:33:31.356 [DBG] Terminate - Connector Thread.
2022-03-28 16:33:31.356 [DBG] Terminate ACOAT_01#Writer Thread.
2022-03-28 16:33:31.371 [DBG] ACOAT_01#Writer Thread Status = False
2022-03-28 16:33:31.371 [DBG] ACOAT_01#Parser Thread Status = False
2022-03-28 16:33:31.462 [DBG] Terminate ACOAT_01#Timer Thread.
2022-03-28 16:33:31.462 [DBG] Timer::StopTimer LinkTest
2022-03-28 16:33:31.462 [DBG] Timer::StopTimer T6
2022-03-28 16:33:31.462 [DBG] HSMSPort::TerminateSocket execute.
2022-03-28 16:33:31.469 [DBG] Terminate ACOAT_01#Reader Thread.
2022-03-28 16:33:31.469 [DBG] Reader#FireDisconnect Invoked.
2022-03-28 16:33:31.469 [DBG] ACOAT_01#Reader Thread Status = False
2022-03-28 16:33:31.542 [DBG] ACOAT_01#Timer Thread Status = False
2022-03-28 16:33:31.557 [DBG] Terminate S9FxMonitor Thread.
2022-03-28 16:33:31.557 [DBG] Completely Close the ACOAT_01 SECS Port
2022-03-28 16:33:31.587 [DBG] S9FxMonitor Thread Status = False
2022-03-28 16:33:31.738 [DBG] - Connector Thread Status = False

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,4 @@
2021-12-24 14:55:51.384 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2021-12-24 15:48:36.301 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2021-12-24 15:52:16.417 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2021-12-24 15:53:43.279 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000

View File

@@ -0,0 +1,200 @@
2021-12-28 10:42:44.487 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:42:46.520 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:42:46.520 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:42:46.555 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:42:46.605 [ERR] Reader#Run
2021-12-28 10:42:54.611 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:42:56.644 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:42:56.644 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:42:56.673 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:42:56.701 [ERR] Reader#Run
2021-12-28 10:43:04.744 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:43:06.776 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:43:06.776 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:43:06.802 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:43:06.843 [ERR] Reader#Run
2021-12-28 10:43:14.867 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:43:16.892 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:43:16.892 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:43:16.923 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:43:16.932 [ERR] Reader#Run
2021-12-28 10:43:25.000 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:43:27.027 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:43:27.027 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:43:27.055 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:43:27.086 [ERR] Reader#Run
2021-12-28 10:43:35.126 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:43:37.171 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:43:37.172 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:43:37.202 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:43:37.211 [ERR] Reader#Run
2021-12-28 10:43:45.296 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:43:47.328 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:43:47.328 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:43:47.350 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:43:47.356 [ERR] Reader#Run
2021-12-28 10:43:55.432 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:43:57.451 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:43:57.451 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:43:57.480 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:43:57.515 [ERR] Reader#Run
2021-12-28 10:44:05.589 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:44:07.614 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:44:07.614 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:44:07.641 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:44:07.656 [ERR] Reader#Run
2021-12-28 10:44:15.719 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:44:17.748 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:44:17.749 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:44:17.779 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:44:17.812 [ERR] Reader#Run
2021-12-28 10:44:25.837 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:44:27.869 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:44:27.869 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:44:27.899 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:44:27.923 [ERR] Reader#Run
2021-12-28 10:44:35.003 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:44:37.046 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:44:37.046 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:44:37.070 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:44:37.088 [ERR] Reader#Run
2021-12-28 10:44:45.148 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:44:47.180 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:44:47.180 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:44:47.209 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:44:47.247 [ERR] Reader#Run
2021-12-28 10:44:55.275 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:44:57.310 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:44:57.310 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:44:57.334 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:44:57.341 [ERR] Reader#Run
2021-12-28 10:45:05.434 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:45:07.451 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:45:07.451 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:45:07.486 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:45:07.513 [ERR] Reader#Run
2021-12-28 10:45:15.565 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:45:17.587 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:45:17.587 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:45:17.615 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:45:17.629 [ERR] Reader#Run
2021-12-28 10:45:25.676 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:45:27.701 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:45:27.701 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:45:27.729 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:45:27.764 [ERR] Reader#Run
2021-12-28 10:45:35.831 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:45:37.863 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:45:37.863 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:45:37.891 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:45:37.898 [ERR] Reader#Run
2021-12-28 10:45:45.973 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:45:47.991 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:45:47.991 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:45:48.019 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:45:48.033 [ERR] Reader#Run
2021-12-28 10:45:56.100 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:45:58.126 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:45:58.126 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:45:58.157 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:45:58.182 [ERR] Reader#Run
2021-12-28 10:46:06.252 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:46:08.284 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:46:08.284 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:46:08.314 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:46:08.329 [ERR] Reader#Run
2021-12-28 10:46:15.393 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:46:17.414 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:46:17.414 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:46:17.436 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:46:17.462 [ERR] Reader#Run
2021-12-28 10:46:25.519 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:46:27.538 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:46:27.538 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:46:27.562 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:46:27.569 [ERR] Reader#Run
2021-12-28 10:46:35.656 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:46:37.687 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:46:37.687 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:46:37.717 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:46:37.743 [ERR] Reader#Run
2021-12-28 10:46:45.779 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:46:47.816 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:46:47.816 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:46:47.843 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:46:47.850 [ERR] Reader#Run
2021-12-28 10:46:55.948 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:46:57.974 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:46:57.975 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:46:58.006 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:46:58.025 [ERR] Reader#Run
2021-12-28 10:47:06.101 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:47:08.126 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:47:08.126 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:47:08.151 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:47:08.157 [ERR] Reader#Run
2021-12-28 10:47:16.229 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:47:18.257 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:47:18.258 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:47:18.288 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:47:18.297 [ERR] Reader#Run
2021-12-28 10:47:26.370 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:47:28.391 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:47:28.391 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:47:28.417 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:47:28.455 [ERR] Reader#Run
2021-12-28 10:47:36.510 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:47:38.540 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:47:38.540 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:47:38.566 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:47:38.576 [ERR] Reader#Run
2021-12-28 10:47:46.646 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:47:48.673 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:47:48.673 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:47:48.694 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:47:48.730 [ERR] Reader#Run
2021-12-28 10:47:55.773 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:47:57.792 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:47:57.792 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:47:57.819 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:47:57.825 [ERR] Reader#Run
2021-12-28 10:48:05.895 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:48:07.932 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:48:07.932 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:48:07.954 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:48:07.983 [ERR] Reader#Run
2021-12-28 10:48:16.052 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:48:18.086 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:48:18.087 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:48:18.108 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:48:18.135 [ERR] Reader#Run
2021-12-28 10:48:26.215 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:48:28.242 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:48:28.242 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:48:28.271 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:48:28.290 [ERR] Reader#Run
2021-12-28 10:48:36.341 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:48:38.362 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:48:38.362 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:48:38.384 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:48:38.401 [ERR] Reader#Run
2021-12-28 10:48:46.466 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:48:48.487 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:48:48.487 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:48:48.522 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:48:48.560 [ERR] Reader#Run
2021-12-28 10:48:56.591 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:48:58.618 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:48:58.618 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:48:58.651 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:48:58.687 [ERR] Reader#Run
2021-12-28 10:49:06.739 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:49:08.753 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:49:08.753 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:49:08.776 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:49:08.812 [ERR] Reader#Run
2021-12-28 10:49:16.833 [ERR] SystemBytes: null, ERRCODE: T6TimeOut, ERRDESC: T6 TimeOut: Control Timeout..
2021-12-28 10:49:18.860 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2021-12-28 10:49:18.860 [ERR] HSMSPort::OnDisconnect Reconnect 2
2021-12-28 10:49:18.890 [ERR] HSMSPort::OnDisconnect Reconnect 3
2021-12-28 10:49:18.910 [ERR] Reader#Run

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,3 @@
2022-01-20 14:32:18.242 [ERR] SystemBytes: 1, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-01-20 14:33:10.600 [ERR] SystemBytes: 0, ERRCODE: RcvdUnknownMessage, ERRDESC: Received Unknown Message..
2022-01-20 14:33:44.181 [ERR] Reader#Run

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,75 @@
2022-02-25 10:07:13.748 [ERR] Parser#Parse
2022-02-25 10:07:13.774 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 11:01:41.419 [ERR] Parser#Parse
2022-02-25 11:01:41.429 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:27:22.443 [ERR] SystemBytes: 9, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-02-25 14:30:24.856 [ERR] CheckT3Timeout:
2022-02-25 14:30:39.911 [ERR] Parser#Parse
2022-02-25 14:30:39.918 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:30:50.341 [ERR] Parser#Parse
2022-02-25 14:30:50.347 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:31:00.387 [ERR] Parser#Parse
2022-02-25 14:31:00.394 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:31:10.937 [ERR] Parser#Parse
2022-02-25 14:31:10.943 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:31:30.392 [ERR] Parser#Parse
2022-02-25 14:31:30.400 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:31:30.863 [ERR] Parser#Parse
2022-02-25 14:31:30.869 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:31:39.884 [ERR] Parser#Parse
2022-02-25 14:31:39.890 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:31:50.341 [ERR] Parser#Parse
2022-02-25 14:31:50.351 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:32:00.891 [ERR] Parser#Parse
2022-02-25 14:32:00.897 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:32:10.348 [ERR] Parser#Parse
2022-02-25 14:32:10.354 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:32:20.400 [ERR] Parser#Parse
2022-02-25 14:32:20.407 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:32:30.853 [ERR] Parser#Parse
2022-02-25 14:32:30.861 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:32:40.426 [ERR] Parser#Parse
2022-02-25 14:32:40.432 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:32:50.937 [ERR] Parser#Parse
2022-02-25 14:32:50.943 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:33:00.924 [ERR] Parser#Parse
2022-02-25 14:33:00.930 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:33:10.442 [ERR] Parser#Parse
2022-02-25 14:33:10.447 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:33:20.883 [ERR] Parser#Parse
2022-02-25 14:33:20.891 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:33:29.938 [ERR] Parser#Parse
2022-02-25 14:33:29.943 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:33:40.384 [ERR] Parser#Parse
2022-02-25 14:33:40.391 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:33:50.949 [ERR] Parser#Parse
2022-02-25 14:33:50.957 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:34:00.383 [ERR] Parser#Parse
2022-02-25 14:34:00.388 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:34:10.930 [ERR] Parser#Parse
2022-02-25 14:34:10.936 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:34:20.384 [ERR] Parser#Parse
2022-02-25 14:34:20.390 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:34:30.951 [ERR] Parser#Parse
2022-02-25 14:34:30.958 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:34:40.875 [ERR] Parser#Parse
2022-02-25 14:34:40.880 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:34:50.444 [ERR] Parser#Parse
2022-02-25 14:34:50.450 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:35:00.907 [ERR] Parser#Parse
2022-02-25 14:35:00.912 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:35:09.912 [ERR] Parser#Parse
2022-02-25 14:35:09.918 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:35:20.370 [ERR] Parser#Parse
2022-02-25 14:35:20.376 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:35:30.931 [ERR] Parser#Parse
2022-02-25 14:35:30.938 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:36:10.434 [ERR] Parser#Parse
2022-02-25 14:36:10.443 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:36:20.879 [ERR] Parser#Parse
2022-02-25 14:36:20.884 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:36:30.928 [ERR] Parser#Parse
2022-02-25 14:36:30.934 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:36:40.373 [ERR] Parser#Parse
2022-02-25 14:36:40.379 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:36:48.631 [ERR] Reader#Run

View File

@@ -0,0 +1,40 @@
2022-02-25 14:36:50.919 [ERR] Parser#Parse
2022-02-25 14:36:50.940 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:37:23.130 [ERR] Parser#Parse
2022-02-25 14:37:34.255 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:37:34.385 [ERR] Parser#Parse
2022-02-25 14:37:34.390 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:37:40.858 [ERR] Parser#Parse
2022-02-25 14:37:40.864 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:37:50.416 [ERR] Parser#Parse
2022-02-25 14:37:50.422 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:39:14.047 [ERR] Parser#Parse
2022-02-25 14:39:14.056 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:39:14.134 [ERR] Parser#Parse
2022-02-25 14:39:14.142 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:41:39.769 [ERR] Parser#Parse
2022-02-25 14:41:41.989 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:41:42.097 [ERR] Parser#Parse
2022-02-25 14:41:42.104 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:41:51.611 [ERR] Parser#Parse
2022-02-25 14:41:51.618 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:42:14.455 [ERR] Parser#Parse
2022-02-25 14:42:14.463 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:42:14.471 [ERR] Parser#Parse
2022-02-25 14:42:14.478 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:58:40.942 [ERR] Parser#Parse
2022-02-25 14:58:40.951 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 14:59:32.823 [ERR] SystemBytes: 11, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-02-25 15:02:09.264 [ERR] CheckT3Timeout:
2022-02-25 15:06:56.760 [ERR] SystemBytes: 14, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-02-25 15:15:08.202 [ERR] CheckOtherTimeout:
2022-02-25 15:16:42.004 [ERR] CheckOtherTimeout:
2022-02-25 15:18:50.368 [ERR] Parser#Parse
2022-02-25 15:18:50.375 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 15:18:53.074 [ERR] SystemBytes: 14, ERRCODE: RcvdAbortMessage, ERRDESC: Received Abort Message..
2022-02-25 15:18:58.366 [ERR] Reader#Run
2022-02-25 15:19:10.917 [ERR] SystemBytes: 14, ERRCODE: RcvdAbortMessage, ERRDESC: Received Abort Message..
2022-02-25 15:24:09.016 [ERR] SystemBytes: 14, ERRCODE: RcvdAbortMessage, ERRDESC: Received Abort Message..
2022-02-25 15:25:41.244 [ERR] CheckOtherTimeout:
2022-02-25 15:26:06.899 [ERR] SystemBytes: 14, ERRCODE: RcvdAbortMessage, ERRDESC: Received Abort Message..
2022-02-25 15:29:13.377 [ERR] Reader#Run

View File

@@ -0,0 +1,143 @@
2022-02-25 15:29:27.255 [ERR] SystemBytes: 14, ERRCODE: RcvdAbortMessage, ERRDESC: Received Abort Message..
2022-02-25 15:30:40.910 [ERR] Parser#Parse
2022-02-25 15:30:40.919 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 15:58:13.280 [ERR] SystemBytes: 16, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-02-25 16:18:04.669 [ERR] SystemBytes: 15, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-02-25 16:22:49.189 [ERR] SystemBytes: 17, ERRCODE: RcvdAbortMessage, ERRDESC: Received Abort Message..
2022-02-25 16:22:50.887 [ERR] Parser#Parse
2022-02-25 16:22:50.894 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:23:00.331 [ERR] Parser#Parse
2022-02-25 16:23:00.338 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:23:10.383 [ERR] Parser#Parse
2022-02-25 16:23:10.389 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:23:20.839 [ERR] Parser#Parse
2022-02-25 16:23:20.845 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:23:30.391 [ERR] Parser#Parse
2022-02-25 16:23:30.396 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:23:40.340 [ERR] Parser#Parse
2022-02-25 16:23:40.346 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:23:50.896 [ERR] Parser#Parse
2022-02-25 16:23:50.902 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:24:00.340 [ERR] Parser#Parse
2022-02-25 16:24:00.347 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:24:10.894 [ERR] Parser#Parse
2022-02-25 16:24:10.900 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:24:20.343 [ERR] Parser#Parse
2022-02-25 16:24:20.349 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:24:30.438 [ERR] Parser#Parse
2022-02-25 16:24:30.445 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:24:40.928 [ERR] Parser#Parse
2022-02-25 16:24:40.936 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:24:50.388 [ERR] Parser#Parse
2022-02-25 16:24:50.395 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:25:00.845 [ERR] Parser#Parse
2022-02-25 16:25:00.853 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:25:09.879 [ERR] Parser#Parse
2022-02-25 16:25:09.885 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:25:20.352 [ERR] Parser#Parse
2022-02-25 16:25:20.358 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:25:30.879 [ERR] Parser#Parse
2022-02-25 16:25:30.885 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:25:40.317 [ERR] Parser#Parse
2022-02-25 16:25:40.324 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:25:50.975 [ERR] Parser#Parse
2022-02-25 16:25:50.981 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:26:00.827 [ERR] Parser#Parse
2022-02-25 16:26:00.834 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:26:10.372 [ERR] Parser#Parse
2022-02-25 16:26:10.380 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:26:20.820 [ERR] Parser#Parse
2022-02-25 16:26:20.826 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:26:30.391 [ERR] Parser#Parse
2022-02-25 16:26:30.397 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:26:40.824 [ERR] Parser#Parse
2022-02-25 16:26:40.831 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:26:49.893 [ERR] Parser#Parse
2022-02-25 16:26:49.899 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:27:00.327 [ERR] Parser#Parse
2022-02-25 16:27:00.334 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:27:10.858 [ERR] Parser#Parse
2022-02-25 16:27:10.865 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:27:20.309 [ERR] Parser#Parse
2022-02-25 16:27:20.316 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:27:30.856 [ERR] Parser#Parse
2022-02-25 16:27:30.862 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:27:39.803 [ERR] Parser#Parse
2022-02-25 16:27:39.810 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:27:50.356 [ERR] Parser#Parse
2022-02-25 16:27:50.362 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:28:00.815 [ERR] Parser#Parse
2022-02-25 16:28:00.824 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:28:10.377 [ERR] Parser#Parse
2022-02-25 16:28:10.384 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:28:20.311 [ERR] Parser#Parse
2022-02-25 16:28:20.318 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:28:30.895 [ERR] Parser#Parse
2022-02-25 16:28:30.902 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:28:40.380 [ERR] Parser#Parse
2022-02-25 16:28:40.387 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:28:50.905 [ERR] Parser#Parse
2022-02-25 16:28:50.912 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:28:59.864 [ERR] Parser#Parse
2022-02-25 16:28:59.870 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:29:10.399 [ERR] Parser#Parse
2022-02-25 16:29:10.406 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:29:20.831 [ERR] Parser#Parse
2022-02-25 16:29:20.836 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:29:29.875 [ERR] Parser#Parse
2022-02-25 16:29:29.881 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:29:40.336 [ERR] Parser#Parse
2022-02-25 16:29:40.342 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:29:50.907 [ERR] Parser#Parse
2022-02-25 16:29:50.913 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:30:00.349 [ERR] Parser#Parse
2022-02-25 16:30:00.356 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:30:10.891 [ERR] Parser#Parse
2022-02-25 16:30:10.898 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:30:19.837 [ERR] Parser#Parse
2022-02-25 16:30:19.843 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:30:30.386 [ERR] Parser#Parse
2022-02-25 16:30:30.391 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:30:40.874 [ERR] Parser#Parse
2022-02-25 16:30:40.881 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:30:50.423 [ERR] Parser#Parse
2022-02-25 16:30:50.430 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:31:00.369 [ERR] Parser#Parse
2022-02-25 16:31:00.374 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:31:10.892 [ERR] Parser#Parse
2022-02-25 16:31:10.898 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:31:20.343 [ERR] Parser#Parse
2022-02-25 16:31:20.349 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:31:30.919 [ERR] Parser#Parse
2022-02-25 16:31:30.925 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:31:39.959 [ERR] Parser#Parse
2022-02-25 16:31:39.965 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:31:50.402 [ERR] Parser#Parse
2022-02-25 16:31:50.408 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:32:00.871 [ERR] Parser#Parse
2022-02-25 16:32:00.877 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:32:10.430 [ERR] Parser#Parse
2022-02-25 16:32:10.436 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:32:20.352 [ERR] Parser#Parse
2022-02-25 16:32:20.358 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:32:30.857 [ERR] Parser#Parse
2022-02-25 16:32:30.863 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:32:40.333 [ERR] Parser#Parse
2022-02-25 16:32:40.339 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:32:50.913 [ERR] Parser#Parse
2022-02-25 16:32:50.919 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:32:59.826 [ERR] Parser#Parse
2022-02-25 16:32:59.833 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:33:10.390 [ERR] Parser#Parse
2022-02-25 16:33:10.397 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:33:20.838 [ERR] Parser#Parse
2022-02-25 16:33:20.845 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:33:30.441 [ERR] Parser#Parse
2022-02-25 16:33:30.448 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:33:40.855 [ERR] Parser#Parse
2022-02-25 16:33:40.861 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-02-25 16:33:48.782 [ERR] Reader#Run
2022-02-25 16:33:48.793 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-02-25 16:33:50.808 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-02-25 16:33:50.808 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-02-25 16:33:50.841 [ERR] HSMSPort::OnDisconnect Reconnect 3

View File

@@ -0,0 +1,5 @@
2022-03-17 16:07:29.611 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-17 16:08:00.671 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-17 16:55:13.625 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-17 16:55:44.671 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-17 16:56:15.715 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000

View File

@@ -0,0 +1,3 @@
2022-03-17 16:55:28.559 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-17 16:55:59.624 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-17 16:56:30.676 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000

View File

@@ -0,0 +1,11 @@
2022-03-18 09:33:18.008 [ERR] Parser#Parse
2022-03-18 09:33:18.018 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 09:34:03.516 [ERR] SystemBytes: 4, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-03-18 09:34:09.255 [ERR] Parser#Parse
2022-03-18 09:34:09.261 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 09:34:54.950 [ERR] SystemBytes: 16, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-03-18 09:37:12.106 [ERR] SystemBytes: 22, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-03-18 09:37:17.167 [ERR] SystemBytes: 23, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-03-18 09:46:31.451 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 09:47:02.521 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 09:47:33.581 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000

View File

@@ -0,0 +1,5 @@
2022-03-18 09:47:24.746 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 09:48:36.907 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 09:49:07.968 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 09:49:39.031 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 09:50:10.072 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000

View File

@@ -0,0 +1,14 @@
2022-03-18 09:49:42.373 [ERR] Parser#Parse
2022-03-18 09:49:42.394 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 09:51:43.912 [ERR] Parser#Parse
2022-03-18 09:51:43.921 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 09:52:29.407 [ERR] SystemBytes: 4, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-03-18 09:52:40.496 [ERR] SystemBytes: 16, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-03-18 09:54:13.087 [ERR] Parser#Parse
2022-03-18 09:54:13.096 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 09:54:58.591 [ERR] SystemBytes: 4, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-03-18 09:55:08.693 [ERR] SystemBytes: 16, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-03-18 09:55:16.765 [ERR] SystemBytes: 17, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-03-18 09:57:27.704 [ERR] Parser#Parse
2022-03-18 09:57:27.710 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 09:58:13.979 [ERR] Reader#Run

View File

@@ -0,0 +1,12 @@
2022-03-18 09:58:15.780 [ERR] Parser#Parse
2022-03-18 09:58:15.801 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 09:58:34.611 [ERR] Parser#Parse
2022-03-18 09:58:34.618 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 09:58:36.626 [ERR] Parser#Parse
2022-03-18 09:58:36.632 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 09:59:01.245 [ERR] SystemBytes: 4, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-03-18 09:59:34.666 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 10:00:05.717 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 10:00:36.756 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 10:01:07.829 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 10:01:38.872 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000

View File

@@ -0,0 +1,8 @@
2022-03-18 09:59:54.226 [ERR] Parser#Parse
2022-03-18 09:59:54.247 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 10:00:39.689 [ERR] SystemBytes: 4, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-03-18 10:00:46.755 [ERR] SystemBytes: 15, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-03-18 10:02:12.661 [ERR] Parser#Parse
2022-03-18 10:02:12.671 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 10:02:36.757 [ERR] Parser#Parse
2022-03-18 10:02:36.764 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.

View File

@@ -0,0 +1,3 @@
2022-03-18 10:02:23.246 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 10:02:58.321 [ERR] Parser#Parse
2022-03-18 10:02:58.331 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.

View File

@@ -0,0 +1,4 @@
2022-03-18 10:03:12.930 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 10:03:31.969 [ERR] Parser#Parse
2022-03-18 10:03:31.979 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 10:04:17.404 [ERR] SystemBytes: 4, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..

View File

@@ -0,0 +1,301 @@
2022-03-18 10:03:45.923 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 10:04:16.995 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 10:04:32.270 [ERR] Parser#Parse
2022-03-18 10:04:32.280 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 10:05:20.915 [ERR] Parser#Parse
2022-03-18 10:05:20.925 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 10:06:06.410 [ERR] SystemBytes: 4, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-03-18 10:06:14.697 [ERR] Parser#Parse
2022-03-18 10:06:14.703 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 10:06:24.135 [ERR] Parser#Parse
2022-03-18 10:06:24.142 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 10:06:25.639 [ERR] Parser#Parse
2022-03-18 10:06:25.645 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 10:09:32.303 [ERR] Parser#Parse
2022-03-18 10:09:32.312 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 10:10:17.792 [ERR] SystemBytes: 4, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-03-18 10:11:20.620 [ERR] Parser#Parse
2022-03-18 10:11:20.626 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 10:13:09.662 [ERR] Parser#Parse
2022-03-18 10:13:09.669 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 10:15:34.680 [ERR] Parser#Parse
2022-03-18 10:15:34.687 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 10:20:08.174 [ERR] Parser#Parse
2022-03-18 10:20:08.181 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 10:26:06.675 [ERR] Parser#Parse
2022-03-18 10:26:06.681 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 10:48:44.820 [ERR] Parser#Parse
2022-03-18 10:48:44.833 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 10:48:45.306 [ERR] Parser#Parse
2022-03-18 10:48:45.313 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 10:49:14.354 [ERR] Parser#Parse
2022-03-18 10:49:14.360 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 10:49:30.294 [ERR] SystemBytes: 4, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-03-18 10:54:06.340 [ERR] Parser#Parse
2022-03-18 10:54:06.346 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 10:56:27.371 [ERR] Parser#Parse
2022-03-18 10:56:27.377 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 10:57:20.338 [ERR] Parser#Parse
2022-03-18 10:57:20.344 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 10:57:23.651 [ERR] Parser#Parse
2022-03-18 10:57:23.657 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 11:15:05.192 [ERR] Parser#Parse
2022-03-18 11:15:10.322 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 11:15:10.328 [ERR] Parser#Parse
2022-03-18 11:15:10.334 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 11:20:21.151 [ERR] Parser#Parse
2022-03-18 11:20:21.157 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 11:20:21.262 [ERR] Parser#Parse
2022-03-18 11:20:21.268 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 11:24:45.080 [ERR] Parser#Parse
2022-03-18 11:24:45.086 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 11:24:45.092 [ERR] Parser#Parse
2022-03-18 11:24:45.105 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 11:27:59.670 [ERR] Parser#Parse
2022-03-18 11:27:59.676 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 11:28:04.745 [ERR] Parser#Parse
2022-03-18 11:28:04.759 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 13:44:11.331 [ERR] Parser#Parse
2022-03-18 13:44:11.340 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 13:44:11.417 [ERR] Parser#Parse
2022-03-18 13:44:11.423 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 13:47:07.369 [ERR] Parser#Parse
2022-03-18 13:47:07.375 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 13:47:07.447 [ERR] Parser#Parse
2022-03-18 13:47:07.453 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 13:48:42.401 [ERR] Parser#Parse
2022-03-18 13:48:42.407 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 13:52:25.785 [ERR] SystemBytes: 16, ERRCODE: RcvdAbortMessage, ERRDESC: Received Abort Message..
2022-03-18 13:53:17.232 [ERR] SystemBytes: 17, ERRCODE: RcvdAbortMessage, ERRDESC: Received Abort Message..
2022-03-18 13:56:21.760 [ERR] SystemBytes: 18, ERRCODE: RcvdAbortMessage, ERRDESC: Received Abort Message..
2022-03-18 13:56:45.433 [ERR] Parser#Parse
2022-03-18 13:56:45.439 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 13:56:59.394 [ERR] Parser#Parse
2022-03-18 13:56:59.399 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 13:58:38.921 [ERR] Parser#Parse
2022-03-18 13:58:38.927 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 13:58:58.903 [ERR] Parser#Parse
2022-03-18 13:58:58.909 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 13:59:26.370 [ERR] SystemBytes: 19, ERRCODE: RcvdAbortMessage, ERRDESC: Received Abort Message..
2022-03-18 13:59:28.218 [ERR] SystemBytes: 20, ERRCODE: RcvdAbortMessage, ERRDESC: Received Abort Message..
2022-03-18 14:02:16.413 [ERR] Parser#Parse
2022-03-18 14:02:16.419 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 14:02:20.428 [ERR] Parser#Parse
2022-03-18 14:02:20.434 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 14:03:01.929 [ERR] Parser#Parse
2022-03-18 14:03:01.935 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 14:04:07.540 [ERR] SystemBytes: 21, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-03-18 14:04:27.865 [ERR] Parser#Parse
2022-03-18 14:04:27.871 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 14:07:35.087 [ERR] SystemBytes: 22, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-03-18 14:07:39.132 [ERR] SystemBytes: 23, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-03-18 14:07:41.157 [ERR] SystemBytes: 24, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-03-18 14:08:53.910 [ERR] Parser#Parse
2022-03-18 14:08:53.916 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 14:09:09.888 [ERR] Parser#Parse
2022-03-18 14:09:09.894 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 14:40:18.949 [ERR] Parser#Parse
2022-03-18 14:40:18.958 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 14:42:32.594 [ERR] Parser#Parse
2022-03-18 14:42:32.600 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 14:42:54.618 [ERR] Parser#Parse
2022-03-18 14:42:54.624 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 14:43:11.597 [ERR] Parser#Parse
2022-03-18 14:43:11.603 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 14:45:00.363 [ERR] Parser#Parse
2022-03-18 14:45:00.369 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 15:04:09.266 [ERR] Reader#Run
2022-03-18 15:04:09.281 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:04:11.292 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:04:11.292 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:04:11.322 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:04:19.313 [ERR] Reader#Run
2022-03-18 15:04:19.319 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:04:21.330 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:04:21.330 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:04:21.361 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:04:29.356 [ERR] Reader#Run
2022-03-18 15:04:29.362 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:04:31.381 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:04:31.381 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:04:31.413 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:04:39.412 [ERR] Reader#Run
2022-03-18 15:04:39.418 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:04:41.436 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:04:41.436 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:04:41.466 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:04:49.460 [ERR] Reader#Run
2022-03-18 15:04:49.467 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:04:51.478 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:04:51.479 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:04:51.510 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:04:59.516 [ERR] Reader#Run
2022-03-18 15:04:59.523 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:05:01.540 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:05:01.540 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:05:01.571 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:05:09.589 [ERR] Reader#Run
2022-03-18 15:05:09.595 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:05:11.613 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:05:11.613 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:05:11.643 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:05:19.620 [ERR] Reader#Run
2022-03-18 15:05:19.626 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:05:21.635 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:05:21.635 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:05:21.665 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:05:29.674 [ERR] Reader#Run
2022-03-18 15:05:29.680 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:05:31.691 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:05:31.691 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:05:31.721 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:05:39.733 [ERR] Reader#Run
2022-03-18 15:05:39.739 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:05:41.754 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:05:41.755 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:05:41.785 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:05:49.778 [ERR] Reader#Run
2022-03-18 15:05:49.784 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:05:51.794 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:05:51.794 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:05:51.826 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:05:59.818 [ERR] Reader#Run
2022-03-18 15:05:59.824 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:06:01.839 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:06:01.839 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:06:01.870 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:06:09.867 [ERR] Reader#Run
2022-03-18 15:06:09.873 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:06:11.884 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:06:11.884 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:06:11.916 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:06:19.935 [ERR] Reader#Run
2022-03-18 15:06:19.941 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:06:21.950 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:06:21.950 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:06:21.981 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:06:30.017 [ERR] Reader#Run
2022-03-18 15:06:30.023 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:06:32.043 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:06:32.044 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:06:32.074 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:06:40.058 [ERR] Reader#Run
2022-03-18 15:06:40.064 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:06:42.080 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:06:42.080 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:06:42.110 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:06:50.104 [ERR] Reader#Run
2022-03-18 15:06:50.112 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:06:52.120 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:06:52.120 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:06:52.152 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:07:00.157 [ERR] Reader#Run
2022-03-18 15:07:00.163 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:07:02.182 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:07:02.183 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:07:02.213 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:07:10.191 [ERR] Reader#Run
2022-03-18 15:07:10.197 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:07:12.206 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:07:12.206 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:07:12.236 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:07:20.250 [ERR] Reader#Run
2022-03-18 15:07:20.256 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:07:22.275 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:07:22.275 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:07:22.305 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:07:30.296 [ERR] Reader#Run
2022-03-18 15:07:30.302 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:07:32.321 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:07:32.321 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:07:32.353 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:07:40.345 [ERR] Reader#Run
2022-03-18 15:07:40.352 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:07:42.367 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:07:42.367 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:07:42.398 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:07:50.400 [ERR] Reader#Run
2022-03-18 15:07:50.406 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:07:52.418 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:07:52.418 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:07:52.447 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:08:00.475 [ERR] Reader#Run
2022-03-18 15:08:00.482 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:08:02.490 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:08:02.490 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:08:02.520 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:08:10.510 [ERR] Reader#Run
2022-03-18 15:08:10.517 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:08:12.537 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:08:12.537 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:08:12.568 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:08:20.566 [ERR] Reader#Run
2022-03-18 15:08:20.573 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:08:22.592 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:08:22.592 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:08:22.623 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:19:09.605 [ERR] Parser#Parse
2022-03-18 15:19:09.612 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 15:28:00.516 [ERR] Parser#Parse
2022-03-18 15:28:00.525 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 15:28:00.530 [ERR] Parser#Parse
2022-03-18 15:28:00.536 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-18 15:45:38.284 [ERR] Reader#Run
2022-03-18 15:45:38.301 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-18 15:45:40.322 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-18 15:45:40.322 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-18 15:45:40.354 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-18 15:46:05.884 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.6.61.227:5000
2022-03-18 15:46:36.927 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.6.61.227:5000
2022-03-18 15:47:07.984 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.6.61.227:5000
2022-03-18 15:47:39.027 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.6.61.227:5000
2022-03-18 15:48:10.090 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.6.61.227:5000
2022-03-18 15:48:41.140 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.6.61.227:5000
2022-03-18 15:49:12.210 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.6.61.227:5000
2022-03-18 15:49:43.274 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.6.61.227:5000
2022-03-18 15:50:14.338 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.6.61.227:5000
2022-03-18 15:50:45.381 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.6.61.227:5000
2022-03-18 15:51:16.419 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.6.61.227:5000
2022-03-18 15:51:47.459 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.6.61.227:5000
2022-03-18 15:52:18.518 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.6.61.227:5000
2022-03-18 16:10:33.779 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:11:04.848 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:11:35.915 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:12:06.965 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:12:38.011 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:13:09.060 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:14:22.197 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:14:53.259 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:15:24.322 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:15:55.384 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:16:26.439 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:16:57.505 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:17:28.582 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:17:59.645 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:18:30.684 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:19:01.740 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:19:32.803 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:20:03.867 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:20:34.922 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:21:05.981 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:22:05.829 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:22:15.838 [ERR] 套接字操作尝试一个无法连接的主机。 7.185.92.72:5000
2022-03-18 16:22:25.855 [ERR] 套接字操作尝试一个无法连接的主机。 7.185.92.72:5000
2022-03-18 16:22:56.914 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:23:27.980 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:23:59.054 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:24:30.106 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:25:01.166 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:25:32.221 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:26:00.948 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:26:10.958 [ERR] 套接字操作尝试一个无法连接的主机。 7.185.92.72:5000
2022-03-18 16:26:42.016 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:27:13.064 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:27:44.111 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:28:15.171 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:33:27.178 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:33:44.377 [ERR] 套接字操作尝试一个无法连接的主机。 7.185.92.72:5000
2022-03-18 16:39:40.388 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:40:11.450 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:40:42.504 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-18 16:41:13.542 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000

View File

@@ -0,0 +1,460 @@
2022-03-23 09:45:11.606 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 09:46:09.069 [ERR] SystemBytes: 3, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-03-23 09:52:00.609 [ERR] Reader#Run
2022-03-23 10:19:36.927 [ERR] SystemBytes: 29, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..
2022-03-23 10:25:52.031 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:26:23.094 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:26:54.157 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:27:25.210 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:27:56.266 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:28:27.338 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:28:58.381 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:29:29.447 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:30:00.501 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:30:31.545 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:31:02.602 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:31:33.663 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:32:04.723 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:32:35.796 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:33:06.860 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:33:37.905 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:34:08.978 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:34:40.030 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:35:11.088 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:35:42.156 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:36:13.215 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:36:44.272 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:37:15.322 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:37:46.379 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:38:17.440 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:38:48.487 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:39:19.540 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:39:50.591 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:40:21.674 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:40:52.742 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:41:23.792 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:41:54.854 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:42:25.907 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:42:56.960 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:43:28.020 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:43:59.073 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:44:30.115 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:45:01.177 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:45:32.216 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:46:03.272 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:46:34.323 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:47:05.390 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:47:36.429 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:48:07.485 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:48:38.547 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:49:09.594 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:49:40.665 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:50:11.709 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:50:42.760 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:51:13.832 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:51:44.889 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:52:15.959 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:52:47.021 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:53:18.090 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:53:49.146 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:54:20.198 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:54:51.249 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:55:22.315 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:55:53.390 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:56:24.448 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:56:55.510 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:57:26.570 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:57:57.611 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:58:28.681 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:58:59.749 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 10:59:30.827 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:00:01.914 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:00:32.968 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:01:04.044 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:01:35.080 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:02:06.136 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:02:37.183 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:03:08.240 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:03:39.285 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:04:10.338 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:04:41.394 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:05:12.439 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:05:43.488 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:06:14.535 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:06:45.592 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:07:16.674 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:07:47.717 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:08:18.785 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:08:49.850 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:09:20.901 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:09:51.955 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:10:23.016 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:10:54.089 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:11:25.165 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:11:56.206 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:12:27.262 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:12:58.311 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:13:29.368 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:14:00.412 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:14:31.482 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:15:02.543 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:15:33.595 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:16:04.659 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:16:35.717 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:17:06.770 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:17:37.834 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:18:08.883 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:18:39.925 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:19:10.982 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:19:42.034 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:20:13.089 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:20:44.156 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:21:15.226 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:21:46.280 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:22:17.340 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:22:48.372 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:23:19.422 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:23:50.466 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:24:21.507 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:24:52.562 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:25:23.620 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:25:54.676 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:26:25.750 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:26:56.792 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:27:27.839 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:27:58.909 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:28:29.956 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:29:01.021 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:29:32.086 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:30:03.127 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:30:34.173 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:31:05.254 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:31:36.299 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:32:07.357 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:32:38.438 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:33:09.494 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:33:40.555 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:34:11.642 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:34:42.698 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:35:13.768 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:35:44.840 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:36:15.891 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:36:46.947 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:37:17.995 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:37:49.050 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:38:20.112 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:38:51.173 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:39:22.225 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:39:53.267 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:40:24.315 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:40:55.385 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:41:26.436 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:41:57.491 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:42:28.546 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:42:59.602 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:43:30.665 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:44:01.721 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:44:32.788 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:45:03.840 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:45:34.883 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:46:05.952 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:46:37.010 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:47:08.077 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:47:39.119 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:48:10.165 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:48:41.230 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:49:12.265 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:49:43.306 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:50:14.353 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:50:45.409 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:51:16.475 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:51:47.520 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:52:18.571 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:52:49.636 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:53:20.695 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:53:51.757 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:54:22.812 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:54:53.854 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:55:24.930 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:55:55.982 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:56:27.011 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:56:58.077 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:57:29.106 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:58:00.167 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:58:31.209 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:59:02.246 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 11:59:33.322 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:00:04.366 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:00:35.429 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:01:06.479 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:01:37.555 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:02:08.611 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:02:39.670 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:03:10.728 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:03:41.787 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:04:12.847 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:04:43.911 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:05:14.959 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:05:46.014 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:06:17.075 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:06:48.137 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:07:19.177 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:07:50.252 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:08:21.309 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:08:52.362 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:09:23.434 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:09:54.472 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:10:25.542 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:10:56.613 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:11:27.663 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:11:58.722 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:12:29.781 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:13:00.817 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:13:31.874 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:14:02.934 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:14:33.995 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:15:05.063 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:15:36.123 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:16:07.192 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:16:38.247 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:17:09.285 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:17:40.325 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:18:11.377 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:18:42.421 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:19:13.463 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:19:44.516 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:20:15.570 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:20:46.612 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:21:17.667 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:21:48.712 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:22:19.774 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:22:50.828 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:23:21.881 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:23:52.921 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:24:23.974 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:24:55.019 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:25:26.074 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:25:57.105 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:26:28.169 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:26:59.203 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:27:30.256 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:28:01.296 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:28:32.354 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:29:03.413 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:29:34.469 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:30:05.530 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:30:36.572 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:31:07.629 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:31:38.688 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:32:09.752 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:32:40.825 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:33:11.892 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:33:42.953 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:34:14.008 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:34:45.051 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:35:16.110 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:35:47.140 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:36:18.198 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:36:49.241 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:37:20.278 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:37:51.334 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:38:22.408 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:38:53.470 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:39:24.509 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:39:55.572 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:40:26.641 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:40:57.695 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:41:28.749 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:41:59.806 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:42:30.892 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:43:01.941 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:43:32.977 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:44:04.026 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:44:35.086 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:45:06.147 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:45:37.222 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:46:08.281 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:46:39.343 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:47:10.396 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:47:41.440 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:48:12.493 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:48:43.553 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:49:14.613 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:49:45.674 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:50:16.743 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:50:47.789 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:51:18.843 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:51:49.885 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:52:20.943 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:52:51.996 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:53:23.065 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:53:54.100 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:54:25.161 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:54:56.235 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:55:27.287 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:55:58.334 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:56:29.378 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:57:00.434 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:57:31.517 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:58:02.571 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:58:33.631 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:59:04.654 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 12:59:35.706 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:00:06.769 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:00:37.831 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:01:08.906 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:01:39.968 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:02:11.036 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:02:42.100 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:03:13.159 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:03:44.196 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:04:15.258 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:04:46.323 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:05:17.377 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:05:48.419 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:06:19.472 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:06:50.523 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:07:21.597 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:07:52.649 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:08:23.693 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:08:54.733 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:09:25.766 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:09:56.811 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:10:27.860 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:10:58.903 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:11:29.958 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:12:01.009 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:12:32.060 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:13:03.131 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:13:34.203 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:14:05.266 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:14:36.315 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:15:07.370 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:15:38.421 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:16:09.493 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:16:40.549 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:17:11.611 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:17:42.668 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:18:13.704 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:18:44.751 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:19:15.792 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:19:46.843 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:20:17.886 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:20:48.958 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:21:20.011 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:21:51.068 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:22:22.122 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:22:53.195 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:23:24.228 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:23:55.285 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:24:26.342 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:24:57.418 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:25:28.484 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:25:59.569 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:26:30.622 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:27:01.680 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:27:32.736 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:28:03.796 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:28:34.847 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:29:05.892 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:29:36.957 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:30:08.009 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:30:39.095 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:31:10.146 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:31:41.218 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:32:12.262 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:32:43.313 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:33:14.364 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:33:45.396 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:34:16.443 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:34:47.495 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:35:18.541 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:35:49.605 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:36:20.657 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:36:51.731 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:37:22.781 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:37:53.853 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:38:24.912 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:38:55.961 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:39:27.008 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:39:58.064 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:40:29.132 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:41:00.191 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:41:31.255 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:42:02.325 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:42:33.376 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:43:04.437 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:43:35.498 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:44:06.525 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:44:37.573 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:45:08.615 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:45:39.666 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:46:10.723 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:46:41.769 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:47:12.813 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:47:43.876 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:48:14.916 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:48:45.979 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:49:17.027 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:49:48.081 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:50:19.136 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:50:50.173 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:51:21.227 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:51:52.271 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:52:23.321 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:52:54.372 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:53:25.420 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:53:56.457 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:54:27.514 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:54:58.567 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:55:29.602 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:56:00.663 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:56:31.710 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:57:02.762 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:57:33.819 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:58:04.880 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:58:35.941 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:59:06.978 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 13:59:38.024 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:00:09.085 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:00:40.129 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:01:11.191 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:01:42.241 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:02:13.309 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:02:44.363 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:03:15.417 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:03:46.468 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:04:17.513 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:04:48.579 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:05:19.638 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:05:50.697 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:06:21.739 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:06:52.794 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:07:23.858 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:07:54.917 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:08:25.977 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:08:57.013 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:09:28.066 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:09:59.109 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:10:30.167 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:11:01.228 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:11:32.287 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:12:03.343 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:12:34.393 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:13:05.448 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:13:36.513 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:14:07.561 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:14:38.626 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:15:09.660 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:15:40.710 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:16:11.751 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:16:42.809 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:17:13.890 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:17:44.946 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:18:15.991 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:18:47.041 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:19:18.085 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:19:49.160 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:20:20.217 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:20:51.267 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-23 14:21:22.335 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000

View File

@@ -0,0 +1,220 @@
2022-03-23 13:45:15.455 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-23 13:45:15.469 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-23 13:45:15.495 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-23 13:45:18.729 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:45:30.773 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:45:42.819 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:45:54.853 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:46:06.904 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:46:18.935 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:46:30.981 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:46:43.037 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:46:55.077 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:47:07.129 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:47:19.168 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:47:31.224 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:47:43.271 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:47:55.318 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:48:07.368 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:48:19.405 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:48:31.453 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:48:43.486 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:48:55.537 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:49:07.574 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:49:19.608 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:49:31.655 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:49:43.695 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:49:55.724 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:50:07.783 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:50:19.814 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:50:31.856 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:50:43.915 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:50:55.954 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:51:07.978 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:51:20.010 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:51:32.067 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:51:44.106 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:51:56.158 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:52:08.222 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:52:20.283 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:52:32.339 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:52:44.377 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:52:56.425 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:53:08.477 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:53:20.513 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:53:32.540 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:53:44.586 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:53:56.633 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:54:08.678 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:54:20.723 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:54:32.777 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:54:44.812 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:54:56.865 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:55:08.920 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:55:20.962 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:55:32.995 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:55:45.047 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:55:57.079 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:56:09.137 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:56:21.189 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:56:33.245 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:56:45.283 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:56:57.336 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:57:09.377 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:57:21.434 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:57:33.477 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:57:45.527 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:57:57.568 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:58:09.608 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:58:21.644 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:58:33.695 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:58:45.743 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:58:57.779 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:59:09.825 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:59:21.856 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:59:33.894 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:59:45.941 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 13:59:57.994 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:00:10.044 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:00:22.078 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:00:34.127 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:00:46.166 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:00:58.226 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:01:10.268 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:01:22.307 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:01:34.342 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:01:46.392 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:01:58.439 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:02:10.476 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:02:22.516 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:02:34.566 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:02:46.623 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:02:58.669 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:03:10.719 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:03:22.752 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:03:34.805 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:03:46.851 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:03:58.906 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:04:10.957 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:04:22.982 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:04:35.009 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:04:47.049 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:04:59.089 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:05:11.122 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:05:23.156 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:05:35.196 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:05:47.233 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:05:59.302 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:06:11.346 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:06:23.403 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:06:35.434 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:06:47.454 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:06:59.508 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:07:11.556 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:07:23.594 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:07:35.635 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:07:47.678 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:07:59.718 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:08:11.762 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:08:23.809 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:08:35.868 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:08:47.927 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:08:59.989 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:09:12.020 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:09:24.052 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:09:36.095 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:09:48.135 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:10:00.172 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:10:12.216 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:10:24.259 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:10:36.291 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:10:48.344 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:11:00.384 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:11:12.450 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:11:24.490 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:11:36.546 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:11:48.594 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:12:00.644 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:12:12.701 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:12:24.742 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:12:36.794 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:12:48.828 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:13:00.879 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:13:12.929 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:13:24.993 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:13:37.041 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:13:49.079 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:14:01.115 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:14:13.159 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:14:25.206 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:14:37.276 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:14:49.311 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:15:01.383 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:15:13.432 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:15:25.479 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:15:37.525 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:15:49.568 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:16:01.602 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:16:13.656 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:16:25.709 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:16:37.746 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:16:49.785 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:17:01.829 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:17:13.884 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:17:25.949 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:17:37.980 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:17:50.010 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:18:02.069 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:18:14.119 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:18:26.159 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:18:38.203 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:18:50.251 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:19:02.301 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:19:14.336 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:19:26.384 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:19:38.417 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:19:50.465 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:20:02.499 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:20:14.567 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:20:26.615 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:20:38.670 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:20:50.715 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:21:02.760 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:21:14.789 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:21:26.831 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 14:21:38.878 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-23 15:57:03.481 [ERR] Reader#Run
2022-03-23 15:57:03.497 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-23 15:57:05.511 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-23 15:57:05.512 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-23 15:57:05.544 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-23 15:57:13.518 [ERR] Reader#Run
2022-03-23 15:57:13.524 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-23 15:57:15.538 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-23 15:57:15.538 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-23 15:57:15.570 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-23 15:57:23.568 [ERR] Reader#Run
2022-03-23 15:57:23.573 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-23 15:57:25.583 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-23 15:57:25.583 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-23 15:57:25.615 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-23 15:57:33.632 [ERR] Reader#Run
2022-03-23 15:57:33.637 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-23 15:57:35.658 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-23 15:57:35.658 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-23 15:57:35.690 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-23 15:57:43.685 [ERR] Reader#Run
2022-03-23 15:57:43.691 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-23 15:57:45.711 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-23 15:57:45.712 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-23 15:57:45.754 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-23 15:57:53.740 [ERR] Reader#Run
2022-03-23 15:57:53.746 [ERR] SystemBytes: null, ERRCODE: ReadError, ERRDESC: Read Error: Socket Error..
2022-03-23 15:57:55.755 [ERR] HSMSPort::OnDisconnect To Reconnect 1
2022-03-23 15:57:55.755 [ERR] HSMSPort::OnDisconnect Reconnect 2
2022-03-23 15:57:55.788 [ERR] HSMSPort::OnDisconnect Reconnect 3
2022-03-23 16:15:20.350 [ERR] CheckT3Timeout:
2022-03-23 16:18:10.693 [ERR] Parser#Parse
2022-03-23 16:18:10.702 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.
2022-03-23 16:18:10.784 [ERR] Parser#Parse
2022-03-23 16:18:10.794 [ERR] SystemBytes: null, ERRCODE: ParseError, ERRDESC: Parse Error: 索引超出了数组界限。.

View File

@@ -0,0 +1,3 @@
2022-03-28 14:18:51.206 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-28 14:19:03.262 [ERR] 由于目标计算机积极拒绝,无法连接。 127.0.0.1:5000
2022-03-28 14:20:00.779 [ERR] SystemBytes: 3, ERRCODE: T3TimeOut, ERRDESC: T3 TimeOut: Reply Timeout..

View File

@@ -0,0 +1,23 @@
2022-03-28 14:19:01.829 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.6.61.227:5000
2022-03-28 14:19:32.903 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.6.61.227:5000
2022-03-28 14:20:03.972 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.6.61.227:5000
2022-03-28 14:20:35.028 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.6.61.227:5000
2022-03-28 14:21:06.074 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.6.61.227:5000
2022-03-28 14:21:37.128 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.6.61.227:5000
2022-03-28 14:22:08.180 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.6.61.227:5000
2022-03-28 14:27:07.353 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 14:27:39.184 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 14:28:10.221 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 14:28:41.273 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 14:29:12.316 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 14:29:43.367 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 14:30:14.441 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 14:30:45.495 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 14:31:16.555 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 14:31:47.607 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 14:32:18.677 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 14:32:49.741 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 14:33:20.800 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:28:34.441 [ERR] Reader#Run
2022-03-28 16:29:58.158 [ERR] CheckT3Timeout:
2022-03-28 16:30:21.011 [ERR] Reader#Run

View File

@@ -0,0 +1,30 @@
2022-03-28 16:31:33.141 [ERR] Reader#Run
2022-03-28 16:32:43.577 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:33:17.237 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:33:48.294 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:34:19.352 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:34:50.407 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:35:21.447 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:35:52.514 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:36:23.563 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:36:54.595 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:37:25.674 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:37:56.731 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:38:27.790 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:38:58.837 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:39:29.870 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:40:00.923 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:40:31.982 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:41:03.035 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:41:34.108 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:42:05.174 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:42:36.229 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:43:07.306 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:43:38.347 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:44:09.399 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:44:40.453 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:45:11.493 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:45:42.541 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:46:13.588 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:46:44.656 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000
2022-03-28 16:47:15.713 [ERR] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 7.185.92.72:5000

Some files were not shown because too many files have changed in this diff Show More