1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-02-15 04:42:04 +00:00
srs/trunk/3rdparty/srt-1-fit/srtcore/channel.h

168 lines
5.3 KiB
C
Raw Normal View History

2021-05-16 08:14:00 +00:00
/*
* SRT - Secure, Reliable, Transport
* Copyright (c) 2018 Haivision Systems Inc.
*
2021-05-16 08:14:00 +00:00
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
2021-05-16 08:14:00 +00:00
*/
/*****************************************************************************
Copyright (c) 2001 - 2011, The Board of Trustees of the University of Illinois.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above
copyright notice, this list of conditions and the
following disclaimer.
* Redistributions in binary form must reproduce the
above copyright notice, this list of conditions
and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the University of Illinois
nor the names of its contributors may be used to
endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*****************************************************************************/
/*****************************************************************************
written by
Yunhong Gu, last updated 01/27/2011
modified by
Haivision Systems Inc.
*****************************************************************************/
#ifndef INC_SRT_CHANNEL_H
#define INC_SRT_CHANNEL_H
2021-05-16 08:14:00 +00:00
#include "platform_sys.h"
2021-05-16 08:14:00 +00:00
#include "udt.h"
#include "packet.h"
#include "socketconfig.h"
2021-05-16 08:14:00 +00:00
#include "netinet_any.h"
namespace srt
2021-05-16 08:14:00 +00:00
{
class CChannel
{
void createSocket(int family);
2021-05-16 08:14:00 +00:00
public:
// XXX There's currently no way to access the socket ID set for
// whatever the channel is currently working for. Required to find
// some way to do this, possibly by having a "reverse pointer".
// Currently just "unimplemented".
std::string CONID() const { return ""; }
2021-05-16 08:14:00 +00:00
CChannel();
~CChannel();
2021-05-16 08:14:00 +00:00
/// Open a UDP channel.
/// @param [in] addr The local address that UDP will use.
2021-05-16 08:14:00 +00:00
void open(const sockaddr_any& addr);
2021-05-16 08:14:00 +00:00
void open(int family);
2021-05-16 08:14:00 +00:00
/// Open a UDP channel based on an existing UDP socket.
/// @param [in] udpsock UDP socket descriptor.
2021-05-16 08:14:00 +00:00
void attach(UDPSOCKET udpsock, const sockaddr_any& adr);
2021-05-16 08:14:00 +00:00
/// Disconnect and close the UDP entity.
2021-05-16 08:14:00 +00:00
void close() const;
2021-05-16 08:14:00 +00:00
/// Get the UDP sending buffer size.
/// @return Current UDP sending buffer size.
2021-05-16 08:14:00 +00:00
int getSndBufSize();
2021-05-16 08:14:00 +00:00
/// Get the UDP receiving buffer size.
/// @return Current UDP receiving buffer size.
2021-05-16 08:14:00 +00:00
int getRcvBufSize();
2021-05-16 08:14:00 +00:00
/// Query the socket address that the channel is using.
/// @param [out] addr pointer to store the returned socket address.
2021-05-16 08:14:00 +00:00
void getSockAddr(sockaddr_any& addr) const;
2021-05-16 08:14:00 +00:00
/// Query the peer side socket address that the channel is connect to.
/// @param [out] addr pointer to store the returned socket address.
2021-05-16 08:14:00 +00:00
void getPeerAddr(sockaddr_any& addr) const;
2021-05-16 08:14:00 +00:00
/// Send a packet to the given address.
/// @param [in] addr pointer to the destination address.
/// @param [in] packet reference to a CPacket entity.
/// @return Actual size of data sent.
2021-05-16 08:14:00 +00:00
int sendto(const sockaddr_any& addr, srt::CPacket& packet) const;
2021-05-16 08:14:00 +00:00
/// Receive a packet from the channel and record the source address.
/// @param [in] addr pointer to the source address.
/// @param [in] packet reference to a CPacket entity.
/// @return Actual size of data received.
2021-05-16 08:14:00 +00:00
EReadStatus recvfrom(sockaddr_any& addr, srt::CPacket& packet) const;
2021-05-16 08:14:00 +00:00
void setConfig(const CSrtMuxerConfig& config);
2021-05-16 08:14:00 +00:00
/// Get the IP TTL.
/// @param [in] ttl IP Time To Live.
/// @return TTL.
2021-05-16 08:14:00 +00:00
int getIpTTL() const;
2021-05-16 08:14:00 +00:00
/// Get the IP Type of Service.
/// @return ToS.
2021-05-16 08:14:00 +00:00
int getIpToS() const;
2021-05-16 08:14:00 +00:00
#ifdef SRT_ENABLE_BINDTODEVICE
bool getBind(char* dst, size_t len);
2021-05-16 08:14:00 +00:00
#endif
int ioctlQuery(int type) const;
int sockoptQuery(int level, int option) const;
2021-05-16 08:14:00 +00:00
const sockaddr* bindAddress() { return m_BindAddr.get(); }
const sockaddr_any& bindAddressAny() { return m_BindAddr; }
2021-05-16 08:14:00 +00:00
private:
void setUDPSockOpt();
2021-05-16 08:14:00 +00:00
private:
UDPSOCKET m_iSocket; // socket descriptor
2021-05-16 08:14:00 +00:00
// Mutable because when querying original settings
// this comprises the cache for extracted values,
// although the object itself isn't considered modified.
mutable CSrtMuxerConfig m_mcfg; // Note: ReuseAddr is unused and ineffective.
sockaddr_any m_BindAddr;
2021-05-16 08:14:00 +00:00
};
} // namespace srt
2021-05-16 08:14:00 +00:00
#endif