aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2013-03-30 16:46:01 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2013-03-30 16:51:10 +0100
commitb7453953c8f5897b1919f8cc2de5116d292984c1 (patch)
tree25e6434912d96aa3996c08cc5733bd37197373e2
parentca0d7624a8320a452e7071c99063d319aa34aed1 (diff)
misc: Make the categories match the package name
-rw-r--r--callagent/MGCPCallAgent.st4
-rw-r--r--callagent/MGCPCommands.st12
-rw-r--r--callagent/MGCPEndpoint.st2
-rw-r--r--callagent/MGCPLogArea.st2
-rw-r--r--callagent/MGCPParser.st2
-rw-r--r--callagent/MGCPResponse.st2
-rw-r--r--callagent/MGCPTransaction.st4
-rw-r--r--callagent/MGCPTrunk.st6
-rw-r--r--grammar/MGCPGrammar.st2
9 files changed, 18 insertions, 18 deletions
diff --git a/callagent/MGCPCallAgent.st b/callagent/MGCPCallAgent.st
index dd1edb4..e4ef808 100644
--- a/callagent/MGCPCallAgent.st
+++ b/callagent/MGCPCallAgent.st
@@ -22,7 +22,7 @@ PackageLoader
Object subclass: MGCPCallAgentBase [
| net trunks sem addr port |
- <category: 'MGCP-Callagent'>
+ <category: 'OsmoMGCP-Callagent'>
<comment: 'I am responsible for the networking'>
MGCPCallAgentBase class >> startOn: anAddress [
@@ -89,7 +89,7 @@ Object subclass: MGCPCallAgentBase [
MGCPCallAgentBase subclass: MGCPCallAgent [
| transactions parser |
- <category: 'MGCP-Callagent'>
+ <category: 'OsmoMGCP-Callagent'>
<comment: 'I deal with transactions and timeouts'>
initialize: anAddress port: aPort [
diff --git a/callagent/MGCPCommands.st b/callagent/MGCPCommands.st
index 707a3c4..91c9fe7 100644
--- a/callagent/MGCPCommands.st
+++ b/callagent/MGCPCommands.st
@@ -21,7 +21,7 @@ Object subclass: MGCPCommand [
<comment: 'I am a command send to a MGCP gateway. I know my timeout
and such. Each MGCPGateWay can have a MGCPCommand subclass to specify
certain things. E.g. the endpoint numbering is different'>
- <category: 'MGCP-callagent'>
+ <category: 'OsmoMGCP-callagent'>
MGCPCommand class >> create: anEndpoint callId: aCallId [
^ (self new)
@@ -102,7 +102,7 @@ Object subclass: MGCPCommand [
MGCPCommand subclass: MGCPCRCXCommand [
<comment: 'I represent a CRCX message'>
- <category: 'MGCP-callagent'>
+ <category: 'OsmoMGCP-Callagent'>
MGCPCRCXCommand class >> verb [
<category: 'verb'>
@@ -120,7 +120,7 @@ MGCPCommand subclass: MGCPCRCXCommand [
MGCPCommand subclass: MGCPMDCXCommand [
<comment: 'I represent a MDCX message'>
- <category: 'MGCP-Callagent'>
+ <category: 'OsmoMGCP-Callagent'>
MGCPMDCXCommand class >> verb [
<category: 'verb'>
@@ -137,7 +137,7 @@ MGCPCommand subclass: MGCPMDCXCommand [
MGCPCommand subclass: MGCPDLCXCommand [
<comment: 'I represent a DLCX message'>
- <category: 'MGCP-Callagent'>
+ <category: 'OsmoMGCP-Callagent'>
MGCPDLCXCommand class >> verb [
<category: 'verb'>
@@ -152,7 +152,7 @@ MGCPCommand subclass: MGCPDLCXCommand [
MGCPCommand subclass: MGCPAUEPComamnd [
<comment: 'I represent an AUEP message'>
- <category: 'MGCP-Callagent'>
+ <category: 'OsmoMGCP-Callagent'>
MGCPAUEPComamnd class >> verb [
<category: 'verb'>
@@ -168,7 +168,7 @@ MGCPCommand subclass: MGCPAUEPComamnd [
MGCPCommand subclass: MGCPOsmoRSIPCommand [
<comment: 'I represent an Osmocom Extension to MGCP to reset remote
mediagateways. The spec is working the other way around.'>
- <category: 'MGCP-Callagent'>
+ <category: 'OsmoMGCP-Callagent'>
MGCPOsmoRSIPCommand class >> verb [
<category: 'verb'>
diff --git a/callagent/MGCPEndpoint.st b/callagent/MGCPEndpoint.st
index f492014..42a23ff 100644
--- a/callagent/MGCPEndpoint.st
+++ b/callagent/MGCPEndpoint.st
@@ -18,7 +18,7 @@
Object subclass: MGCPEndpoint [
| nr trunk state callid connid sdp|
- <category: 'MGCP-Callagent'>
+ <category: 'OsmoMGCP-Callagent'>
<comment: 'I am one endpoint. I have a state...'>
MGCPEndpoint class >> stateUnused [ <category: 'states'> ^ #unused ]
diff --git a/callagent/MGCPLogArea.st b/callagent/MGCPLogArea.st
index 115d882..abdd439 100644
--- a/callagent/MGCPLogArea.st
+++ b/callagent/MGCPLogArea.st
@@ -19,7 +19,7 @@
PackageLoader fileInPackage: #OsmoLogging.
Osmo.LogArea subclass: MGCPLogArea [
- <category: 'mgcp-logarea'>
+ <category: 'OsmoMGCP-Logging'>
MGCPLogArea class >> areaName [ ^ #mgcp ]
MGCPLogArea class >> areaDescription [
diff --git a/callagent/MGCPParser.st b/callagent/MGCPParser.st
index 18c3a2f..a052f55 100644
--- a/callagent/MGCPParser.st
+++ b/callagent/MGCPParser.st
@@ -17,7 +17,7 @@
"
MGCPGrammar subclass: MGCPParser [
- <category: 'MGCP-Parser'>
+ <category: 'OsmoMGCP-Parser'>
<comment: 'I parse responses for now.'>
MGCPMessage [
diff --git a/callagent/MGCPResponse.st b/callagent/MGCPResponse.st
index 4ecbf24..c932a1e 100644
--- a/callagent/MGCPResponse.st
+++ b/callagent/MGCPResponse.st
@@ -19,7 +19,7 @@
Object subclass: MGCPResponse [
| code transaction params sdp |
- <category: 'MGCP-Response'>
+ <category: 'OsmoMGCP-Response'>
<comment: 'I provide a nicer way to look at responses'>
MGCPResponse class >> fromDict: aDict [
diff --git a/callagent/MGCPTransaction.st b/callagent/MGCPTransaction.st
index 517073d..cd994ec 100644
--- a/callagent/MGCPTransaction.st
+++ b/callagent/MGCPTransaction.st
@@ -23,7 +23,7 @@ PackageLoader
Object subclass: MGCPTransactionBase [
| callagent t_retransmit t_expire t_remove sem |
<comment: 'I handle timers for the transaction'>
- <category: 'MGCP-Callagent'>
+ <category: 'OsmoMGCP-Callagent'>
MGCPTransactionBase class >> on: aCallagent [
^ self new
@@ -95,7 +95,7 @@ Object subclass: MGCPTransactionBase [
MGCPTransactionBase subclass: MGCPTransaction [
| result timeout id command endpoint state |
<comment: 'I am a transaction...'>
- <category: 'MGCP-Callagent'>
+ <category: 'OsmoMGCP-Callagent'>
MGCPTransaction class >> on: endpoint of: callagent [
| res |
diff --git a/callagent/MGCPTrunk.st b/callagent/MGCPTrunk.st
index d32812c..04764d2 100644
--- a/callagent/MGCPTrunk.st
+++ b/callagent/MGCPTrunk.st
@@ -19,7 +19,7 @@
Object subclass: MGCPTrunkBase [
| ip ports sem last |
<comment: 'I represent a trunk for a Gateway'>
- <category: 'MGCP-Callagent'>
+ <category: 'OsmoMGCP-Callagent'>
MGCPTrunkBase class >> new [
<category: 'creation'>
@@ -103,7 +103,7 @@ Object subclass: MGCPTrunkBase [
MGCPTrunkBase subclass: MGCPVirtualTrunk [
<comment: 'I represent a @mgw virtual trunk'>
- <category: 'MGCP-Callagent'>
+ <category: 'OsmoMGCP-Callagent'>
MGCPVirtualTrunk class >> createWithDest: anIP numberPorts: nr [
<category: 'factory'>
@@ -132,7 +132,7 @@ MGCPTrunkBase subclass: MGCPVirtualTrunk [
MGCPTrunkBase subclass: MGCPDSTrunk [
| trunk |
<comment: 'I represent an E1 trunk with 32 endpoints'>
- <category: 'MGCP-Callagent'>
+ <category: 'OsmoMGCP-Callagent'>
MGCPDSTrunk class >> createWithDest: anIP trunkNr: aNr [
<category: 'factory'>
diff --git a/grammar/MGCPGrammar.st b/grammar/MGCPGrammar.st
index 62e98cf..d6270d6 100644
--- a/grammar/MGCPGrammar.st
+++ b/grammar/MGCPGrammar.st
@@ -20,7 +20,7 @@ PackageLoader fileInPackage: 'PetitParser'.
PP.PPCompositeParser subclass: MGCPGrammar [
| MGCPMessage EOL One_WSP MGCPMessage MGCPCommandLine MGCPVerb transaction_id endpointName MGCPversion MGCPParameter MGCPCommand ParameterValue SDPRecord SDPLine SDPinformation MGCPResponseLine responseCode responseString packageName |
- <category: 'MGCP-Core'>
+ <category: 'OsmoMGCP-Core'>
<comment: 'I am a the Grammar of the Media Gateway Control Protocol'>
start [