K2Informatics.Erlnet.OtpEpmd.publishPort C# (CSharp) Méthode

publishPort() public static méthode

public static publishPort ( OtpLocalNode node ) : bool
node OtpLocalNode
Résultat bool
        public static bool publishPort(OtpLocalNode node)
        {
            TcpClient s = null;

            try
            {
                s = r4_publish(node);
            }
            catch (IOException)
            {
                s = r3_publish(node);
            }

            node.setEpmd(s);

            return s != null;
        }