Show
Ignore:
Timestamp:
07/04/08 03:27:41 (5 months ago)
Author:
flynd
Message:

Removed uin functions from socket classes as they are no longer used.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/licq/include/licq_socket.h

    r6395 r6411  
    3636{ 
    3737public: 
    38   INetSocket(unsigned long _nOwner); 
    3938  INetSocket(const char *_szOwnerId, unsigned long _nOwnerPPID); 
    4039  virtual ~INetSocket(); 
     
    4645  unsigned long OwnerPPID() { return m_nOwnerPPID; } 
    4746  void SetOwner(const char *s, unsigned long n); 
    48   unsigned long Owner()     { return (m_nOwner); } 
    49   void SetOwner(unsigned long _nOwner); 
    5047  unsigned long Version()     { return (m_nVersion); } 
    5148  void SetVersion(unsigned long _nVersion)  { m_nVersion = _nVersion; } 
     
    10097  char m_szID[4]; 
    10198  int m_nSockType; 
    102   unsigned long m_nOwner; 
    10399  unsigned short m_nVersion; 
    104100  SocketError_et m_nErrorType; 
     
    114110{ 
    115111public: 
    116   TCPSocket(unsigned long _nOwner); 
    117112  TCPSocket(const char *s, unsigned long n); 
    118113  TCPSocket(); 
     
    151146{ 
    152147public: 
    153   SrvSocket(unsigned long _nOwner); 
    154148  SrvSocket(const char *s, unsigned long n); 
    155149  virtual ~SrvSocket(); 
     
    172166{ 
    173167public: 
    174   UDPSocket(unsigned long _nOwner); 
     168  UDPSocket(const char* ownerId, unsigned long ownerPpid); 
    175169  virtual ~UDPSocket(); 
    176170