smalltalk
/
osmo-st-mgcp
Archived
1
0
Fork 0

doc: Add a simple DESIGN document

Describe objects and how they interact with each other.
This commit is contained in:
Holger Hans Peter Freyther 2011-06-12 14:39:31 +02:00
parent 4354afff4a
commit 6c1eff1e51
1 changed files with 25 additions and 0 deletions

25
DESIGN Normal file
View File

@ -0,0 +1,25 @@
Some simple design notes to guide people
- MGCPGrammar can parse requests and replies
- MGCPCommand base class of commands
- asDatagram to create message
- MGCPTrunk a trunk with a destination and nr. endpoints
- MGCPVirtualTrunk for 1@mgw.. in hex
- MGCPE1Trunk for ds-1/... handling
- both hold MGCPEndpoints
- MGCPTransaction a command to create a transaction
- callback for completion (wth response)
- callback for a timeout
- created with an endpoint and the callagent
- MGCPCallAgent serves the Call-Agent port
- Generates the transaction id for a transaction
- Does the retransmission
- Handles timeout
- Recycles transaction after three minutes
(to block a transaction identifier)