From 1b56da9dfbe67cebf024422a4e816366046eb284 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Tue, 14 Dec 2010 03:03:20 +0100 Subject: [PATCH] License: Add AGPLv3 header to the code --- A3A8.st | 18 ++++++++++++++++++ BSSAP.st | 18 ++++++++++++++++++ BSSMAP.st | 18 ++++++++++++++++++ GSM48.st | 17 +++++++++++++++++ GSMDriver.st | 18 ++++++++++++++++++ Messages.st | 17 +++++++++++++++++ SCCPHandler.st | 18 ++++++++++++++++++ TestPhone.st | 18 ++++++++++++++++++ Tests.st | 18 ++++++++++++++++++ WebApp.st | 18 ++++++++++++++++++ 10 files changed, 178 insertions(+) diff --git a/A3A8.st b/A3A8.st index 5d71c18..b5f56b5 100644 --- a/A3A8.st +++ b/A3A8.st @@ -1,3 +1,21 @@ +" + (C) 2010 by Holger Hans Peter Freyther + All Rights Reserved + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +" + Object subclass: A3A8 [ A3A8 class >> initialize [ DLD addLibrary: 'liba3a8.so' diff --git a/BSSAP.st b/BSSAP.st index fdb33a1..ae5ccd2 100644 --- a/BSSAP.st +++ b/BSSAP.st @@ -1,3 +1,21 @@ +" + (C) 2010 by Holger Hans Peter Freyther + All Rights Reserved + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +" + Object subclass: BSSAPHelper [ diff --git a/BSSMAP.st b/BSSMAP.st index d1359d1..e89da2c 100644 --- a/BSSMAP.st +++ b/BSSMAP.st @@ -1,3 +1,21 @@ +" + (C) 2010 by Holger Hans Peter Freyther + All Rights Reserved + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +" + IEBase subclass: GSM0808IE [ diff --git a/GSM48.st b/GSM48.st index 393c60b..c5c31fe 100644 --- a/GSM48.st +++ b/GSM48.st @@ -1,3 +1,20 @@ +" + (C) 2010 by Holger Hans Peter Freyther + All Rights Reserved + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +" "Messages for GSM04.08" """ diff --git a/GSMDriver.st b/GSMDriver.st index ad6187c..531cff0 100644 --- a/GSMDriver.st +++ b/GSMDriver.st @@ -1,3 +1,21 @@ +" + (C) 2010 by Holger Hans Peter Freyther + All Rights Reserved + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +" + Object subclass: GSMDriver [ | sccp proc sapis completeSem phoneConfig | diff --git a/Messages.st b/Messages.st index 906763f..5433cd1 100644 --- a/Messages.st +++ b/Messages.st @@ -1,3 +1,20 @@ +" + (C) 2010 by Holger Hans Peter Freyther + All Rights Reserved + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +" "General IE based message handling" Object subclass: IEBase [ diff --git a/SCCPHandler.st b/SCCPHandler.st index 11d3558..94960f3 100644 --- a/SCCPHandler.st +++ b/SCCPHandler.st @@ -1,3 +1,21 @@ +" + (C) 2010 by Holger Hans Peter Freyther + All Rights Reserved + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +" + PackageLoader fileInPackage: 'OsmoNetwork'. Object subclass: SCCPConnection [ diff --git a/TestPhone.st b/TestPhone.st index a9e21fb..4bb3106 100644 --- a/TestPhone.st +++ b/TestPhone.st @@ -1,3 +1,21 @@ +" + (C) 2010 by Holger Hans Peter Freyther + All Rights Reserved + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +" + PackageLoader fileInPackage: 'OsmoNetwork'. Object subclass: IPAConnection [ diff --git a/Tests.st b/Tests.st index 84cede8..ac434b2 100644 --- a/Tests.st +++ b/Tests.st @@ -1,3 +1,21 @@ +" + (C) 2010 by Holger Hans Peter Freyther + All Rights Reserved + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +" + TestCase subclass: GSM0808Test [ testLAI [ | lai res | diff --git a/WebApp.st b/WebApp.st index cf1cc28..716e97b 100644 --- a/WebApp.st +++ b/WebApp.st @@ -1,3 +1,21 @@ +" + (C) 2010 by Holger Hans Peter Freyther + All Rights Reserved + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +" + PackageLoader fileInPackage: 'Iliad-Core'. PackageLoader fileInPackage: 'Iliad-More-Comet'. PackageLoader fileInPackage: 'Iliad-More-Formula'.