mirror of
https://github.com/SCST-project/scst.git
synced 2026-08-21 14:46:23 +00:00
git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@162 d57e44dd-8a1f-0410-8b47-8ef2f437770f
20 lines
547 B
C
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__ */
|