int portToBind = -1;
log.debug("Processing " + requestName + " global request");
try {
ByteArrayReader bar = new ByteArrayReader(requestData);
addressToBind = bar.readString();
portToBind = (int) bar.readInt();
if (requestName.equals(ForwardingClient.REMOTE_FORWARD_REQUEST)) {
addRemoteForwardingConfiguration(addressToBind, portToBind);
response = new GlobalRequestResponse(true);