s_data Struct Reference

Collaboration diagram for s_data:

Collaboration graph
[legend]
List of all members.

Detailed Description

Stores data to send/receive later.

Author:
VooDooMan
Version:
1
Date:
2004

Definition at line 81 of file sock.cpp.

Public Member Functions

 s_data ()

Public Attributes

bool closed
 Idicates that connection has been closed (if this is true, data && len are undefined).
char * data
 Data.
size_t len
 Length of data.


Constructor & Destructor Documentation

s_data::s_data  )  [inline]
 

Definition at line 87 of file sock.cpp.

References closed, data, and len.

00088     {
00089         closed=false;
00090         //error=0;
00091         len=0;
00092         data=NULL;
00093     }


Member Data Documentation

bool s_data::closed
 

Idicates that connection has been closed (if this is true, data && len are undefined).

Definition at line 82 of file sock.cpp.

Referenced by s_data(), sock_send(), sock_send_cache(), and sock_unread().

char* s_data::data
 

Data.

Definition at line 85 of file sock.cpp.

Referenced by s_data(), sock_send(), sock_send_cache(), and sock_unread().

size_t s_data::len
 

Length of data.

Definition at line 84 of file sock.cpp.

Referenced by s_data(), sock_send(), sock_send_cache(), and sock_unread().


The documentation for this struct was generated from the following file:
Generated on Sun Jul 10 05:45:47 2005 for VooDoo cIRCle by doxygen 1.4.3

Hosted by SourceForge.net Logo