summaryrefslogtreecommitdiff
path: root/indra/llmessage/machine.h
diff options
context:
space:
mode:
Diffstat (limited to 'indra/llmessage/machine.h')
-rw-r--r--indra/llmessage/machine.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llmessage/machine.h b/indra/llmessage/machine.h
index b5efe717d8..55e3aa0b3c 100644
--- a/indra/llmessage/machine.h
+++ b/indra/llmessage/machine.h
@@ -42,8 +42,8 @@ public:
// get functions
EMachineType getMachineType() const { return mMachineType; }
- const U32 getMachineIP() const { return mHost.getAddress(); }
- const S32 getMachinePort() const { return mHost.getPort(); }
+ U32 getMachineIP() const { return mHost.getAddress(); }
+ S32 getMachinePort() const { return mHost.getPort(); }
const LLHost &getMachineHost() const { return mHost; }
// The control port is the listen port of the parent process that
// launched this machine. 0 means none or not known.