summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/AV/RTCP_Channel.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/AV/RTCP_Channel.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/AV/RTCP_Channel.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/TAO/orbsvcs/orbsvcs/AV/RTCP_Channel.h b/TAO/orbsvcs/orbsvcs/AV/RTCP_Channel.h
index c19c7fe86cd..a60bc441255 100644
--- a/TAO/orbsvcs/orbsvcs/AV/RTCP_Channel.h
+++ b/TAO/orbsvcs/orbsvcs/AV/RTCP_Channel.h
@@ -40,13 +40,13 @@ public:
const ACE_Addr *peer_addr);
/// Takes statistics of incoming RTP traffic and creates a receiver report block.
- RR_Block *getRRBlock(void);
+ RR_Block *getRRBlock();
/// Returns the delay since last sender report.
- ACE_UINT32 dlsr (void);
+ ACE_UINT32 dlsr ();
/// Returns the last sender report timestamp.
- ACE_UINT32 lsr (void);
+ ACE_UINT32 lsr ();
/// Updates channel information with incoming sender report.
int updateStatistics(RTCP_SR_Packet *sr);
@@ -62,7 +62,7 @@ public:
private:
/// Don't want default constructor.
- RTCP_Channel_In(void);
+ RTCP_Channel_In();
/// Don't want copy constructor.
RTCP_Channel_In(const RTCP_Channel_In &ch);
@@ -166,22 +166,22 @@ class RTCP_Channel_Out
{
public:
/// Constructor.
- RTCP_Channel_Out(void);
+ RTCP_Channel_Out();
/// Destructor.
- ~RTCP_Channel_Out(void);
+ ~RTCP_Channel_Out();
/// Update the channel statistics each time an RTP packet is sent.
void updateStatistics (RTP_Packet *pkt);
/// Returns the timestamp of the last RTP packet sent.
- ACE_UINT32 timestamp (void);
+ ACE_UINT32 timestamp ();
/// Returns the number of packets sent.
- ACE_UINT32 packets_sent (void);
+ ACE_UINT32 packets_sent ();
/// Returns the number of octets sent.
- ACE_UINT32 octets_sent (void);
+ ACE_UINT32 octets_sent ();
/// Sets the canonical name of the source.
void cname (const char *cname) { this->cname_ = cname; }
@@ -190,7 +190,7 @@ public:
const char *cname (void) { return this->cname_.c_str(); }
/// Returns whether or not this source is active.
- char active (void);
+ char active ();
private:
/// Holds the canonical name for this channel.