Changeset 6411 for trunk/licq/include/licq_socket.h
- Timestamp:
- 07/04/08 03:27:41 (5 months ago)
- Files:
-
- 1 modified
-
trunk/licq/include/licq_socket.h (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/licq/include/licq_socket.h
r6395 r6411 36 36 { 37 37 public: 38 INetSocket(unsigned long _nOwner);39 38 INetSocket(const char *_szOwnerId, unsigned long _nOwnerPPID); 40 39 virtual ~INetSocket(); … … 46 45 unsigned long OwnerPPID() { return m_nOwnerPPID; } 47 46 void SetOwner(const char *s, unsigned long n); 48 unsigned long Owner() { return (m_nOwner); }49 void SetOwner(unsigned long _nOwner);50 47 unsigned long Version() { return (m_nVersion); } 51 48 void SetVersion(unsigned long _nVersion) { m_nVersion = _nVersion; } … … 100 97 char m_szID[4]; 101 98 int m_nSockType; 102 unsigned long m_nOwner;103 99 unsigned short m_nVersion; 104 100 SocketError_et m_nErrorType; … … 114 110 { 115 111 public: 116 TCPSocket(unsigned long _nOwner);117 112 TCPSocket(const char *s, unsigned long n); 118 113 TCPSocket(); … … 151 146 { 152 147 public: 153 SrvSocket(unsigned long _nOwner);154 148 SrvSocket(const char *s, unsigned long n); 155 149 virtual ~SrvSocket(); … … 172 166 { 173 167 public: 174 UDPSocket( unsigned long _nOwner);168 UDPSocket(const char* ownerId, unsigned long ownerPpid); 175 169 virtual ~UDPSocket(); 176 170
