correction de bugs + commentaires
This commit is contained in:
parent
7701a41e91
commit
d39c0de48e
76 changed files with 453 additions and 9504 deletions
Binary file not shown.
|
@ -198,6 +198,8 @@ namespace RTSP_DSLink
|
|||
{
|
||||
Responder.SuperRoot.CreateChild("createStream", "streamAdd").BuildNode();
|
||||
Responder.SuperRoot.CreateChild("createAlarm", "alarmAdd").BuildNode();
|
||||
Responder.SuperRoot.CreateChild("alarms").BuildNode();
|
||||
Responder.SuperRoot.CreateChild("streams").BuildNode();
|
||||
SaveNodes();
|
||||
//Responder.SuperRoot.CreateChild("removeStream", "remove").BuildNode();
|
||||
}
|
||||
|
@ -209,8 +211,12 @@ namespace RTSP_DSLink
|
|||
var address = request.Parameters["RSTP URL"].Value<string>();
|
||||
var streamName = request.Parameters["Stream name"].Value<string>();
|
||||
int port = 8081;
|
||||
Responder.SuperRoot.Children.TryGetValue("streams", out Node streamRootNode);
|
||||
|
||||
if (string.IsNullOrEmpty(address)) return;
|
||||
if (string.IsNullOrEmpty(streamName)) return;
|
||||
if (streamRootNode == null) return;
|
||||
if (streamRootNode.Children.ContainsKey(streamName)) return;
|
||||
|
||||
while (PortInUse(port))
|
||||
port++;
|
||||
|
@ -229,10 +235,9 @@ namespace RTSP_DSLink
|
|||
}
|
||||
}*/
|
||||
|
||||
if (string.IsNullOrEmpty(streamName)) return;
|
||||
if (Responder.SuperRoot.Children.ContainsKey(streamName)) return;
|
||||
|
||||
|
||||
var stream = Responder.SuperRoot.CreateChild(streamName, "stream").BuildNode();
|
||||
var stream = streamRootNode.CreateChild(streamName, "stream").BuildNode();
|
||||
|
||||
stream.Value.Set(port);
|
||||
stream.CreateChild("remove", "removeNode").BuildNode();
|
||||
|
@ -273,13 +278,14 @@ namespace RTSP_DSLink
|
|||
var address = request.Parameters["Raspberry Pi IP Address"].Value<string>();
|
||||
var port = request.Parameters["Port Number"].Value<int>();
|
||||
var pin = request.Parameters["GPIO Pin"].Value<int>();
|
||||
Responder.SuperRoot.Children.TryGetValue("alarms", out Node alarmRootNode);
|
||||
|
||||
if (string.IsNullOrEmpty(alarmName)) return;
|
||||
//if (string.IsNullOrEmpty(cameraName)) return;
|
||||
if (Responder.SuperRoot.Children.ContainsKey(alarmName)) return;
|
||||
if (alarmRootNode.Children.ContainsKey(alarmName)) return;
|
||||
//if (!Responder.SuperRoot.Children.ContainsKey(cameraName)) return;
|
||||
|
||||
var alarm = Responder.SuperRoot.CreateChild(alarmName, "alarm").BuildNode();
|
||||
var alarm = alarmRootNode.CreateChild(alarmName, "alarm").BuildNode();
|
||||
|
||||
alarm.CreateChild("remove", "removeNode").BuildNode();
|
||||
var ts = new CancellationTokenSource();
|
||||
|
@ -303,35 +309,40 @@ namespace RTSP_DSLink
|
|||
{
|
||||
//Console.WriteLine(request.Path);
|
||||
|
||||
//on récupère le nom du noeud ayant envoyé la requête
|
||||
//dans le chemin de la requête en utilisant une regex (le chemin se terminant par /noeud/remove)
|
||||
var nodeName = Regex.Replace(request.Path, "^.*\\/([^\\/]*)\\/remove$", "$1");
|
||||
//Console.WriteLine(streamName);
|
||||
|
||||
|
||||
Responder.SuperRoot.Children.TryGetValue(nodeName, out Node node);
|
||||
if (node != null)
|
||||
//on récupère le nom et le type du noeud ayant envoyé la requête
|
||||
//dans le chemin de la requête en utilisant une regex (le chemin se terminant par /type/noeud/remove)
|
||||
var parentName = Regex.Replace(request.Path, "^.*\\/([^\\/]*)\\/([^\\/]*)\\/remove$", "$1");
|
||||
var nodeName = Regex.Replace(request.Path, "^.*\\/([^\\/]*)\\/([^\\/]*)\\/remove$", "$2");
|
||||
/*Console.WriteLine(nodeName);
|
||||
Console.WriteLine(parentName);*/
|
||||
|
||||
Responder.SuperRoot.Children.TryGetValue(parentName, out Node parent);
|
||||
if(parent != null)
|
||||
{
|
||||
if (node.ClassName == "stream")
|
||||
parent.Children.TryGetValue(nodeName, out Node node);
|
||||
if (node != null)
|
||||
{
|
||||
var port = node.Value.Int;
|
||||
_processes.TryGetValue(nodeName, out Process proc);
|
||||
if (proc != null)
|
||||
proc.Kill();
|
||||
_processes.Remove(nodeName);
|
||||
if (node.ClassName == "stream")
|
||||
{
|
||||
var port = node.Value.Int;
|
||||
_processes.TryGetValue(nodeName, out Process proc);
|
||||
if (proc != null)
|
||||
proc.Kill();
|
||||
_processes.Remove(nodeName);
|
||||
|
||||
/*System.Diagnostics.Process.Start("CMD.exe", "/C FOR /F \"tokens=5 delims= \" %P IN ('netstat -a -n -o ^|" +
|
||||
"findstr :" + stream.Value.Int + "') DO @ECHO taskkill /F /PID %P");*/
|
||||
/*System.Diagnostics.Process.Start("CMD.exe", "/C FOR /F \"tokens=5 delims= \" %P IN ('netstat -a -n -o ^|" +
|
||||
"findstr :" + stream.Value.Int + "') DO @ECHO taskkill /F /PID %P");*/
|
||||
|
||||
//FOR /F "tokens=5 delims= " %P IN('netstat -a -n -o | findstr :8081') DO @ECHO TaskKill.exe /PID %P
|
||||
//FOR /F "tokens=5 delims= " %P IN('netstat -a -n -o | findstr :8081') DO @ECHO TaskKill.exe /PID %P
|
||||
}
|
||||
else if (node.ClassName == "alarm")
|
||||
{
|
||||
_alarmCTs.TryGetValue(nodeName, out CancellationTokenSource ts);
|
||||
if (ts != null)
|
||||
ts.Cancel();
|
||||
}
|
||||
parent.RemoveChild(nodeName);
|
||||
}
|
||||
else if (node.ClassName == "alarm")
|
||||
{
|
||||
_alarmCTs.TryGetValue(nodeName, out CancellationTokenSource ts);
|
||||
if(ts != null)
|
||||
ts.Cancel();
|
||||
}
|
||||
Responder.SuperRoot.RemoveChild(nodeName);
|
||||
}
|
||||
|
||||
await request.Close();
|
||||
|
@ -345,31 +356,38 @@ namespace RTSP_DSLink
|
|||
|
||||
private async void _updateAlarm(Node alarm, string addr, int port, int pin, CancellationToken ct)
|
||||
{
|
||||
using (var driver = new Driver(new IPEndPoint(IPAddress.Parse(addr), port)))
|
||||
try
|
||||
{
|
||||
await driver.ConnectAsync();
|
||||
await Task.Delay(TimeSpan.FromSeconds(1)); //Give the socket time to get connected
|
||||
|
||||
Console.WriteLine("Connected");
|
||||
|
||||
using (var controller = new GpioController(PinNumberingScheme.Logical, driver))
|
||||
using (var driver = new Driver(new IPEndPoint(IPAddress.Parse(addr), port)))
|
||||
{
|
||||
controller.OpenPin(pin);
|
||||
controller.SetPinMode(pin, PinMode.InputPullUp);
|
||||
await driver.ConnectAsync();
|
||||
await Task.Delay(TimeSpan.FromSeconds(1)); //Give the socket time to get connected
|
||||
|
||||
while (!ct.IsCancellationRequested)
|
||||
Console.WriteLine("Connected");
|
||||
|
||||
using (var controller = new GpioController(PinNumberingScheme.Logical, driver))
|
||||
{
|
||||
controller.WaitForEvent(pin, PinEventTypes.Falling, ct);
|
||||
if(!ct.IsCancellationRequested)
|
||||
controller.OpenPin(pin);
|
||||
controller.SetPinMode(pin, PinMode.InputPullUp);
|
||||
|
||||
while (!ct.IsCancellationRequested)
|
||||
{
|
||||
Console.WriteLine("Beep boop");
|
||||
alarm.Value.Set(true);
|
||||
controller.WaitForEvent(pin, PinEventTypes.Falling, ct);
|
||||
if (!ct.IsCancellationRequested)
|
||||
{
|
||||
Console.WriteLine("Beep boop");
|
||||
alarm.Value.Set(true);
|
||||
}
|
||||
}
|
||||
Console.WriteLine("Task cancelled");
|
||||
controller.ClosePin(pin);
|
||||
}
|
||||
Console.WriteLine("Task cancelled");
|
||||
controller.ClosePin(pin);
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Console.WriteLine(e.GetType() + ":" + e.Message);
|
||||
}
|
||||
}
|
||||
|
||||
#region Initialize Logging
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -1,5 +0,0 @@
|
|||
2021-07-30 09:43:15.793 +02:00 [Information] Handshaking with http://localhost:8080/conn?dsId=RSTP_Test3-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-07-30 09:43:18.537 +02:00 [Information] Handshake successful
|
||||
2021-07-30 09:43:19.001 +02:00 [Information] Connecting
|
||||
2021-07-30 09:43:19.031 +02:00 [Information] WebSocket connecting to ws://localhost:8080/ws?dsId=RSTP_Test3-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=ZI0S3FYjOpJ6RFGUB0AJdQz1L66DY40JexmnWbFRdW0&format=msgpack
|
||||
2021-07-30 09:43:21.172 +02:00 [Information] Connected to ws://localhost:8080/ws?dsId=RSTP_Test3-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=ZI0S3FYjOpJ6RFGUB0AJdQz1L66DY40JexmnWbFRdW0&format=msgpack
|
|
@ -1,137 +0,0 @@
|
|||
2021-08-02 13:50:42.944 +02:00 [Information] Handshaking with http://localhost:8080/conn?dsId=RSTP_Test3-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-02 13:51:41.611 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-02 13:51:42.663 +02:00 [Information] Handshake successful
|
||||
2021-08-02 13:51:43.442 +02:00 [Information] Connecting
|
||||
2021-08-02 13:51:43.489 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=uhl97qol-LJctTsc1JFBBvNw_sEimFGBhB3faZZJtnU&format=msgpack
|
||||
2021-08-02 13:51:43.635 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=uhl97qol-LJctTsc1JFBBvNw_sEimFGBhB3faZZJtnU&format=msgpack
|
||||
2021-08-02 14:34:19.228 +02:00 [Warning] Failed to load nodes.json
|
||||
2021-08-02 14:34:19.348 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json
|
||||
2021-08-02 14:34:19.565 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken)
|
||||
at DSLink.VFS.SystemVFS._getFile(String fileName)
|
||||
at DSLink.VFS.SystemVFS.ReadAsync(String fileName)
|
||||
at DSLink.Respond.DiskSerializer.DeserializeFromDisk()
|
||||
2021-08-02 14:34:19.708 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-02 14:34:20.422 +02:00 [Information] Handshake successful
|
||||
2021-08-02 14:34:21.158 +02:00 [Information] Connecting
|
||||
2021-08-02 14:34:21.216 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=ODxOscstQta0tvbEL7qP9asNm-ruY0cO5FS59ic3iLg&format=msgpack
|
||||
2021-08-02 14:34:21.361 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=ODxOscstQta0tvbEL7qP9asNm-ruY0cO5FS59ic3iLg&format=msgpack
|
||||
2021-08-02 14:35:38.680 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-02 14:35:39.471 +02:00 [Information] Handshake successful
|
||||
2021-08-02 14:35:39.956 +02:00 [Information] Connecting
|
||||
2021-08-02 14:35:40.030 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=imEeLF8hF0q7ChooQmo5CsGjIf25PFZcRNR1EozTcog&format=msgpack
|
||||
2021-08-02 14:35:40.142 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=imEeLF8hF0q7ChooQmo5CsGjIf25PFZcRNR1EozTcog&format=msgpack
|
||||
2021-08-02 14:36:55.341 +02:00 [Warning] Failed to load nodes.json
|
||||
2021-08-02 14:36:55.501 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json
|
||||
2021-08-02 14:36:55.670 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken)
|
||||
at DSLink.VFS.SystemVFS._getFile(String fileName)
|
||||
at DSLink.VFS.SystemVFS.ReadAsync(String fileName)
|
||||
at DSLink.Respond.DiskSerializer.DeserializeFromDisk()
|
||||
2021-08-02 14:36:55.743 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-02 14:36:56.450 +02:00 [Information] Handshake successful
|
||||
2021-08-02 14:36:56.788 +02:00 [Information] Connecting
|
||||
2021-08-02 14:36:56.867 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=PQrt57OWxkEJODmDyqmYIGr81Cd6LkMSxeMd9IDGNTk&format=msgpack
|
||||
2021-08-02 14:36:57.006 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=PQrt57OWxkEJODmDyqmYIGr81Cd6LkMSxeMd9IDGNTk&format=msgpack
|
||||
2021-08-02 14:45:15.520 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-02 14:45:16.224 +02:00 [Information] Handshake successful
|
||||
2021-08-02 14:45:16.858 +02:00 [Information] Connecting
|
||||
2021-08-02 14:45:16.953 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=LliHPiJv3YLrT1AwlAPUj3s52vEcvswjBMhX3n9hsIQ&format=msgpack
|
||||
2021-08-02 14:45:17.043 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=LliHPiJv3YLrT1AwlAPUj3s52vEcvswjBMhX3n9hsIQ&format=msgpack
|
||||
2021-08-02 15:05:11.773 +02:00 [Warning] Failed to load nodes.json
|
||||
2021-08-02 15:05:11.895 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json
|
||||
2021-08-02 15:05:12.135 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken)
|
||||
at DSLink.VFS.SystemVFS._getFile(String fileName)
|
||||
at DSLink.VFS.SystemVFS.ReadAsync(String fileName)
|
||||
at DSLink.Respond.DiskSerializer.DeserializeFromDisk()
|
||||
2021-08-02 15:05:12.216 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-02 15:05:12.775 +02:00 [Information] Handshake successful
|
||||
2021-08-02 15:05:13.146 +02:00 [Information] Connecting
|
||||
2021-08-02 15:05:13.200 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=8_IBgIIzs9F0GftK--bSy47OJ47V8iQZQbu5Zn_HdC0&format=msgpack
|
||||
2021-08-02 15:05:13.301 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=8_IBgIIzs9F0GftK--bSy47OJ47V8iQZQbu5Zn_HdC0&format=msgpack
|
||||
2021-08-02 15:23:30.345 +02:00 [Warning] Failed to load nodes.json
|
||||
2021-08-02 15:23:30.945 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json
|
||||
2021-08-02 15:23:31.041 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken)
|
||||
at DSLink.VFS.SystemVFS._getFile(String fileName)
|
||||
at DSLink.VFS.SystemVFS.ReadAsync(String fileName)
|
||||
at DSLink.Respond.DiskSerializer.DeserializeFromDisk()
|
||||
2021-08-02 15:23:31.147 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-02 15:23:32.012 +02:00 [Information] Handshake successful
|
||||
2021-08-02 15:23:32.694 +02:00 [Information] Connecting
|
||||
2021-08-02 15:23:32.783 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=MqtkDt1G1TO0CnxkbQrTNvU3LGNOeqsBHeI_XL_M6Q4&format=msgpack
|
||||
2021-08-02 15:23:33.134 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=MqtkDt1G1TO0CnxkbQrTNvU3LGNOeqsBHeI_XL_M6Q4&format=msgpack
|
||||
2021-08-02 15:24:27.414 +02:00 [Warning] Failed to load nodes.json
|
||||
2021-08-02 15:24:27.517 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json
|
||||
2021-08-02 15:24:27.624 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken)
|
||||
at DSLink.VFS.SystemVFS._getFile(String fileName)
|
||||
at DSLink.VFS.SystemVFS.ReadAsync(String fileName)
|
||||
at DSLink.Respond.DiskSerializer.DeserializeFromDisk()
|
||||
2021-08-02 15:24:27.720 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-02 15:24:28.544 +02:00 [Information] Handshake successful
|
||||
2021-08-02 15:24:28.956 +02:00 [Information] Connecting
|
||||
2021-08-02 15:24:29.016 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=91NDc7aEGIm0ZaI1idI5PZcvlzF2NJlKp0vqN5zGk_A&format=msgpack
|
||||
2021-08-02 15:24:29.156 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=91NDc7aEGIm0ZaI1idI5PZcvlzF2NJlKp0vqN5zGk_A&format=msgpack
|
||||
2021-08-02 15:36:07.616 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-02 15:36:08.470 +02:00 [Information] Handshake successful
|
||||
2021-08-02 15:36:08.910 +02:00 [Information] Connecting
|
||||
2021-08-02 15:36:08.971 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=kNXRX8md71HUGQYqMdfmhFkEiC7SsQeVn87VyuxajK8&format=msgpack
|
||||
2021-08-02 15:36:09.047 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=kNXRX8md71HUGQYqMdfmhFkEiC7SsQeVn87VyuxajK8&format=msgpack
|
||||
2021-08-02 15:37:13.892 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-02 15:37:14.418 +02:00 [Information] Handshake successful
|
||||
2021-08-02 15:37:14.765 +02:00 [Information] Connecting
|
||||
2021-08-02 15:37:14.819 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=8zvw8rDqIFXrIKvqE1ftulG7BM_rLNb7bb-AdHK37ks&format=msgpack
|
||||
2021-08-02 15:37:14.947 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=8zvw8rDqIFXrIKvqE1ftulG7BM_rLNb7bb-AdHK37ks&format=msgpack
|
||||
2021-08-02 15:37:59.300 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-02 15:37:59.804 +02:00 [Information] Handshake successful
|
||||
2021-08-02 15:38:00.225 +02:00 [Information] Connecting
|
||||
2021-08-02 15:38:00.299 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=p1_Cwft2j9YTdcwyz2KcIDSZXii5JQUNSUkT4FQwUUA&format=msgpack
|
||||
2021-08-02 15:38:00.365 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=p1_Cwft2j9YTdcwyz2KcIDSZXii5JQUNSUkT4FQwUUA&format=msgpack
|
||||
2021-08-02 15:40:46.878 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-02 15:40:47.752 +02:00 [Information] Handshake successful
|
||||
2021-08-02 15:40:48.027 +02:00 [Information] Connecting
|
||||
2021-08-02 15:40:48.090 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=hmcLWMoqCo7LV889eG8XN-epvd8iyxXAwUPgIE49bk0&format=msgpack
|
||||
2021-08-02 15:40:48.145 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=hmcLWMoqCo7LV889eG8XN-epvd8iyxXAwUPgIE49bk0&format=msgpack
|
||||
2021-08-02 15:42:44.204 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-02 15:42:44.899 +02:00 [Information] Handshake successful
|
||||
2021-08-02 15:42:45.251 +02:00 [Information] Connecting
|
||||
2021-08-02 15:42:45.317 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=BBaRuoEhEOnDNHdd225-F9s2w_BWRaiFU7RvoHNye70&format=msgpack
|
||||
2021-08-02 15:42:45.419 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=BBaRuoEhEOnDNHdd225-F9s2w_BWRaiFU7RvoHNye70&format=msgpack
|
||||
2021-08-02 15:44:48.828 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-02 15:44:49.600 +02:00 [Information] Handshake successful
|
||||
2021-08-02 15:44:49.997 +02:00 [Information] Connecting
|
||||
2021-08-02 15:44:50.084 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=-w52j8pLBXA9LKUVoeIMzIjQLBLC3cfaU4UcBsscqAI&format=msgpack
|
||||
2021-08-02 15:44:50.248 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=-w52j8pLBXA9LKUVoeIMzIjQLBLC3cfaU4UcBsscqAI&format=msgpack
|
||||
2021-08-02 16:04:38.986 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-02 16:04:39.683 +02:00 [Information] Handshake successful
|
||||
2021-08-02 16:04:39.993 +02:00 [Information] Connecting
|
||||
2021-08-02 16:04:40.036 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=MKQAEE5Jis75YBh0JZDlzVoj6ug03k22oVjNtKWXlRc&format=msgpack
|
||||
2021-08-02 16:04:40.124 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=MKQAEE5Jis75YBh0JZDlzVoj6ug03k22oVjNtKWXlRc&format=msgpack
|
||||
2021-08-02 16:07:26.733 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-02 16:07:27.487 +02:00 [Information] Handshake successful
|
||||
2021-08-02 16:07:28.240 +02:00 [Information] Connecting
|
||||
2021-08-02 16:07:28.320 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=xU27aIt1tzrE-2jGTf3f10AGbRHl4Kpiormd5gRmDhU&format=msgpack
|
||||
2021-08-02 16:07:28.421 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=xU27aIt1tzrE-2jGTf3f10AGbRHl4Kpiormd5gRmDhU&format=msgpack
|
||||
2021-08-02 16:10:00.222 +02:00 [Warning] Failed to load nodes.json
|
||||
2021-08-02 16:10:00.334 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json
|
||||
2021-08-02 16:10:00.499 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken)
|
||||
at DSLink.VFS.SystemVFS._getFile(String fileName)
|
||||
at DSLink.VFS.SystemVFS.ReadAsync(String fileName)
|
||||
at DSLink.Respond.DiskSerializer.DeserializeFromDisk()
|
||||
2021-08-02 16:10:00.566 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-02 16:10:01.090 +02:00 [Information] Handshake successful
|
||||
2021-08-02 16:10:01.437 +02:00 [Information] Connecting
|
||||
2021-08-02 16:10:01.466 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=t09OJX_lXJF71GtOiQjXu-V6kEfCxohRpXqGKTRfOsA&format=msgpack
|
||||
2021-08-02 16:10:01.525 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=t09OJX_lXJF71GtOiQjXu-V6kEfCxohRpXqGKTRfOsA&format=msgpack
|
||||
2021-08-02 16:12:57.439 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-02 16:12:58.046 +02:00 [Information] Handshake successful
|
||||
2021-08-02 16:12:58.325 +02:00 [Information] Connecting
|
||||
2021-08-02 16:12:58.438 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=JQUHQceTDOsUz3-5IWBWgSVznZ8o_bpsBxRFR2WGSNY&format=msgpack
|
||||
2021-08-02 16:12:58.580 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=JQUHQceTDOsUz3-5IWBWgSVznZ8o_bpsBxRFR2WGSNY&format=msgpack
|
||||
2021-08-02 16:13:57.017 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-02 16:13:57.507 +02:00 [Information] Handshake successful
|
||||
2021-08-02 16:13:57.873 +02:00 [Information] Connecting
|
||||
2021-08-02 16:13:58.022 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=KEgjreMZ8LATOlDfPf1a0v2s0XPAx6wBhQKJpXTMuYg&format=msgpack
|
||||
2021-08-02 16:13:58.174 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=KEgjreMZ8LATOlDfPf1a0v2s0XPAx6wBhQKJpXTMuYg&format=msgpack
|
||||
2021-08-02 16:15:10.931 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-02 16:15:11.735 +02:00 [Information] Handshake successful
|
||||
2021-08-02 16:15:11.937 +02:00 [Information] Connecting
|
||||
2021-08-02 16:15:11.984 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=8BcKgvQO1DR6vVdJO0GeIuubq7_80xDV-zpxb6ZVhXI&format=msgpack
|
||||
2021-08-02 16:15:12.087 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=8BcKgvQO1DR6vVdJO0GeIuubq7_80xDV-zpxb6ZVhXI&format=msgpack
|
|
@ -1,129 +0,0 @@
|
|||
2021-08-03 11:03:44.122 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-03 11:03:45.752 +02:00 [Information] Handshake successful
|
||||
2021-08-03 11:03:46.945 +02:00 [Information] Connecting
|
||||
2021-08-03 11:03:47.010 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=B0sKiYxR4Q-MphyQBZJEF9-5YYiOtHyJGAAXimqympI&format=msgpack
|
||||
2021-08-03 11:03:47.254 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=B0sKiYxR4Q-MphyQBZJEF9-5YYiOtHyJGAAXimqympI&format=msgpack
|
||||
2021-08-03 11:30:52.942 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-03 11:30:53.558 +02:00 [Information] Handshake successful
|
||||
2021-08-03 11:30:53.749 +02:00 [Information] Connecting
|
||||
2021-08-03 11:30:53.791 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=VhcS9rCG3lgMQWshLxv2rHK0XRwZTgl3WuHzfxqncSQ&format=msgpack
|
||||
2021-08-03 11:30:53.856 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=VhcS9rCG3lgMQWshLxv2rHK0XRwZTgl3WuHzfxqncSQ&format=msgpack
|
||||
2021-08-03 11:31:27.638 +02:00 [Warning] Failed to load nodes.json
|
||||
2021-08-03 11:31:27.724 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json
|
||||
2021-08-03 11:31:28.350 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken)
|
||||
at DSLink.VFS.SystemVFS._getFile(String fileName)
|
||||
at DSLink.VFS.SystemVFS.ReadAsync(String fileName)
|
||||
at DSLink.Respond.DiskSerializer.DeserializeFromDisk()
|
||||
2021-08-03 11:31:28.416 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-03 11:31:29.164 +02:00 [Information] Handshake successful
|
||||
2021-08-03 11:31:29.535 +02:00 [Information] Connecting
|
||||
2021-08-03 11:31:29.647 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=gpv5jA0dwOIVN0zc439RLXHK0GXBSxInZeKmYucTRUU&format=msgpack
|
||||
2021-08-03 11:31:29.867 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=gpv5jA0dwOIVN0zc439RLXHK0GXBSxInZeKmYucTRUU&format=msgpack
|
||||
2021-08-03 11:33:10.676 +02:00 [Warning] Failed to load nodes.json
|
||||
2021-08-03 11:33:10.790 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json
|
||||
2021-08-03 11:33:10.939 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken)
|
||||
at DSLink.VFS.SystemVFS._getFile(String fileName)
|
||||
at DSLink.VFS.SystemVFS.ReadAsync(String fileName)
|
||||
at DSLink.Respond.DiskSerializer.DeserializeFromDisk()
|
||||
2021-08-03 11:33:11.166 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-03 11:33:12.404 +02:00 [Information] Handshake successful
|
||||
2021-08-03 11:33:12.778 +02:00 [Information] Connecting
|
||||
2021-08-03 11:33:12.812 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=Bli_OxHVHntLF9zADsjwqEbn8EhWQ-CGJmK9WIDLf10&format=msgpack
|
||||
2021-08-03 11:33:12.930 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=Bli_OxHVHntLF9zADsjwqEbn8EhWQ-CGJmK9WIDLf10&format=msgpack
|
||||
2021-08-03 11:35:36.583 +02:00 [Warning] Failed to load nodes.json
|
||||
2021-08-03 11:35:36.671 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json
|
||||
2021-08-03 11:35:36.770 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken)
|
||||
at DSLink.VFS.SystemVFS._getFile(String fileName)
|
||||
at DSLink.VFS.SystemVFS.ReadAsync(String fileName)
|
||||
at DSLink.Respond.DiskSerializer.DeserializeFromDisk()
|
||||
2021-08-03 11:35:36.833 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-03 11:35:37.483 +02:00 [Information] Handshake successful
|
||||
2021-08-03 11:35:37.965 +02:00 [Information] Connecting
|
||||
2021-08-03 11:35:38.069 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=N3aAK1S7jWsz6Xeixb3agtCf8MXr0x-e7HATwPWPX1o&format=msgpack
|
||||
2021-08-03 11:35:38.136 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=N3aAK1S7jWsz6Xeixb3agtCf8MXr0x-e7HATwPWPX1o&format=msgpack
|
||||
2021-08-03 11:37:18.243 +02:00 [Warning] Failed to load nodes.json
|
||||
2021-08-03 11:37:18.376 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json
|
||||
2021-08-03 11:37:18.465 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken)
|
||||
at DSLink.VFS.SystemVFS._getFile(String fileName)
|
||||
at DSLink.VFS.SystemVFS.ReadAsync(String fileName)
|
||||
at DSLink.Respond.DiskSerializer.DeserializeFromDisk()
|
||||
2021-08-03 11:37:18.539 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-03 11:37:19.334 +02:00 [Information] Handshake successful
|
||||
2021-08-03 11:37:19.657 +02:00 [Information] Connecting
|
||||
2021-08-03 11:37:19.696 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=betMIA8Xy-p4Z0R9lN1fKBUZJNled2t8JabU8eH2GAk&format=msgpack
|
||||
2021-08-03 11:37:19.827 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=betMIA8Xy-p4Z0R9lN1fKBUZJNled2t8JabU8eH2GAk&format=msgpack
|
||||
2021-08-03 11:40:24.309 +02:00 [Warning] Failed to load nodes.json
|
||||
2021-08-03 11:40:24.489 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json
|
||||
2021-08-03 11:40:24.607 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken)
|
||||
at DSLink.VFS.SystemVFS._getFile(String fileName)
|
||||
at DSLink.VFS.SystemVFS.ReadAsync(String fileName)
|
||||
at DSLink.Respond.DiskSerializer.DeserializeFromDisk()
|
||||
2021-08-03 11:40:25.009 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-03 11:40:25.869 +02:00 [Information] Handshake successful
|
||||
2021-08-03 11:40:26.442 +02:00 [Information] Connecting
|
||||
2021-08-03 11:40:26.566 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=fdos6OENq6v54imFbTDefeYyc3_m5841nu8NI-hcF58&format=msgpack
|
||||
2021-08-03 11:40:26.656 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=fdos6OENq6v54imFbTDefeYyc3_m5841nu8NI-hcF58&format=msgpack
|
||||
2021-08-03 11:41:08.851 +02:00 [Warning] Failed to load nodes.json
|
||||
2021-08-03 11:41:09.031 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json
|
||||
2021-08-03 11:41:09.144 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken)
|
||||
at DSLink.VFS.SystemVFS._getFile(String fileName)
|
||||
at DSLink.VFS.SystemVFS.ReadAsync(String fileName)
|
||||
at DSLink.Respond.DiskSerializer.DeserializeFromDisk()
|
||||
2021-08-03 11:41:09.385 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-03 11:41:10.111 +02:00 [Information] Handshake successful
|
||||
2021-08-03 11:41:10.598 +02:00 [Information] Connecting
|
||||
2021-08-03 11:41:10.692 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=vr8C6A6On9Xh-q70n8L-RfXcmOBdfraXoOykU3cwUQA&format=msgpack
|
||||
2021-08-03 11:41:10.825 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=vr8C6A6On9Xh-q70n8L-RfXcmOBdfraXoOykU3cwUQA&format=msgpack
|
||||
2021-08-03 11:42:10.520 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-03 11:42:10.898 +02:00 [Information] Handshake successful
|
||||
2021-08-03 11:42:11.108 +02:00 [Information] Connecting
|
||||
2021-08-03 11:42:11.177 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=ojurIILA78q0aJt4grkJzFbgw3DwfS2r_WC5R8pwpSo&format=msgpack
|
||||
2021-08-03 11:42:11.297 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=ojurIILA78q0aJt4grkJzFbgw3DwfS2r_WC5R8pwpSo&format=msgpack
|
||||
2021-08-03 11:42:29.808 +02:00 [Warning] Failed to load nodes.json
|
||||
2021-08-03 11:42:29.898 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json
|
||||
2021-08-03 11:42:29.967 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken)
|
||||
at DSLink.VFS.SystemVFS._getFile(String fileName)
|
||||
at DSLink.VFS.SystemVFS.ReadAsync(String fileName)
|
||||
at DSLink.Respond.DiskSerializer.DeserializeFromDisk()
|
||||
2021-08-03 11:42:30.137 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-03 11:42:30.532 +02:00 [Information] Handshake successful
|
||||
2021-08-03 11:42:30.906 +02:00 [Information] Connecting
|
||||
2021-08-03 11:42:30.985 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=tKi9TXyt1wXcsIjPytryaX6sHgpTDBzJElA1hEl2zu8&format=msgpack
|
||||
2021-08-03 11:42:31.134 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=tKi9TXyt1wXcsIjPytryaX6sHgpTDBzJElA1hEl2zu8&format=msgpack
|
||||
2021-08-03 11:43:35.267 +02:00 [Warning] Failed to load nodes.json
|
||||
2021-08-03 11:43:35.366 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json
|
||||
2021-08-03 11:43:35.434 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken)
|
||||
at DSLink.VFS.SystemVFS._getFile(String fileName)
|
||||
at DSLink.VFS.SystemVFS.ReadAsync(String fileName)
|
||||
at DSLink.Respond.DiskSerializer.DeserializeFromDisk()
|
||||
2021-08-03 11:43:35.867 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-03 11:43:36.274 +02:00 [Information] Handshake successful
|
||||
2021-08-03 11:43:36.493 +02:00 [Information] Connecting
|
||||
2021-08-03 11:43:36.530 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=bubQ2UGVXRlMIbYSrt2gA4KZAuS0kKos4x5vjlx__Rc&format=msgpack
|
||||
2021-08-03 11:43:36.663 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=bubQ2UGVXRlMIbYSrt2gA4KZAuS0kKos4x5vjlx__Rc&format=msgpack
|
||||
2021-08-03 11:46:24.951 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-03 11:46:25.564 +02:00 [Information] Handshake successful
|
||||
2021-08-03 11:46:25.871 +02:00 [Information] Connecting
|
||||
2021-08-03 11:46:25.945 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=bpl3In8B0JhkN53rTf4afrZMF0tA-NEHz3pfcSpwkB8&format=msgpack
|
||||
2021-08-03 11:46:26.102 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=bpl3In8B0JhkN53rTf4afrZMF0tA-NEHz3pfcSpwkB8&format=msgpack
|
||||
2021-08-03 11:56:02.197 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-03 11:56:02.727 +02:00 [Information] Handshake successful
|
||||
2021-08-03 11:56:03.109 +02:00 [Information] Connecting
|
||||
2021-08-03 11:56:03.172 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=4IsqPIISg-NycVkNpVfgaULTURZ6Sdi-Zh3B5X9pmwM&format=msgpack
|
||||
2021-08-03 11:56:03.418 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=4IsqPIISg-NycVkNpVfgaULTURZ6Sdi-Zh3B5X9pmwM&format=msgpack
|
||||
2021-08-03 11:56:48.024 +02:00 [Warning] Failed to load nodes.json
|
||||
2021-08-03 11:56:48.146 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json
|
||||
2021-08-03 11:56:48.307 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken)
|
||||
at DSLink.VFS.SystemVFS._getFile(String fileName)
|
||||
at DSLink.VFS.SystemVFS.ReadAsync(String fileName)
|
||||
at DSLink.Respond.DiskSerializer.DeserializeFromDisk()
|
||||
2021-08-03 11:56:48.628 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-03 11:56:49.971 +02:00 [Information] Handshake successful
|
||||
2021-08-03 11:56:50.534 +02:00 [Information] Connecting
|
||||
2021-08-03 11:56:50.874 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=ypWQIh8FPOQNhPAXbRN1meG0gWc_sw2va2g3Cg0nMd4&format=msgpack
|
||||
2021-08-03 11:56:51.227 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=ypWQIh8FPOQNhPAXbRN1meG0gWc_sw2va2g3Cg0nMd4&format=msgpack
|
||||
2021-08-03 12:02:42.774 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-03 12:02:43.276 +02:00 [Information] Handshake successful
|
||||
2021-08-03 12:02:43.454 +02:00 [Information] Connecting
|
||||
2021-08-03 12:02:43.489 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=Fz0kksH0XedbyZ5rz1bOhD5ET8QuDRpvOK88ot6khuA&format=msgpack
|
||||
2021-08-03 12:02:43.562 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=Fz0kksH0XedbyZ5rz1bOhD5ET8QuDRpvOK88ot6khuA&format=msgpack
|
|
@ -0,0 +1,26 @@
|
|||
2021-08-06 09:19:02.867 +02:00 [Error] Exception processing message from web socket.
|
||||
System.Net.WebSockets.WebSocketException (0x80004005): The remote party closed the WebSocket connection without completing the close handshake.
|
||||
---> System.IO.IOException: Unable to read data from the transport connection: Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu..
|
||||
---> System.Net.Sockets.SocketException (10060): Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
--- End of inner exception stack trace ---
|
||||
at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.ThrowException(SocketError error, CancellationToken cancellationToken)
|
||||
at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.GetResult(Int16 token)
|
||||
at System.Net.Http.HttpConnection.ReadBufferedAsyncCore(Memory`1 destination)
|
||||
at System.Net.Http.HttpConnection.RawConnectionStream.ReadAsync(Memory`1 buffer, CancellationToken cancellationToken)
|
||||
at System.Net.WebSockets.ManagedWebSocket.EnsureBufferContainsAsync(Int32 minimumRequiredBytes, CancellationToken cancellationToken, Boolean throwOnPrematureClosure)
|
||||
at System.Net.WebSockets.ManagedWebSocket.ReceiveAsyncPrivate[TWebSocketReceiveResultGetter,TWebSocketReceiveResult](Memory`1 payloadBuffer, CancellationToken cancellationToken, TWebSocketReceiveResultGetter resultGetter)
|
||||
at System.Net.WebSockets.ManagedWebSocket.ReceiveAsyncPrivate[TWebSocketReceiveResultGetter,TWebSocketReceiveResult](Memory`1 payloadBuffer, CancellationToken cancellationToken, TWebSocketReceiveResultGetter resultGetter)
|
||||
at DSLink.Connection.WebSocketConnector.<_startReceiveTask>b__11_0()
|
||||
2021-08-06 09:19:07.906 +02:00 [Information] Disconnected
|
||||
2021-08-06 09:19:08.542 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-06 09:19:11.232 +02:00 [Information] Disconnecting
|
||||
2021-08-06 09:19:32.595 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-06 09:19:33.599 +02:00 [Warning] Failed to connect, delaying for 1 seconds
|
||||
2021-08-06 09:19:34.674 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-06 09:19:59.937 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-06 09:20:00.020 +02:00 [Warning] Failed to connect, delaying for 2 seconds
|
||||
2021-08-06 09:20:02.301 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-06 09:20:10.796 +02:00 [Information] Handshake successful
|
||||
2021-08-06 09:20:11.340 +02:00 [Information] Connecting
|
||||
2021-08-06 09:20:12.557 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=f2G0GZ01v86KrZ51g6pDfXtF3opKW3LSWq_nDb8nQX8&format=msgpack
|
||||
2021-08-06 09:20:15.863 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=f2G0GZ01v86KrZ51g6pDfXtF3opKW3LSWq_nDb8nQX8&format=msgpack
|
310
RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/log-20210809.txt
Normal file
310
RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/log-20210809.txt
Normal file
|
@ -0,0 +1,310 @@
|
|||
2021-08-09 11:32:05.544 +02:00 [Error] Exception processing message from web socket.
|
||||
System.Net.WebSockets.WebSocketException (0x80004005): The remote party closed the WebSocket connection without completing the close handshake.
|
||||
---> System.IO.IOException: Unable to read data from the transport connection: Une connexion établie a été abandonnée par un logiciel de votre ordinateur hôte..
|
||||
---> System.Net.Sockets.SocketException (10053): Une connexion établie a été abandonnée par un logiciel de votre ordinateur hôte.
|
||||
--- End of inner exception stack trace ---
|
||||
at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.ThrowException(SocketError error, CancellationToken cancellationToken)
|
||||
at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.GetResult(Int16 token)
|
||||
at System.Net.Http.HttpConnection.ReadBufferedAsyncCore(Memory`1 destination)
|
||||
at System.Net.Http.HttpConnection.RawConnectionStream.ReadAsync(Memory`1 buffer, CancellationToken cancellationToken)
|
||||
at System.Net.WebSockets.ManagedWebSocket.EnsureBufferContainsAsync(Int32 minimumRequiredBytes, CancellationToken cancellationToken, Boolean throwOnPrematureClosure)
|
||||
at System.Net.WebSockets.ManagedWebSocket.ReceiveAsyncPrivate[TWebSocketReceiveResultGetter,TWebSocketReceiveResult](Memory`1 payloadBuffer, CancellationToken cancellationToken, TWebSocketReceiveResultGetter resultGetter)
|
||||
at System.Net.WebSockets.ManagedWebSocket.ReceiveAsyncPrivate[TWebSocketReceiveResultGetter,TWebSocketReceiveResult](Memory`1 payloadBuffer, CancellationToken cancellationToken, TWebSocketReceiveResultGetter resultGetter)
|
||||
at DSLink.Connection.WebSocketConnector.<_startReceiveTask>b__11_0()
|
||||
2021-08-09 11:32:09.907 +02:00 [Information] Disconnected
|
||||
2021-08-09 11:32:10.087 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:32:13.975 +02:00 [Information] Disconnecting
|
||||
2021-08-09 11:32:27.156 +02:00 [Warning] Une connexion établie a été abandonnée par un logiciel de votre ordinateur hôte.
|
||||
2021-08-09 11:32:27.375 +02:00 [Warning] Failed to connect, delaying for 1 seconds
|
||||
2021-08-09 11:32:28.622 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:32:35.122 +02:00 [Warning] Une opération a été tentée sur un hôte impossible à atteindre.
|
||||
2021-08-09 11:32:41.688 +02:00 [Warning] Failed to connect, delaying for 2 seconds
|
||||
2021-08-09 11:32:45.183 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:33:10.477 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:33:11.655 +02:00 [Warning] Failed to connect, delaying for 3 seconds
|
||||
2021-08-09 11:33:15.127 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:33:38.373 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:33:38.609 +02:00 [Warning] Failed to connect, delaying for 4 seconds
|
||||
2021-08-09 11:33:42.897 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:34:11.431 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:34:12.762 +02:00 [Warning] Failed to connect, delaying for 5 seconds
|
||||
2021-08-09 11:34:18.829 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:34:42.707 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:34:43.007 +02:00 [Warning] Failed to connect, delaying for 6 seconds
|
||||
2021-08-09 11:34:49.253 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:35:11.618 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:35:11.739 +02:00 [Warning] Failed to connect, delaying for 7 seconds
|
||||
2021-08-09 11:35:18.936 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:35:41.153 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:35:41.304 +02:00 [Warning] Failed to connect, delaying for 8 seconds
|
||||
2021-08-09 11:35:49.473 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:36:11.446 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:36:11.499 +02:00 [Warning] Failed to connect, delaying for 9 seconds
|
||||
2021-08-09 11:36:20.632 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:36:42.555 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:36:42.660 +02:00 [Warning] Failed to connect, delaying for 10 seconds
|
||||
2021-08-09 11:36:52.840 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:37:14.772 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:37:14.884 +02:00 [Warning] Failed to connect, delaying for 11 seconds
|
||||
2021-08-09 11:37:26.005 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:37:47.541 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:37:47.621 +02:00 [Warning] Failed to connect, delaying for 12 seconds
|
||||
2021-08-09 11:37:59.708 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:38:21.374 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:38:21.451 +02:00 [Warning] Failed to connect, delaying for 13 seconds
|
||||
2021-08-09 11:38:34.605 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:38:56.643 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:38:56.728 +02:00 [Warning] Failed to connect, delaying for 14 seconds
|
||||
2021-08-09 11:39:10.811 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:39:32.451 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:39:32.507 +02:00 [Warning] Failed to connect, delaying for 15 seconds
|
||||
2021-08-09 11:39:47.583 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:40:09.430 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:40:09.538 +02:00 [Warning] Failed to connect, delaying for 16 seconds
|
||||
2021-08-09 11:40:25.741 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:40:47.396 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:40:47.509 +02:00 [Warning] Failed to connect, delaying for 17 seconds
|
||||
2021-08-09 11:41:05.098 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:41:26.861 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:41:26.954 +02:00 [Warning] Failed to connect, delaying for 18 seconds
|
||||
2021-08-09 11:41:44.993 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:42:06.898 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:42:06.987 +02:00 [Warning] Failed to connect, delaying for 19 seconds
|
||||
2021-08-09 11:42:26.072 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:42:47.863 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:42:47.934 +02:00 [Warning] Failed to connect, delaying for 20 seconds
|
||||
2021-08-09 11:43:08.029 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:43:29.702 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:43:29.757 +02:00 [Warning] Failed to connect, delaying for 21 seconds
|
||||
2021-08-09 11:43:50.816 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:44:12.507 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:44:12.581 +02:00 [Warning] Failed to connect, delaying for 22 seconds
|
||||
2021-08-09 11:44:34.681 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:44:56.362 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:44:56.453 +02:00 [Warning] Failed to connect, delaying for 23 seconds
|
||||
2021-08-09 11:45:19.613 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:45:41.325 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:45:41.376 +02:00 [Warning] Failed to connect, delaying for 24 seconds
|
||||
2021-08-09 11:46:05.444 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:46:27.011 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:46:27.120 +02:00 [Warning] Failed to connect, delaying for 25 seconds
|
||||
2021-08-09 11:46:52.159 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:47:13.856 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:47:13.916 +02:00 [Warning] Failed to connect, delaying for 26 seconds
|
||||
2021-08-09 11:47:39.981 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:48:01.576 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:48:01.625 +02:00 [Warning] Failed to connect, delaying for 27 seconds
|
||||
2021-08-09 11:48:28.723 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:48:50.226 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:48:50.289 +02:00 [Warning] Failed to connect, delaying for 28 seconds
|
||||
2021-08-09 11:49:18.377 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:49:40.167 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:49:40.216 +02:00 [Warning] Failed to connect, delaying for 29 seconds
|
||||
2021-08-09 11:50:09.282 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:50:31.019 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:50:31.078 +02:00 [Warning] Failed to connect, delaying for 30 seconds
|
||||
2021-08-09 11:51:01.194 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:51:23.196 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:51:23.317 +02:00 [Warning] Failed to connect, delaying for 31 seconds
|
||||
2021-08-09 11:51:54.467 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:52:16.184 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:52:16.245 +02:00 [Warning] Failed to connect, delaying for 32 seconds
|
||||
2021-08-09 11:52:48.359 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:53:09.866 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:53:09.921 +02:00 [Warning] Failed to connect, delaying for 33 seconds
|
||||
2021-08-09 11:53:42.996 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:54:04.749 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:54:04.828 +02:00 [Warning] Failed to connect, delaying for 34 seconds
|
||||
2021-08-09 11:54:38.906 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:55:00.470 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:55:00.519 +02:00 [Warning] Failed to connect, delaying for 35 seconds
|
||||
2021-08-09 11:55:35.597 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:55:57.111 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:55:57.175 +02:00 [Warning] Failed to connect, delaying for 36 seconds
|
||||
2021-08-09 11:56:33.283 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:56:55.011 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:56:55.059 +02:00 [Warning] Failed to connect, delaying for 37 seconds
|
||||
2021-08-09 11:57:32.140 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:57:53.828 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:57:53.894 +02:00 [Warning] Failed to connect, delaying for 38 seconds
|
||||
2021-08-09 11:58:31.962 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:58:53.782 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:58:53.820 +02:00 [Warning] Failed to connect, delaying for 39 seconds
|
||||
2021-08-09 11:59:32.926 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 11:59:54.433 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 11:59:54.485 +02:00 [Warning] Failed to connect, delaying for 40 seconds
|
||||
2021-08-09 12:00:34.541 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:00:56.054 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:00:56.144 +02:00 [Warning] Failed to connect, delaying for 41 seconds
|
||||
2021-08-09 12:01:37.327 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:01:58.816 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:01:58.880 +02:00 [Warning] Failed to connect, delaying for 42 seconds
|
||||
2021-08-09 12:02:40.960 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:03:02.410 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:03:02.536 +02:00 [Warning] Failed to connect, delaying for 43 seconds
|
||||
2021-08-09 12:03:45.670 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:04:07.330 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:04:07.412 +02:00 [Warning] Failed to connect, delaying for 44 seconds
|
||||
2021-08-09 12:04:51.479 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:05:13.104 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:05:13.169 +02:00 [Warning] Failed to connect, delaying for 45 seconds
|
||||
2021-08-09 12:05:58.223 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:06:19.774 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:06:20.088 +02:00 [Warning] Failed to connect, delaying for 46 seconds
|
||||
2021-08-09 12:07:06.230 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:07:27.880 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:07:28.159 +02:00 [Warning] Failed to connect, delaying for 47 seconds
|
||||
2021-08-09 12:08:15.244 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:08:36.866 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:08:36.910 +02:00 [Warning] Failed to connect, delaying for 48 seconds
|
||||
2021-08-09 12:09:25.040 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:09:46.709 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:09:46.788 +02:00 [Warning] Failed to connect, delaying for 49 seconds
|
||||
2021-08-09 12:10:35.866 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:10:57.443 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:10:57.516 +02:00 [Warning] Failed to connect, delaying for 50 seconds
|
||||
2021-08-09 12:11:47.557 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:12:09.200 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:12:09.275 +02:00 [Warning] Failed to connect, delaying for 51 seconds
|
||||
2021-08-09 12:13:00.347 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:13:22.034 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:13:22.095 +02:00 [Warning] Failed to connect, delaying for 52 seconds
|
||||
2021-08-09 12:14:14.136 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:14:35.736 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:14:35.787 +02:00 [Warning] Failed to connect, delaying for 53 seconds
|
||||
2021-08-09 12:15:29.054 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:15:50.550 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:15:50.593 +02:00 [Warning] Failed to connect, delaying for 54 seconds
|
||||
2021-08-09 12:16:44.686 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:17:06.342 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:17:06.401 +02:00 [Warning] Failed to connect, delaying for 55 seconds
|
||||
2021-08-09 12:18:01.445 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:18:23.307 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:18:23.385 +02:00 [Warning] Failed to connect, delaying for 56 seconds
|
||||
2021-08-09 12:19:19.442 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:19:41.110 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:19:41.206 +02:00 [Warning] Failed to connect, delaying for 57 seconds
|
||||
2021-08-09 12:20:38.277 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:21:00.228 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:21:00.507 +02:00 [Warning] Failed to connect, delaying for 58 seconds
|
||||
2021-08-09 12:21:58.636 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:22:20.221 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:22:20.322 +02:00 [Warning] Failed to connect, delaying for 59 seconds
|
||||
2021-08-09 12:23:19.332 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:23:41.002 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:23:41.316 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 12:24:41.426 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:25:03.135 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:25:03.288 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 12:26:03.397 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:26:25.078 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:26:25.164 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 12:27:25.340 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:27:46.833 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:27:47.277 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 12:28:47.390 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:29:08.874 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:29:08.918 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 12:30:09.006 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:30:30.560 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:30:30.607 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 12:31:30.662 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:31:53.068 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:31:53.373 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 12:32:53.539 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:33:15.490 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:33:15.584 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 12:34:15.675 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:34:37.306 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:34:37.358 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 12:35:37.481 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:35:59.065 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:35:59.156 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 12:36:59.238 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:37:20.817 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:37:20.943 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 12:38:20.991 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:38:42.795 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:38:42.926 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 12:39:43.129 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:40:05.014 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:40:05.059 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 12:41:05.237 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:41:26.793 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:41:26.903 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 12:42:26.958 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:42:48.611 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:42:48.670 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 12:43:48.835 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:44:10.903 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:44:11.009 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 12:45:11.074 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:45:32.857 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:45:32.928 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 12:46:32.975 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:46:54.640 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:46:54.698 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 12:47:54.741 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:48:16.312 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:48:16.393 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 12:49:16.604 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:49:38.310 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:49:38.396 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 12:50:44.761 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:51:06.487 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:51:06.673 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 12:52:10.371 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:52:31.935 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:52:31.996 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 12:53:32.066 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:53:53.895 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:53:53.948 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 12:54:54.025 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:55:15.698 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:55:15.775 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 12:56:15.869 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:56:37.536 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:56:37.598 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 12:57:39.317 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:58:01.028 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:58:01.290 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 12:59:01.332 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 12:59:22.943 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 12:59:23.002 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 13:00:23.108 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 13:00:44.709 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 13:00:44.802 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 13:01:44.883 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 13:02:06.534 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 13:02:06.575 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 13:03:06.616 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 13:03:28.410 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 13:03:28.535 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 13:04:28.620 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 13:04:50.308 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 13:04:50.369 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 13:05:50.443 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 13:06:12.178 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 13:06:12.273 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 13:07:12.326 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 13:07:34.460 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 13:07:34.614 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 13:08:34.668 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 13:08:56.323 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 13:08:56.412 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 13:09:56.470 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 13:10:18.142 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 13:10:18.227 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 13:11:18.362 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 13:11:40.117 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.
|
||||
2021-08-09 13:11:40.176 +02:00 [Warning] Failed to connect, delaying for 60 seconds
|
||||
2021-08-09 13:12:40.328 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 13:12:42.066 +02:00 [Information] Handshake successful
|
||||
2021-08-09 13:12:42.677 +02:00 [Information] Connecting
|
||||
2021-08-09 13:12:43.700 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=3EKTm5CNYnvtX5YBvK1K80UUFqjGoiIkIOqSLcxaXvs&format=msgpack
|
||||
2021-08-09 13:12:46.255 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=3EKTm5CNYnvtX5YBvK1K80UUFqjGoiIkIOqSLcxaXvs&format=msgpack
|
||||
2021-08-09 17:43:22.592 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-09 17:43:24.761 +02:00 [Information] Handshake successful
|
||||
2021-08-09 17:43:26.504 +02:00 [Information] Connecting
|
||||
2021-08-09 17:43:26.550 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=mUc1IhjOQ-PZWE-eJJhBEv_iwYT6wwrUgLoG56R4KI8&format=msgpack
|
||||
2021-08-09 17:43:26.809 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=mUc1IhjOQ-PZWE-eJJhBEv_iwYT6wwrUgLoG56R4KI8&format=msgpack
|
|
@ -0,0 +1,15 @@
|
|||
2021-08-10 10:01:09.834 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-10 10:01:11.097 +02:00 [Information] Handshake successful
|
||||
2021-08-10 10:01:11.781 +02:00 [Information] Connecting
|
||||
2021-08-10 10:01:11.824 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=2Lqb6fCGsKF9tQKEBKawf6f2yI4t8PsqGpO5jFlfBR8&format=msgpack
|
||||
2021-08-10 10:01:11.973 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=2Lqb6fCGsKF9tQKEBKawf6f2yI4t8PsqGpO5jFlfBR8&format=msgpack
|
||||
2021-08-10 12:52:32.116 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-10 12:52:32.874 +02:00 [Information] Handshake successful
|
||||
2021-08-10 12:52:33.614 +02:00 [Information] Connecting
|
||||
2021-08-10 12:52:33.651 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=wk4x7Iw5j2es8mrs-JwnwnIwVYZMKqF5VD8-4sGyucM&format=msgpack
|
||||
2021-08-10 12:52:33.789 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=wk4x7Iw5j2es8mrs-JwnwnIwVYZMKqF5VD8-4sGyucM&format=msgpack
|
||||
2021-08-10 15:18:12.256 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs
|
||||
2021-08-10 15:18:12.833 +02:00 [Information] Handshake successful
|
||||
2021-08-10 15:18:13.656 +02:00 [Information] Connecting
|
||||
2021-08-10 15:18:13.694 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=0WXjdydamm39OqRForInn9t_ALW3ViShWWfAyLKMugg&format=msgpack
|
||||
2021-08-10 15:18:13.899 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=0WXjdydamm39OqRForInn9t_ALW3ViShWWfAyLKMugg&format=msgpack
|
|
@ -42,5 +42,43 @@
|
|||
"$invokable": "config",
|
||||
"privateConfigs": {},
|
||||
"?class": "alarmAdd"
|
||||
},
|
||||
"alarms": {
|
||||
"$is": "node",
|
||||
"privateConfigs": {},
|
||||
"alarme1": {
|
||||
"$is": "alarm",
|
||||
"$writable": "read",
|
||||
"$type": "bool",
|
||||
"privateConfigs": {},
|
||||
"remove": {
|
||||
"$is": "removeNode",
|
||||
"$name": "Remove",
|
||||
"$invokable": "config",
|
||||
"privateConfigs": {},
|
||||
"?class": "removeNode"
|
||||
},
|
||||
"?value": false,
|
||||
"?class": "alarm"
|
||||
}
|
||||
},
|
||||
"streams": {
|
||||
"$is": "node",
|
||||
"privateConfigs": {},
|
||||
"cam2": {
|
||||
"$is": "stream",
|
||||
"$writable": "read",
|
||||
"$type": "number",
|
||||
"privateConfigs": {},
|
||||
"remove": {
|
||||
"$is": "removeNode",
|
||||
"$name": "Remove",
|
||||
"$invokable": "config",
|
||||
"privateConfigs": {},
|
||||
"?class": "removeNode"
|
||||
},
|
||||
"?value": 8083,
|
||||
"?class": "stream"
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
|
@ -37,3 +37,4 @@ C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreap
|
|||
C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.0\System.Security.AccessControl.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\runtimes\unix\lib\netcoreapp2.1\System.Security.Principal.Windows.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.1\System.Security.Principal.Windows.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\obj\Debug\netcoreapp3.1\RSTP_DSLink.csproj.AssemblyReference.cache
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,25 +0,0 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 16
|
||||
VisualStudioVersion = 16.0.31424.327
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test_GPIO", "Test_GPIO\Test_GPIO.csproj", "{65E063DE-75B9-447F-A680-C2AE241F3E14}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{65E063DE-75B9-447F-A680-C2AE241F3E14}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{65E063DE-75B9-447F-A680-C2AE241F3E14}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{65E063DE-75B9-447F-A680-C2AE241F3E14}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{65E063DE-75B9-447F-A680-C2AE241F3E14}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {EAC4D879-223A-4F9A-90A1-CEDD38CC28F6}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
|
@ -1,169 +0,0 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Device.Gpio;
|
||||
using System.Net;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Iot.Device.Pigpio
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public class Driver : GpioDriver
|
||||
{
|
||||
private readonly IPEndPoint _endpoint;
|
||||
private readonly PigpiodIf _proxy;
|
||||
private readonly List<int> _openPins;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
/// <param name="endpoint"></param>
|
||||
public Driver(IPEndPoint endpoint)
|
||||
{
|
||||
_endpoint = endpoint;
|
||||
_proxy = new PigpiodIf();
|
||||
|
||||
_openPins = new List<int>();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public Task ConnectAsync()
|
||||
{
|
||||
_proxy.pigpio_start(_endpoint.Address.ToString(), _endpoint.Port.ToString());
|
||||
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
protected override int PinCount => PigpiodIf.PI_MAX_USER_GPIO;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
/// <param name="pinNumber"></param>
|
||||
/// <param name="eventTypes"></param>
|
||||
/// <param name="callback"></param>
|
||||
protected override void AddCallbackForPinValueChangedEvent(int pinNumber, PinEventTypes eventTypes, PinChangeEventHandler callback)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
protected override void ClosePin(int pinNumber)
|
||||
{
|
||||
if (_openPins.Contains(pinNumber))
|
||||
{
|
||||
_openPins.Remove(pinNumber);
|
||||
}
|
||||
else
|
||||
{
|
||||
throw new InvalidOperationException($"Pin '{pinNumber}' hasn't been opened");
|
||||
}
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
protected override int ConvertPinNumberToLogicalNumberingScheme(int pinNumber)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
protected override PinMode GetPinMode(int pinNumber)
|
||||
{
|
||||
var mode = _proxy.get_mode((uint)pinNumber);
|
||||
|
||||
switch (mode)
|
||||
{
|
||||
case PigpiodIf.PI_INPUT: return PinMode.Input;
|
||||
case PigpiodIf.PI_OUTPUT: return PinMode.Output;
|
||||
default: throw new ArgumentException($"Unknown PinMode value '{mode}'");
|
||||
}
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
protected override bool IsPinModeSupported(int pinNumber, PinMode mode)
|
||||
{
|
||||
switch (mode)
|
||||
{
|
||||
case PinMode.Input: return true;
|
||||
case PinMode.InputPullUp: return true;
|
||||
case PinMode.InputPullDown: return true;
|
||||
case PinMode.Output: return true;
|
||||
default: return false; // Only input & output supported ATM. Should be increased to support input-pullup/pulldown
|
||||
}
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
protected override void OpenPin(int pinNumber)
|
||||
{
|
||||
if (!_openPins.Contains(pinNumber))
|
||||
{
|
||||
_openPins.Add(pinNumber);
|
||||
}
|
||||
else
|
||||
{
|
||||
throw new InvalidOperationException($"Pin '{pinNumber}' is already been open");
|
||||
}
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
protected override PinValue Read(int pinNumber)
|
||||
{
|
||||
return _proxy.gpio_read((uint)pinNumber);
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
protected override void RemoveCallbackForPinValueChangedEvent(int pinNumber, PinChangeEventHandler callback)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
protected override void SetPinMode(int pinNumber, PinMode pinMode)
|
||||
{
|
||||
var mode = pinMode.AsMode();
|
||||
var pud = pinMode.AsPullUpDown();
|
||||
|
||||
_proxy.set_mode((uint)pinNumber, mode);
|
||||
_proxy.set_pull_up_down((uint)pinNumber, pud);
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
protected override WaitForEventResult WaitForEvent(int pinNumber, PinEventTypes eventTypes, CancellationToken cancellationToken)
|
||||
{
|
||||
bool eventDetected = false;
|
||||
int oldValue = _proxy.gpio_read((uint)pinNumber);
|
||||
int newValue;
|
||||
while (!eventDetected)
|
||||
{
|
||||
newValue = _proxy.gpio_read ((uint)pinNumber);
|
||||
//Console.WriteLine(newValue);
|
||||
|
||||
if ((eventTypes == PinEventTypes.Rising && newValue == 1 && oldValue == 0)
|
||||
|| (eventTypes == PinEventTypes.Falling && newValue == 0 && oldValue == 1))
|
||||
eventDetected = true;
|
||||
|
||||
oldValue = newValue;
|
||||
//System.Threading.Thread.Sleep(500);
|
||||
}
|
||||
|
||||
WaitForEventResult result;
|
||||
result.EventTypes = eventTypes;
|
||||
result.TimedOut = false;
|
||||
return result;
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
protected override void Write(int pinNumber, PinValue pinValue)
|
||||
{
|
||||
var value = pinValue.AsValue();
|
||||
|
||||
_proxy.gpio_write((uint)pinNumber, value);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,36 +0,0 @@
|
|||
using System;
|
||||
using System.Device.Gpio;
|
||||
|
||||
namespace Iot.Device.Pigpio
|
||||
{
|
||||
internal static class Helpers
|
||||
{
|
||||
public static uint AsMode(this PinMode mode)
|
||||
{
|
||||
switch (mode)
|
||||
{
|
||||
case PinMode.Input: return PigpiodIf.PI_INPUT;
|
||||
case PinMode.InputPullUp: return PigpiodIf.PI_INPUT;
|
||||
case PinMode.InputPullDown: return PigpiodIf.PI_INPUT;
|
||||
case PinMode.Output: return PigpiodIf.PI_OUTPUT;
|
||||
default: throw new ArgumentException($"PinMode value of '{mode}' is not valid");
|
||||
}
|
||||
}
|
||||
|
||||
public static uint AsPullUpDown(this PinMode mode)
|
||||
{
|
||||
switch (mode)
|
||||
{
|
||||
case PinMode.InputPullUp: return PigpiodIf.PI_PUD_UP;
|
||||
case PinMode.InputPullDown: return PigpiodIf.PI_PUD_DOWN;
|
||||
default: return PigpiodIf.PI_PUD_OFF;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public static uint AsValue(this PinValue value)
|
||||
{
|
||||
return (uint)(int)value;
|
||||
}
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load diff
|
@ -1,42 +0,0 @@
|
|||
using Iot.Device.Pigpio;
|
||||
using System;
|
||||
using System.Device.Gpio;
|
||||
using System.Net;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ConsoleApp9
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static async Task Main(string[] args)
|
||||
{
|
||||
var addr = "80.11.204.244";
|
||||
var port = 9031;
|
||||
var pin = 12;
|
||||
// var blinks = 5;
|
||||
|
||||
using (var driver = new Driver(new IPEndPoint(IPAddress.Parse(addr), port)))
|
||||
{
|
||||
await driver.ConnectAsync();
|
||||
await Task.Delay(TimeSpan.FromSeconds(1)); //Give the socket time to get connected
|
||||
|
||||
Console.WriteLine("Connected");
|
||||
|
||||
using (var controller = new GpioController(PinNumberingScheme.Logical, driver))
|
||||
{
|
||||
controller.OpenPin(pin);
|
||||
controller.SetPinMode(pin, PinMode.InputPullUp);
|
||||
|
||||
while (true)
|
||||
{
|
||||
controller.WaitForEvent(pin, PinEventTypes.Falling, new CancellationToken(false));
|
||||
Console.WriteLine("Beep boop");
|
||||
}
|
||||
|
||||
controller.ClosePin(pin);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,24 +0,0 @@
|
|||
# Pigpio
|
||||
|
||||
This GpioDriver implementation allows you to remotely control a Raspberry Pi's GPIO pins via a wired or wireless network connection. It is compatible with (at time of writing) every Raspberry Pi including Model A, A+, B, B+, Zero, ZeroW, Pi2B, Pi3B (Pi4 support is currently experimental).
|
||||
|
||||
## Setting up the Raspberry Pi
|
||||
|
||||
1. Install a recent version of Raspbian onto the Pi; Stretch or Buster is fine.
|
||||
2. Make sure the Pi has network access so either via a wired or wireless connection
|
||||
3. Configured the raspberry pi to allow remote GPIO control by following the steps in section 4.1 [here](https://gpiozero.readthedocs.io/en/stable/remote_gpio.html#preparing-the-raspberry-pi).
|
||||
|
||||
And you're done.
|
||||
|
||||
## Running the sample
|
||||
|
||||
The sample application (Pigpio.Sample) will periodically set GPIO4 high then low. If you connected an LED (with a current limiting resistor) to GPIO4 you then run the application you should see if turn on or off every second.
|
||||
|
||||
To run the sample you'll need to determine the IP address of the Pi you configured above and specify it as the first argument to the application; for example:
|
||||
|
||||
```
|
||||
Pigpio.Sample.exe 192.168.1.101
|
||||
```
|
||||
|
||||
If all goes to plan, you should see something like [this](https://www.youtube.com/watch?v=F9m0fqZjOGQ)
|
||||
|
|
@ -1,156 +0,0 @@
|
|||
using System;
|
||||
using System.Net.Sockets;
|
||||
|
||||
namespace Iot.Device.Pigpio
|
||||
{
|
||||
internal class TcpConnection
|
||||
{
|
||||
#region # event
|
||||
|
||||
public event EventHandler StreamChanged;
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
#region # private field
|
||||
|
||||
private TcpClient tcp = null;
|
||||
private string ipOrHost;
|
||||
private int port;
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
#region # public property
|
||||
|
||||
public bool IsOpened
|
||||
{
|
||||
get
|
||||
{
|
||||
return tcp != null;
|
||||
}
|
||||
}
|
||||
|
||||
private NetworkStream _stream = null;
|
||||
public NetworkStream Stream
|
||||
{
|
||||
get
|
||||
{
|
||||
return _stream;
|
||||
}
|
||||
set
|
||||
{
|
||||
_stream = value;
|
||||
if (StreamChanged != null)
|
||||
{
|
||||
StreamChanged.Invoke(this, new EventArgs());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
#region # Implementation of IDisposable
|
||||
|
||||
bool disposed = false;
|
||||
public void Dispose()
|
||||
{
|
||||
Dispose(true);
|
||||
GC.SuppressFinalize(this);
|
||||
}
|
||||
protected virtual void Dispose(bool disposing)
|
||||
{
|
||||
if (disposed)
|
||||
return;
|
||||
|
||||
if (disposing)
|
||||
{
|
||||
// Release managed objects
|
||||
Close();
|
||||
}
|
||||
|
||||
// Release unmanaged objects
|
||||
|
||||
disposed = true;
|
||||
}
|
||||
~TcpConnection()
|
||||
{
|
||||
Dispose(false);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
#region # public method
|
||||
|
||||
public bool Open(string ipOrHost, int port)
|
||||
{
|
||||
if (tcp == null)
|
||||
{
|
||||
try
|
||||
{
|
||||
this.ipOrHost = ipOrHost;
|
||||
this.port = port;
|
||||
|
||||
tcp = new TcpClient();
|
||||
tcp.BeginConnect(ipOrHost, port, new AsyncCallback(NetConnectCallback), null);
|
||||
|
||||
Console.WriteLine("Connecting to {0}:{1}...", ipOrHost, port);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Console.WriteLine("Connection failed({0}).", ex.Message);
|
||||
Close();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
public void Close()
|
||||
{
|
||||
if (Stream != null)
|
||||
{
|
||||
// Execute handlers of StreamChanged event, and call Dispose()
|
||||
var stream = Stream;
|
||||
Stream = null;
|
||||
stream.Dispose();
|
||||
}
|
||||
if (tcp != null)
|
||||
{
|
||||
tcp.Close();
|
||||
tcp = null;
|
||||
|
||||
Console.WriteLine("{0}:{1} was disconnected.", ipOrHost, port);
|
||||
}
|
||||
ipOrHost = string.Empty;
|
||||
port = 0;
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
#region # private method
|
||||
|
||||
private void NetConnectCallback(IAsyncResult result)
|
||||
{
|
||||
if (tcp == null)
|
||||
return;
|
||||
|
||||
if (tcp.Connected)
|
||||
{
|
||||
Console.WriteLine("Connected to LAN {0}:{1}.",
|
||||
((System.Net.IPEndPoint)tcp.Client.RemoteEndPoint).Address,
|
||||
((System.Net.IPEndPoint)tcp.Client.RemoteEndPoint).Port);
|
||||
|
||||
var stream = tcp.GetStream();
|
||||
stream.ReadTimeout = 10000;
|
||||
stream.WriteTimeout = 10000;
|
||||
Stream = stream;
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
|
@ -1,14 +0,0 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Iot.Device.Bindings" Version="1.5.0" />
|
||||
<PackageReference Include="System.Device.Gpio" Version="1.5.0" />
|
||||
<PackageReference Include="Unosquare.PiGpio" Version="0.3.1" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"runtimeOptions": {
|
||||
"additionalProbingPaths": [
|
||||
"C:\\Users\\l.farina\\.dotnet\\store\\|arch|\\|tfm|",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages"
|
||||
]
|
||||
}
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net5.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "5.0.0"
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,4 +0,0 @@
|
|||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
|
|
@ -1,23 +0,0 @@
|
|||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Ce code a été généré par un outil.
|
||||
// Version du runtime :4.0.30319.42000
|
||||
//
|
||||
// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si
|
||||
// le code est régénéré.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Test_GPIO")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Test_GPIO")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Test_GPIO")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Généré par la classe MSBuild WriteCodeFragment.
|
||||
|
|
@ -1 +0,0 @@
|
|||
6c4ac033c60af7bb6343258ecd6b4310354d8cc3
|
|
@ -1,8 +0,0 @@
|
|||
is_global = true
|
||||
build_property.TargetFramework = net5.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.PublishSingleFile =
|
||||
build_property.IncludeAllContentForSelfExtract =
|
||||
build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows
|
Binary file not shown.
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
9d0554aee7d590734b25522fce768cece2ef98d2
|
|
@ -1,42 +0,0 @@
|
|||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\obj\Debug\net5.0\Test_GPIO.csproj.AssemblyReference.cache
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\obj\Debug\net5.0\Test_GPIO.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\obj\Debug\net5.0\Test_GPIO.AssemblyInfoInputs.cache
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\obj\Debug\net5.0\Test_GPIO.AssemblyInfo.cs
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\obj\Debug\net5.0\Test_GPIO.csproj.CoreCompileInputs.cache
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\Test_GPIO.exe
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\Test_GPIO.deps.json
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\Test_GPIO.runtimeconfig.json
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\Test_GPIO.runtimeconfig.dev.json
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\Test_GPIO.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\ref\Test_GPIO.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\Test_GPIO.pdb
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\Iot.Device.Bindings.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\Microsoft.Extensions.Logging.Abstractions.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\Microsoft.Win32.SystemEvents.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\SixLabors.ImageSharp.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\System.CodeDom.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\System.Device.Gpio.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\System.Drawing.Common.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\System.IO.Ports.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\System.Management.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\UnitsNet.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\Unosquare.PiGpio.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\Unosquare.Raspberry.Abstractions.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\Swan.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\Swan.Lite.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\runtimes\win\lib\netcoreapp3.0\Microsoft.Win32.SystemEvents.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\runtimes\linux\lib\netstandard2.0\System.IO.Ports.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\runtimes\osx\lib\netstandard2.0\System.IO.Ports.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\runtimes\win\lib\netstandard2.0\System.IO.Ports.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\runtimes\win\lib\netcoreapp2.0\System.Management.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\obj\Debug\net5.0\Test_GPIO.csproj.CopyComplete
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\obj\Debug\net5.0\Test_GPIO.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\obj\Debug\net5.0\ref\Test_GPIO.dll
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\obj\Debug\net5.0\Test_GPIO.pdb
|
||||
C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\obj\Debug\net5.0\Test_GPIO.genruntimeconfig.cache
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
c18e1789e8856ed3eb76095c84cf14f361a7f73e
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,76 +0,0 @@
|
|||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"C:\\Users\\l.farina\\Desktop\\UCRM_stage\\Test_GPIO\\Test_GPIO\\Test_GPIO.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"C:\\Users\\l.farina\\Desktop\\UCRM_stage\\Test_GPIO\\Test_GPIO\\Test_GPIO.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\l.farina\\Desktop\\UCRM_stage\\Test_GPIO\\Test_GPIO\\Test_GPIO.csproj",
|
||||
"projectName": "Test_GPIO",
|
||||
"projectPath": "C:\\Users\\l.farina\\Desktop\\UCRM_stage\\Test_GPIO\\Test_GPIO\\Test_GPIO.csproj",
|
||||
"packagesPath": "C:\\Users\\l.farina\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\l.farina\\Desktop\\UCRM_stage\\Test_GPIO\\Test_GPIO\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\l.farina\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net5.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"dependencies": {
|
||||
"Iot.Device.Bindings": {
|
||||
"target": "Package",
|
||||
"version": "[1.5.0, )"
|
||||
},
|
||||
"System.Device.Gpio": {
|
||||
"target": "Package",
|
||||
"version": "[1.5.0, )"
|
||||
},
|
||||
"Unosquare.PiGpio": {
|
||||
"target": "Package",
|
||||
"version": "[0.3.1, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,18 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\l.farina\.nuget\packages\</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.10.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\l.farina\.nuget\packages\" />
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||
</PropertyGroup>
|
||||
</Project>
|
|
@ -1,9 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||
</PropertyGroup>
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)system.device.gpio\1.5.0\buildTransitive\net5.0\System.Device.Gpio.targets" Condition="Exists('$(NuGetPackageRoot)system.device.gpio\1.5.0\buildTransitive\net5.0\System.Device.Gpio.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
File diff suppressed because it is too large
Load diff
|
@ -1,90 +0,0 @@
|
|||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "iZJpyXlouOtZ1Kev3PwlOhpX9iO8bOpNG2wgEIYMIR8bwtUuwAU+5immwkt0maaSwyLPPaD3U8txRvgUN87VqQ==",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\l.farina\\Desktop\\UCRM_stage\\Test_GPIO\\Test_GPIO\\Test_GPIO.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\iot.device.bindings\\1.5.0\\iot.device.bindings.1.5.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\microsoft.win32.systemevents\\5.0.0\\microsoft.win32.systemevents.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\runtime.linux-arm.runtime.native.system.io.ports\\5.0.0\\runtime.linux-arm.runtime.native.system.io.ports.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\runtime.linux-arm64.runtime.native.system.io.ports\\5.0.0\\runtime.linux-arm64.runtime.native.system.io.ports.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\runtime.linux-x64.runtime.native.system.io.ports\\5.0.0\\runtime.linux-x64.runtime.native.system.io.ports.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\runtime.native.system.io.ports\\5.0.1\\runtime.native.system.io.ports.5.0.1.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\runtime.osx-x64.runtime.native.system.io.ports\\5.0.0\\runtime.osx-x64.runtime.native.system.io.ports.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\sixlabors.imagesharp\\1.0.2\\sixlabors.imagesharp.1.0.2.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.codedom\\5.0.0\\system.codedom.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.device.gpio\\1.5.0\\system.device.gpio.1.5.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.3.0\\system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.drawing.common\\5.0.2\\system.drawing.common.5.0.2.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.io.ports\\5.0.1\\system.io.ports.5.0.1.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.management\\5.0.0\\system.management.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.net.http\\4.3.4\\system.net.http.4.3.4.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.net.networkinformation\\4.3.0\\system.net.networkinformation.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.text.encoding.codepages\\4.6.0\\system.text.encoding.codepages.4.6.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.threading.overlapped\\4.3.0\\system.threading.overlapped.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.threading.thread\\4.3.0\\system.threading.thread.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.threading.threadpool\\4.3.0\\system.threading.threadpool.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\system.valuetuple\\4.5.0\\system.valuetuple.4.5.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\unitsnet\\4.77.0\\unitsnet.4.77.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\unosquare.pigpio\\0.3.1\\unosquare.pigpio.0.3.1.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\unosquare.raspberry.abstractions\\0.4.0\\unosquare.raspberry.abstractions.0.4.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\unosquare.swan\\2.4.0\\unosquare.swan.2.4.0.nupkg.sha512",
|
||||
"C:\\Users\\l.farina\\.nuget\\packages\\unosquare.swan.lite\\2.4.0\\unosquare.swan.lite.2.4.0.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
Loading…
Reference in a new issue