Skip to content

Commit

Permalink
fixup: UdpControlInfo renamed to UdpCommand
Browse files Browse the repository at this point in the history
  • Loading branch information
ZoltanBojthe committed Nov 19, 2024
1 parent 547340b commit a9cdb10
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/inet/transportlayer/rtp/Rtcp.ned
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ simple Rtcp

gates:
input rtpIn @labels(RtpInnerPacket);
input udpIn @labels(UdpControlInfo/up);
input udpIn @labels(UdpCommand/up);
output rtpOut @labels(RtpInnerPacket);
output udpOut @labels(UdpControlInfo/down);
output udpOut @labels(UdpCommand/down);
}

4 changes: 2 additions & 2 deletions src/inet/transportlayer/rtp/Rtp.ned
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ simple Rtp
input appIn @labels(RtpInterfacePacket/down);
input profileIn @labels(RtpInnerPacket);
input rtcpIn @labels(RtpInnerPacket);
input udpIn @labels(UdpControlInfo/up);
input udpIn @labels(UdpCommand/up);
output appOut @labels(RtpInterfacePacket/up);
output profileOut @labels(RtpInnerPacket);
output rtcpOut @labels(RtpInnerPacket);
output udpOut @labels(UdpControlInfo/down);
output udpOut @labels(UdpCommand/down);
}

2 changes: 1 addition & 1 deletion tests/misc/dlltest/SomeUDPApp.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include "inet/common/INETDefs.h"

#include "SomeUDPApp.h"
#include "inet/transportlayer/contract/udp/UdpControlInfo_m.h"
#include "inet/transportlayer/contract/udp/UdpCommand_m.h"
#include "AddressResolver.h"


Expand Down
2 changes: 1 addition & 1 deletion tests/module/UDPSocket_1.test
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Tests UdpSocket method calls:

%file: TestApp.cc
#include "inet/transportlayer/contract/udp/UdpSocket.h"
#include "inet/transportlayer/contract/udp/UdpControlInfo_m.h"
#include "inet/transportlayer/contract/udp/UdpCommand_m.h"

using namespace inet;
namespace UDPSocket_1 {
Expand Down
2 changes: 1 addition & 1 deletion tests/module/UDPSocket_2.test
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tests UdpSocket::bind() can not be called more than once on a socket.
%#--------------------------------------------------------------------------------------------------------------
%file: TestApp.cc
#include "inet/transportlayer/contract/udp/UdpSocket.h"
#include "inet/transportlayer/contract/udp/UdpControlInfo_m.h"
#include "inet/transportlayer/contract/udp/UdpCommand_m.h"

using namespace inet;
namespace UDPSocket_2 {
Expand Down
2 changes: 1 addition & 1 deletion tests/module/lib/ieee80211retransmissiontest/MpduGen.cc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

#include "inet/common/packet/chunk/ByteCountChunk.h"
#include "inet/networklayer/common/L3AddressResolver.h"
#include "inet/transportlayer/contract/udp/UdpControlInfo_m.h"
#include "inet/transportlayer/contract/udp/UdpCommand_m.h"

namespace inet {

Expand Down

0 comments on commit a9cdb10

Please sign in to comment.