Trac is being migrated to new services! Issues can be found in our new YouTrack instance and WIKI pages can be found on our website.

Version 7 (modified by salinasv, 14 years ago) (diff)

Document SlpMsg? Being the body of a MsnMsg?.

Architecture

There will be a self contained stack that makes transparent to every other module about the details of SLP and SLP messages. The proposed architecture exposes a single SLP API on top of the stack and pass it to the lower layers as needed: SLP API → SlpCall → SlpLink → Network. Where SlpLink is an abstraction of the possible transaction methods, each defined in the DirectConn and SBConn modules.

           +------------+
           |  SLP API   |
           +------------+
                 |
           +------------+
           |  SlpCall   |
           +------------+
                 |
           +------------+
           |  SlpLink   |
           +------------+
              /       \
   +------------+   +------------+
   |  SBConn    |   | DirectConn |
   +------------+   +------------+
         |                |
   +------------+   +------------+
   |Switchboard |   |  Network   |
   +------------+   +------------+
       Figure 1. SLP Stack

SLP API (WIP)

This API must abstract everything others modules will need from SLP transactions. This will be the one that creates the SlpCall for any new transaction as needed

SlpCall

Represent an SLP transaction creating the messages as needed and managing most of the msg specific management (what to do on each response).

Abstract a Connection. Try DirectConn and fallback to SBConn if the former fails. This module is also responsible to get the data that must be sent from files or write down the received data.

Conn

This modules must expose a common interface so they can be easily attached to SlpCall and Network interfaces.

Packagement

Since the SlpMessage is placed on the body of a MsnMsg, it must be embedded in there.

 +----------------+
 |   MsnMsg       |
 |  +------------+|
 |  |   SlpMsg   ||
 |  +------------+|
 +----------------+

Implementation

  • SBConn and DirectConn can have a conn_ops structure which will be called by the SlpLink module.
  • SBConn must be extracted from the actual Switchboard module.
  • Use an MsnTable in SlpCall to manage the SLP protocol callbacks.
All information, including names and email addresses, entered onto this website or sent to mailing lists affiliated with this website will be public. Do not post confidential information, especially passwords!