提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
|
|
3 |
import com.iailab.netsdk.lib.NetSDKLib; |
|
4 |
|
|
5 |
public class NET_ISCSI_TARGET extends NetSDKLib.SdkStructure { |
|
6 |
|
|
7 |
public NET_ISCSI_TARGET() { |
|
8 |
this.dwSize = this.size(); |
|
9 |
|
|
10 |
//System.out.println("NET_ISCSI_TARGET " + this.size()); |
|
11 |
} |
|
12 |
|
|
13 |
public int dwSize; |
|
14 |
public byte[] szName = new byte[128]; // 名称 |
|
15 |
public byte[] szAddress = new byte[64]; // 服务器地址 |
|
16 |
public byte[] szUser =new byte[128]; // 用户名 |
|
17 |
public int nPort; // 端口 |
|
18 |
public int nStatus; // 状态, 0-未知, 1-已连接, 2-未连接, 3-连接失败, 4-认证失败, 5-连接超时, 6-不存在 |
|
19 |
} |