Skip to content

Commit 0465e21

Browse files
committed
License added
1 parent 3c2490a commit 0465e21

33 files changed

+1159
-110
lines changed

.DS_Store

6 KB
Binary file not shown.

Licences.txt

Lines changed: 657 additions & 46 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ TODO
88
TODO
99

1010
## License
11-
TODO
11+
The DAPNET Legacy Transmitter Service is licensed under the GNU GPLv3. A copy of the license is included in the repository.

example_config/LogSettings_Server.xml

Lines changed: 0 additions & 27 deletions
This file was deleted.

example_config/Settings.json

Lines changed: 0 additions & 36 deletions
This file was deleted.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# RabbitMQ settings
2+
amqp.host=server-name
3+
amqp.user=user
4+
amqp.password=pa$$w0rd
5+
amqp.exchange=dapnet.calls
6+
7+
# Service URLs
8+
services.bootstrap=http://dapnetdc2.db0sda.ampr.org/transmitters/_bootstrap
9+
services.heartbeat=http://dapnetdc2.db0sda.ampr.org/transmitters/_heartbeat
10+
11+
# Transmitter server
12+
serverPort=43434
13+
numberOfSyncLoops=5
14+
# Send speed in bps: 0=512, 1=1200, 2=2400
15+
sendSpeed=1

src/main/java/de/rwth_aachen/afu/dapnet/legacy/transmitter_service/CoreStartupException.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* DAPNET Legacy Transmitter Service
3+
* Copyright (C) 2021 Philipp Thiel
4+
*
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* This program is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
119
package de.rwth_aachen.afu.dapnet.legacy.transmitter_service;
220

321
public class CoreStartupException extends RuntimeException {

src/main/java/de/rwth_aachen/afu/dapnet/legacy/transmitter_service/Program.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* DAPNET Legacy Transmitter Service
3+
* Copyright (C) 2021 Philipp Thiel
4+
*
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* This program is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
119
package de.rwth_aachen.afu.dapnet.legacy.transmitter_service;
220

321
import java.io.IOException;

src/main/java/de/rwth_aachen/afu/dapnet/legacy/transmitter_service/ThreadedPagerMessageDispatcher.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* DAPNET Legacy Transmitter Service
3+
* Copyright (C) 2021 Philipp Thiel
4+
*
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* This program is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
119
package de.rwth_aachen.afu.dapnet.legacy.transmitter_service;
220

321
import java.util.concurrent.ExecutorService;

src/main/java/de/rwth_aachen/afu/dapnet/legacy/transmitter_service/backend/PagerMessageDispatcher.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* DAPNET Legacy Transmitter Service
3+
* Copyright (C) 2021 Philipp Thiel
4+
*
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* This program is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
119
package de.rwth_aachen.afu.dapnet.legacy.transmitter_service.backend;
220

321
import de.rwth_aachen.afu.dapnet.legacy.transmitter_service.transmission.PagerMessage;

0 commit comments

Comments
 (0)