Distributed erlang security how to?
问题 I want to have 2 independent erlang nodes that could communicate with each other: so node a@myhost will be able to send messages to b@myhost . Are there any ways to restrict node a@myhost , so only a function from a secure_module could be called on b@myhost ? It should be something like: a@myhost> rpc:call(b@myhost,secure_module,do,[A,B,C]) returns {ok,Result} and all other calls a@myhost> rpc:call(b@myhost,Modue,Func,Args) return {error, Reason} One of the options would be to use ZeroMQ