You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The send_active_response_message function is not needed, you can use send_request_socket. On the other hand, in the send_message_to_syslog_socket function use the SocketController class as done in send_request_socket so the import socket is not needed (delete it).
The SocketController class only allows TCP connections and send_active_response_message receives UDP and also waits for a response
Test if ManInTheMiddle does the SocketController thing in a better way and is already used in the framework
Fix tests that use send_active_response_message and send_message_to_syslog_socket in test_remoted
The text was updated successfully, but these errors were encountered:
Problem:
The
send_active_response_message
function is not needed, you can usesend_request_socket
. On the other hand, in thesend_message_to_syslog_socket
function use theSocketController
class as done insend_request_socket
so the import socket is not needed (delete it).SocketController
class only allows TCP connections andsend_active_response_message
receives UDP and also waits for a responseManInTheMiddle
does theSocketController
thing in a better way and is already used in the frameworksend_active_response_message
andsend_message_to_syslog_socket
intest_remoted
The text was updated successfully, but these errors were encountered: