Following error was shown in Beremiz console:
PYRO connecting to URI : PYROS://127.0.0.1:3001#beremiz
Exception while connecting to 'PYROS://127.0.0.1:3001#beremiz': non-zero flags not allowed in calls to recv() on <class 'ssl.SSLSocket'>
Connection failed to PYROS://127.0.0.1:3001#beremiz!
Reason is that Pyro calls socket recv() with MSGWAITALL flag, that causes ValueError exception.
https://docs.python.org/2/library/ssl.html
recv(), recv_into() (but passing a non-zero flags argument is not allowed)
BEREMIZ_OBJS = $(BEREMIZSRC:.c=.o)all: warn some_binary @echo "*** all done ***"warn: @echo "*** Sample Makefile, does nothing ***"some_binary: $(BEREMIZ_OBJS) @echo "* Would link $^ -> $@"%.o: %.c @echo "* Would compile $< -> $@"