Hi, I had a question. I am trying to create a client server model using the
forkingServer function. I have two set of services Class A and Class B. I
use class A to create a reference to class B which i want to use for
further calculations.
what i have till now is
conn = ssh_connect(sshctx,xxxxx)
cli = conn.root.getrefofB
B.cmdloop()
B is based of class cmd.
when I try to do this the code fails and complains of a EOFError
("connection closde by peer"). I would highly appreciate it if anyone could
guide me as to what my mistake is