public static class WinRas.RASPPPIP extends Structure
Modifier and Type | Class and Description |
---|---|
static class |
WinRas.RASPPPIP.ByReference |
Structure.ByValue, Structure.StructField
Modifier and Type | Field and Description |
---|---|
int |
dwError
A value that specifies the result of the PPP control protocol negotiation.
|
int |
dwOptions
A value that specifies IPCP options for the local client.
|
int |
dwServerOptions
A value that specifies IPCP options for the remote server.
|
int |
dwSize
A value that specifies the size, in bytes, of the structure.
|
char[] |
szIpAddress
An array that contains a null-terminated string that is the client's IP address on the RAS connection.
|
char[] |
szServerIpAddress
An array that contains a null-terminated string that is the server's IP address on the RAS connection.
|
ALIGN_DEFAULT, ALIGN_GNUC, ALIGN_MSVC, ALIGN_NONE, CALCULATE_SIZE
Constructor and Description |
---|
WinRas.RASPPPIP() |
WinRas.RASPPPIP(Pointer memory) |
Modifier and Type | Method and Description |
---|---|
protected java.util.List |
getFieldOrder()
Return this Structure's field names in their proper order.
|
allocateMemory, allocateMemory, autoAllocate, autoRead, autoRead, autoWrite, autoWrite, cacheTypeInfo, clear, ensureAllocated, equals, fieldOffset, getAutoRead, getAutoWrite, getFieldList, getFields, getNativeAlignment, getNativeSize, getNativeSize, getPointer, getStringEncoding, getStructAlignment, hashCode, newInstance, newInstance, read, readField, readField, setAlignType, setAutoRead, setAutoSynch, setAutoWrite, setFieldOrder, setStringEncoding, size, sortFields, toArray, toArray, toString, toString, useMemory, useMemory, write, writeField, writeField, writeField
public int dwSize
public int dwError
public char[] szIpAddress
public char[] szServerIpAddress
public int dwOptions
public int dwServerOptions
public WinRas.RASPPPIP()
public WinRas.RASPPPIP(Pointer memory)
protected java.util.List getFieldOrder()
Structure
protected List getFieldOrder() {
return Arrays.asList(new String[] { ... });
}
IMPORTANT
When deriving from an existing Structure subclass, ensure that
you augment the list provided by the superclass, e.g.
protected List getFieldOrder() {
List fields = new ArrayList(super.getFieldOrder());
fields.addAll(Arrays.asList(new String[] { ... }));
return fields;
}
Field order must be explicitly indicated, since the
field order as returned by Class.getFields()
is not
guaranteed to be predictable.getFieldOrder
in class Structure