From e191eab68d905bfe14e3590a92fa653f0ae2ebce Mon Sep 17 00:00:00 2001 From: Markus Grüneis Date: Thu, 18 Feb 2010 09:15:27 +0000 Subject: non-functional changes only: use standard writing of stdint.h types; still import from boost (compiler compatibility) --- src/anyrtpproxy/options.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/anyrtpproxy/options.h') diff --git a/src/anyrtpproxy/options.h b/src/anyrtpproxy/options.h index 8188831..cf32c87 100644 --- a/src/anyrtpproxy/options.h +++ b/src/anyrtpproxy/options.h @@ -90,10 +90,10 @@ public: Options& setLocalSyncAddr(std::string l); std::string getLocalSyncPort(); Options& setLocalSyncPort(std::string l); - u_int16_t getRtpStartPort(); - Options& setRtpStartPort(u_int16_t l); - u_int16_t getRtpEndPort(); - Options& setRtpEndPort(u_int16_t l); + uint16_t getRtpStartPort(); + Options& setRtpStartPort(uint16_t l); + uint16_t getRtpEndPort(); + Options& setRtpEndPort(uint16_t l); ConnectToList getConnectTo(); private: @@ -129,8 +129,8 @@ private: std::string local_sync_addr_; std::string local_sync_port_; std::string local_addr_; - u_int16_t rtp_start_port_; - u_int16_t rtp_end_port_; + uint16_t rtp_start_port_; + uint16_t rtp_end_port_; ConnectToList connect_to_; Host control_interface_; }; -- cgit v1.2.3