Registration

Package: simu5g.stack.rrc

Registration

simple module

RRC Registration — registers the node with the Binder, sets up the network interface, and joins multicast groups.

Inheritance diagram

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Parameters

Name Type Default value Description
interfaceTableModule string
interfaceName string "cellular"
routingTableModule string
binderModule string "binder"
bearerConfiguratorModule string "bearerConfigurator"

To tell the core network about a multicast group join

Properties

Name Value Description
display i=block/control
class Registration

Source code

//
// RRC Registration — registers the node with the Binder, sets up
// the network interface, and joins multicast groups.
//
simple Registration like IRegistration
{
    parameters:
        @display("i=block/control");
        @class(Registration);

        string interfaceTableModule;
        string interfaceName = default("cellular");
        string routingTableModule;
        string binderModule = default("binder");
        string bearerConfiguratorModule = default("bearerConfigurator");   // To tell the core network about a multicast group join
}
File: src/simu5g/stack/rrc/Registration.ned