diff options
Diffstat (limited to 'src/anyrtpproxy/options.h')
-rw-r--r-- | src/anyrtpproxy/options.h | 12 |
1 files changed, 6 insertions, 6 deletions
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_; }; |