You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
302 B
14 lines
302 B
package com.zerotier.libzt; |
|
|
|
public class ZeroTierSocketOptionValue |
|
{ |
|
public boolean isBoolean = false; |
|
public boolean booleanValue; |
|
|
|
public boolean isInteger = false; |
|
public int integerValue; |
|
|
|
public boolean isTimeval = false; |
|
public int tv_sec; // seconds |
|
public int tv_usec; // microseconds |
|
} |