Local ports identifiers

The local ports identifiers are specified in an enum with the identifier pok_port_local_identifier_t. In this enum, you must ALWAYS add an identifier for an invalid identifier called invalid_identifier. Note that this enum declaration specifies the local ports of the current node and consequently, it is dependent on each node communication requirements.

When you use code generation functionnalities, this declaration is automatically created in the deployment.h file.

There is an example of a such enum declaration:

   typedef enum
   {
     node1_partition_secret_outgoing = 0,
     node1_partition_topsecret_outgoing = 1,
     node1_partition_unclassified_outgoing = 2,
     invalid_local_port = 3
   } pok_port_local_identifier_t;



Copyright 2009 POK Team