Skip to content

Commit feac0e1

Browse files
committed
[ENCE] -Support for Linux Remote connections with HTTP protocol, -Dummy support for multiple endpoint Linux queries, -CLI integration for cmd query-response flow with remote Linux kernel
Signed-off-by: Iván Rodriguez <ivanrwcm25@gmail.com>
1 parent f102645 commit feac0e1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

ShpCore.Kernel/RemoteLinuxConnection/Remote_Linux_Connection.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@ private string Urls
1414
{
1515
set
1616
{
17-
if(value.Length < 0) throw new ArgumentException("Debe haber al menos una URL para la conexión remota.");
17+
if(value.Length < 0)
18+
{
19+
KernelLog.Panic("[RemoteLinuxBridgeConnection] Dev, No se proporcionaron URLs para la conexión remota.");
20+
throw new ArgumentException();
21+
}
1822
}
1923
}
2024

0 commit comments

Comments
 (0)