⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iscsi-portal.h

📁 这个linux源代码是很全面的~基本完整了~使用c编译的~由于时间问题我没有亲自测试~但就算用来做参考资料也是非常好的
💻 H
字号:
#ifndef ISCSI_PORTAL_H_#define ISCSI_PORTAL_H_/* * iSCSI driver for Linux * Copyright (C) 2001 Cisco Systems, Inc. * maintained by linux-iscsi@cisco.com * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published * by the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * See the file COPYING included with this distribution for more details. * * $Id: iscsi-portal.h,v 1.2 2002/09/23 17:44:02 smferris Exp $ * * portal info structure used in ioctls and the kernel module * */typedef struct iscsi_portal_info {    int             login_timeout;    int             auth_timeout;    int		    active_timeout;    int		    idle_timeout;    int		    ping_timeout;    int		    abort_timeout;    int		    reset_timeout;    int		    replacement_timeout;    int		    InitialR2T;    int		    ImmediateData;    int             MaxRecvDataSegmentLength;    int		    FirstBurstLength;    int		    MaxBurstLength;    int             DefaultTime2Wait;    int             DefaultTime2Retain;    int             ip_length;    unsigned char   ip_address[16];    int		    port;    int             tag;    int             tcp_window_size;    int             type_of_service;    int             preference;  /* preference relative to other portals, higher is better */} iscsi_portal_info_t;#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -