Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion src/edu/umass/cs/gnsclient/client/GNSClientConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,20 @@ public static enum GNSCC implements Config.ConfigurableEnum {
/**
* The port used by the local name server.
*/
LOCAL_NAME_SERVER_PORT(24398);
LOCAL_NAME_SERVER_PORT(24398),

//HTTP Proxy Settings
/**
* The port that GNSHttpProxy listens for incoming commands on.
*/
HTTP_PROXY_PORT(8090),

/**
* The hostname that GNSHttpProxy will allow incoming commands from.
* By default this is localhost so it will only allow commands from the local machine.
* If set to 0.0.0.0 it will allow commands from any source host.
*/
HTTP_PROXY_INCOMING_HOSTNAME("localhost");

final Object defaultValue;

Expand Down
Loading