⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 groupsock.hh

📁 流媒体传输协议的实现代码,非常有用.可以支持rtsp mms等流媒体传输协议
💻 HH
字号:
/**********This library is free software; you can redistribute it and/or modify it underthe terms of the GNU Lesser General Public License as published by theFree Software Foundation; either version 2.1 of the License, or (at youroption) any later version. (See <http://www.gnu.org/copyleft/lesser.html>.)This library is distributed in the hope that it will be useful, but WITHOUTANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESSFOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License formore details.You should have received a copy of the GNU Lesser General Public Licensealong with this library; if not, write to the Free Software Foundation, Inc.,59 Temple Place, Suite 330, Boston, MA  02111-1307  USA**********/// "mTunnel" multicast access service// Copyright (c) 1996-1998 Live Networks, Inc.  All rights reserved.// 'Group sockets'// C++ header#ifndef _GROUPSOCK_HH#define _GROUPSOCK_HH#ifndef _GROUPSOCK_VERSION_HH#include "groupsock_version.hh"#endif#ifndef _NET_INTERFACE_HH#include "NetInterface.hh"#endif#ifndef _GROUPEID_HH#include "GroupEId.hh"#endif// An "OutputSocket" is (by default) used only to send packets.// No packets are received on it (unless a subclass arranges this)class OutputSocket: public Socket {public:  OutputSocket(UsageEnvironment& env);  virtual ~OutputSocket();    Boolean write(netAddressBits address, Port port, u_int8_t ttl,		unsigned char* buffer, unsigned bufferSize);protected:  OutputSocket(UsageEnvironment& env, Port port);  portNumBits sourcePortNum() const {return fSourcePort.num();}private: // redefined virtual function  virtual Boolean handleRead(unsigned char* buffer, unsigned bufferMaxSize,			     unsigned& bytesRead,			     struct sockaddr_in& fromAddress);private:  Port fSourcePort;  u_int8_t fLastSentTTL;};class destRecord {public:  destRecord(struct in_addr const& addr, Port const& port, u_int8_t ttl,	     destRecord* next);  virtual ~destRecord();public:  destRecord* fNext;  GroupEId fGroupEId;  Port fPort;};// A "Groupsock" is used to both send and receive packets.// As the name suggests, it was originally designed to send/receive// multicast, but it can send/receive unicast as well.class Groupsock: public OutputSocket {public:  Groupsock(UsageEnvironment& env, struct in_addr const& groupAddr,	    Port port, u_int8_t ttl);      // used for a 'source-independent multicast' group  Groupsock(UsageEnvironment& env, struct in_addr const& groupAddr,	    struct in_addr const& sourceFilterAddr,	    Port port);      // used for a 'source-specific multicast' group  virtual ~Groupsock();  void changeDestinationParameters(struct in_addr const& newDestAddr,				   Port newDestPort, int newDestTTL);      // By default, the destination address, port and ttl for      // outgoing packets are those that were specified in      // the constructor.  This works OK for multicast sockets,      // but for unicast we usually want the destination port      // number, at least, to be different from the source port.      // (If a parameter is 0 (or ~0 for ttl), then no change made.)  // As a special case, we also allow multiple destinations (addresses & ports)  // (This can be used to implement multi-unicast.)  void addDestination(struct in_addr const& addr, Port const& port);  void removeDestination(struct in_addr const& addr, Port const& port);  void removeAllDestinations();  struct in_addr const& groupAddress() const {    return fIncomingGroupEId.groupAddress();  }  struct in_addr const& sourceFilterAddress() const {    return fIncomingGroupEId.sourceFilterAddress();  }    Boolean isSSM() const {    return fIncomingGroupEId.isSSM();  }    u_int8_t ttl() const { return fTTL; }    void multicastSendOnly(); // send, but don't receive any multicast packets  Boolean output(UsageEnvironment& env, u_int8_t ttl,		 unsigned char* buffer, unsigned bufferSize,		 DirectedNetInterface* interfaceNotToFwdBackTo = NULL);    DirectedNetInterfaceSet& members() { return fMembers; }    Boolean deleteIfNoMembers;  Boolean isSlave; // for tunneling  static NetInterfaceTrafficStats statsIncoming;  static NetInterfaceTrafficStats statsOutgoing;  static NetInterfaceTrafficStats statsRelayedIncoming;  static NetInterfaceTrafficStats statsRelayedOutgoing;  NetInterfaceTrafficStats statsGroupIncoming; // *not* static  NetInterfaceTrafficStats statsGroupOutgoing; // *not* static  NetInterfaceTrafficStats statsGroupRelayedIncoming; // *not* static  NetInterfaceTrafficStats statsGroupRelayedOutgoing; // *not* static    Boolean wasLoopedBackFromUs(UsageEnvironment& env,			      struct sockaddr_in& fromAddress);    static Groupsock* lookupByName(UsageEnvironment& env, char const* name);  public: // redefined virtual functions  virtual Boolean handleRead(unsigned char* buffer, unsigned bufferMaxSize,			     unsigned& bytesRead,			     struct sockaddr_in& fromAddress);  private:  int outputToAllMembersExcept(DirectedNetInterface* exceptInterface,			       u_int8_t ttlToFwd,			       unsigned char* data, unsigned size,			       netAddressBits sourceAddr);  private:  GroupEId fIncomingGroupEId;  destRecord* fDests;  u_int8_t fTTL;  DirectedNetInterfaceSet fMembers;};UsageEnvironment& operator<<(UsageEnvironment& s, const Groupsock& g);// A data structure for looking up a 'groupsock'// by (multicast address, port), or by socket numberclass GroupsockLookupTable {public:  Groupsock* Fetch(UsageEnvironment& env, netAddressBits groupAddress,		   Port port, u_int8_t ttl, Boolean& isNew);      // Creates a new Groupsock if none already exists  Groupsock* Fetch(UsageEnvironment& env, netAddressBits groupAddress,		   netAddressBits sourceFilterAddr,		   Port port, Boolean& isNew);      // Creates a new Groupsock if none already exists  Groupsock* Lookup(netAddressBits groupAddress, Port port);      // Returns NULL if none already exists  Groupsock* Lookup(netAddressBits groupAddress,		    netAddressBits sourceFilterAddr,		    Port port);      // Returns NULL if none already exists  Groupsock* Lookup(UsageEnvironment& env, int sock);      // Returns NULL if none already exists  Boolean Remove(Groupsock const* groupsock);  // Used to iterate through the groupsocks in the table  class Iterator {  public:    Iterator(GroupsockLookupTable& groupsocks);        Groupsock* next(); // NULL iff none      private:    AddressPortLookupTable::Iterator fIter;  };  private:  Groupsock* AddNew(UsageEnvironment& env,		    netAddressBits groupAddress,		    netAddressBits sourceFilterAddress,		    Port port, u_int8_t ttl);  private:  friend class Iterator;  AddressPortLookupTable fTable;};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -