erl_connect

erl_connect

C library

erl_connect

Library summary

Communicate with distributed Erlang.

Description

This module provides support for communication between distributed Erlang nodes and C-nodes, in a manner that is transparent to Erlang processes.

A C-node appears to Erlang as a hidden node. That is, Erlang processes that know the name of the C-node can communicate with it in a normal manner, but the node name does not appear in the listing provided by erlang:nodes/0 in ERTS.

Exports

int erl_accept(listensock, conp)

Types:

int listensock;
ErlConnect *conp;

This function is used by a server process to accept a connection from a client process.