Update comments

This commit is contained in:
Ronnie Sahlberg
2013-08-04 18:51:58 -07:00
parent dc981c93ef
commit 1e5a256366

View File

@@ -221,13 +221,16 @@ struct iscsi_pdu {
iscsi_command_cb callback;
void *private_data;
/* Used to track writing the iscsi header to the socket */
struct iscsi_data outdata; /* Header for PDU to send */
size_t outdata_written; /* How much of the header we have written */
/* Used to track writing the payload data to the socket */
uint32_t payload_offset; /* Offset of payload data to write */
uint32_t payload_len; /* Amount of payload data to write */
uint32_t payload_written; /* How much of the payload we have written */
struct iscsi_data indata;
struct iscsi_scsi_cbdata scsi_cbdata;