Blame usr/iscsid.h

Packit Service 646995
/*
Packit Service 646995
 * iSCSI Initiator Daemon
Packit Service 646995
 *
Packit Service 646995
 * Copyright (C) 2004 Dmitry Yusupov, Alex Aizman
Packit Service 646995
 * maintained by open-iscsi@@googlegroups.com
Packit Service 646995
 *
Packit Service 646995
 * This program is free software; you can redistribute it and/or modify
Packit Service 646995
 * it under the terms of the GNU General Public License as published
Packit Service 646995
 * by the Free Software Foundation; either version 2 of the License, or
Packit Service 646995
 * (at your option) any later version.
Packit Service 646995
 *
Packit Service 646995
 * This program is distributed in the hope that it will be useful, but
Packit Service 646995
 * WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 646995
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Packit Service 646995
 * General Public License for more details.
Packit Service 646995
 *
Packit Service 646995
 * See the file COPYING included with this distribution for more details.
Packit Service 646995
 */
Packit Service 646995
Packit Service 646995
#ifndef ISCSID_H
Packit Service 646995
#define ISCSID_H
Packit Service 646995
Packit Service 646995
/* IPC API */
Packit Service 646995
extern struct iscsi_ipc *ipc;
Packit Service 646995
Packit Service 646995
/* iscsid.c: daemon config */
Packit Service 646995
struct iscsi_daemon_config {
Packit Service 646995
	char *config_file;
Packit Service 646995
	char *pid_file;
Packit Service 646995
	char *initiator_name;
Packit Service 646995
	char *initiator_alias;
Packit Service 646995
	int safe_logout;
Packit Service 646995
};
Packit Service 646995
extern struct iscsi_daemon_config *dconfig;
Packit Service 646995
Packit Service 646995
#endif	/* ISCSID_H */