mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-14 19:25:53 +00:00
12 lines
328 B
C
12 lines
328 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef ISCSI_TARGET_DEVICE_H
|
|
#define ISCSI_TARGET_DEVICE_H
|
|
|
|
struct iscsit_cmd;
|
|
struct iscsit_session;
|
|
|
|
extern void iscsit_determine_maxcmdsn(struct iscsit_session *);
|
|
extern void iscsit_increment_maxcmdsn(struct iscsit_cmd *, struct iscsit_session *);
|
|
|
|
#endif /* ISCSI_TARGET_DEVICE_H */
|