- Add support to use /dev/* nodes instead of just iscsi devices. - Create a dedicated test for the FUA/DPO flags - Allow reusing the context after disconnect - Fix non-randomness in rand_key() - Add iscsi-perf tool - Fix length bug when sending unsolicited data in iscsi_command - Reqrite the reconnect logic to begome fully async - Fix wrong checks for username in CHAP - Support Bidirectional CHAP - Improve handling of IMMEDIATE bit - Cmdsn, statsn fixes+ - iscsi_which_events can return 0, which means that there are no events right now but try again in a second or so. - Ignore any ASYNC EVENTS we receive since we can not yet pass them back to the application. - Add initial make test support - Various minor fixes to libiscsi and the test suite Signed-off-by: Ronnie Sahlberg <ronniesahlberg@gmail.com>
28 lines
658 B
Makefile
28 lines
658 B
Makefile
lib_LTLIBRARIES = libiscsi.la
|
|
|
|
libiscsi_la_SOURCES = \
|
|
connect.c crc32c.c discovery.c init.c \
|
|
login.c nop.c pdu.c iscsi-command.c \
|
|
scsi-lowlevel.c socket.c sync.c task_mgmt.c \
|
|
logging.c
|
|
|
|
if !HAVE_LIBGCRYPT
|
|
libiscsi_la_SOURCES += md5.c
|
|
endif
|
|
|
|
SOCURRENT=6
|
|
SOREVISON=0
|
|
SOAGE=2
|
|
libiscsi_la_LDFLAGS = \
|
|
-version-info $(SOCURRENT):$(SOREVISON):$(SOAGE) -bindir $(bindir) \
|
|
-no-undefined -export-symbols ${srcdir}/libiscsi.syms
|
|
|
|
libiscsi_la_CPPFLAGS = -I${srcdir}/../include -I$(srcdir)/include \
|
|
"-D_U_=__attribute__((unused))" \
|
|
"-D_R_(A,B)=__attribute__((format(printf,A,B)))"
|
|
|
|
AM_CFLAGS=$(WARN_CFLAGS)
|
|
|
|
dist_noinst_DATA = libiscsi.syms libiscsi.def
|
|
|