Files
scst/iscsi-scst/kernel/digest.h
T
2007-08-15 09:28:54 +00:00

20 lines
547 B
C

/*
* iSCSI digest handling.
* (C) 2004 Xiranet Communications GmbH <arne.redlich@xiranet.com>
* This code is licensed under the GPL.
*/
#ifndef __ISCSI_DIGEST_H__
#define __ISCSI_DIGEST_H__
extern void digest_alg_available(unsigned int *val);
extern int digest_init(struct iscsi_conn *conn);
extern int digest_rx_header(struct iscsi_cmnd *cmnd);
extern int digest_rx_data(struct iscsi_cmnd *cmnd);
extern void digest_tx_header(struct iscsi_cmnd *cmnd);
extern void digest_tx_data(struct iscsi_cmnd *cmnd);
#endif /* __ISCSI_DIGEST_H__ */