Skip to content

Commit c905a7a

Browse files
committed
src: copyright headers adjusted, IRlcAmEntities.ned split up
1 parent 43cce73 commit c905a7a

64 files changed

Lines changed: 357 additions & 268 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/simu5g/stack/pdcp/DcMux.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// Simu5G
33
//
4-
// Authors: Giovanni Nardini, Giovanni Stea, Antonio Virdis (University of Pisa)
4+
// Authors: Andras Varga (OpenSim Ltd)
55
//
66
// This file is part of a software released under the license included in file
77
// "license.pdf". Please read LICENSE and README files before using it.

src/simu5g/stack/pdcp/DcMux.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// Simu5G
33
//
4-
// Authors: Giovanni Nardini, Giovanni Stea, Antonio Virdis (University of Pisa)
4+
// Authors: Andras Varga (OpenSim Ltd)
55
//
66
// This file is part of a software released under the license included in file
77
// "license.pdf". Please read LICENSE and README files before using it.

src/simu5g/stack/pdcp/DcMux.ned

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// Simu5G
33
//
4-
// Authors: Giovanni Nardini, Giovanni Stea, Antonio Virdis (University of Pisa)
4+
// Authors: Andras Varga (OpenSim Ltd)
55
//
66
// This file is part of a software released under the license included in file
77
// "license.pdf". Please read LICENSE and README files before using it.

src/simu5g/stack/pdcp/UpperMux.cc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
//
2+
// Simu5G
3+
//
4+
// Authors: Andras Varga (OpenSim Ltd)
5+
//
6+
// This file is part of a software released under the license included in file
7+
// "license.pdf". Please read LICENSE and README files before using it.
8+
// The above files and the present reference are part of the software itself,
9+
// and cannot be removed from it.
10+
//
11+
112
#include "simu5g/stack/pdcp/UpperMux.h"
213
#include "simu5g/common/LteControlInfo.h"
314
#include "simu5g/common/LteControlInfoTags_m.h"

src/simu5g/stack/pdcp/UpperMux.h

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
//
2+
// Simu5G
3+
//
4+
// Authors: Andras Varga (OpenSim Ltd)
5+
//
6+
// This file is part of a software released under the license included in file
7+
// "license.pdf". Please read LICENSE and README files before using it.
8+
// The above files and the present reference are part of the software itself,
9+
// and cannot be removed from it.
10+
//
11+
112
#ifndef _UPPER_MUX_H_
213
#define _UPPER_MUX_H_
314

src/simu5g/stack/pdcp/UpperMux.ned

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
//
2+
// Simu5G
3+
//
4+
// Authors: Andras Varga (OpenSim Ltd)
5+
//
6+
// This file is part of a software released under the license included in file
7+
// "license.pdf". Please read LICENSE and README files before using it.
8+
// The above files and the present reference are part of the software itself,
9+
// and cannot be removed from it.
10+
//
11+
112
package simu5g.stack.pdcp;
213

314
//
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
//
2+
// Simu5G
3+
//
4+
// Authors: Andras Varga (OpenSim Ltd)
5+
//
6+
// This file is part of a software released under the license included in file
7+
// "license.pdf". Please read LICENSE and README files before using it.
8+
// The above files and the present reference are part of the software itself,
9+
// and cannot be removed from it.
10+
//
11+
12+
package simu5g.stack.rlc;
13+
14+
//
15+
// Receiving side of an RLC AM entity: extends the generic RX interface with
16+
// the gates over which it hands control PDUs to the co-located transmitting
17+
// side (see RlcAmEntityBase).
18+
//
19+
moduleinterface IRlcAmRxEntity extends IRlcRxEntity
20+
{
21+
gates:
22+
output feedbackOut; // received STATUS PDUs -> TX-side ARQ
23+
output statusOut; // own STATUS reports -> TX for transmission
24+
}
Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,3 @@ moduleinterface IRlcAmTxEntity extends IRlcTxEntity
2222
input feedbackIn; // STATUS PDUs received from the peer (to ARQ)
2323
input statusIn; // locally generated STATUS reports (to transmit)
2424
}
25-
26-
//
27-
// Receiving side of an RLC AM entity: extends the generic RX interface with
28-
// the gates over which it hands control PDUs to the co-located transmitting
29-
// side (see RlcAmEntityBase).
30-
//
31-
moduleinterface IRlcAmRxEntity extends IRlcRxEntity
32-
{
33-
gates:
34-
output feedbackOut; // received STATUS PDUs -> TX-side ARQ
35-
output statusOut; // own STATUS reports -> TX for transmission
36-
}

src/simu5g/stack/rlc/RlcMux.cc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
//
2+
// Simu5G
3+
//
4+
// Authors: Andras Varga (OpenSim Ltd)
5+
//
6+
// This file is part of a software released under the license included in file
7+
// "license.pdf". Please read LICENSE and README files before using it.
8+
// The above files and the present reference are part of the software itself,
9+
// and cannot be removed from it.
10+
//
11+
112
#include "simu5g/stack/rlc/RlcMux.h"
213
#include "simu5g/stack/rlc/RlcRxEntityBase.h"
314
#include "simu5g/stack/rlc/um/RlcUmTxEntityBase.h"

src/simu5g/stack/rlc/RlcMux.h

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
//
2+
// Simu5G
3+
//
4+
// Authors: Andras Varga (OpenSim Ltd)
5+
//
6+
// This file is part of a software released under the license included in file
7+
// "license.pdf". Please read LICENSE and README files before using it.
8+
// The above files and the present reference are part of the software itself,
9+
// and cannot be removed from it.
10+
//
11+
112
#ifndef _RLC_MUX_H_
213
#define _RLC_MUX_H_
314

0 commit comments

Comments
 (0)