Skip to content

Commit

Permalink
OpenSim -> Halcyon
Browse files Browse the repository at this point in the history
  • Loading branch information
kf6kjg committed Apr 9, 2018
1 parent ae3965d commit 8e9f34c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/inworldz/maestro/Region.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def __init__(self, uuid, record={}):
ServiceBase.__init__(self, uuid, record)
self.props = DefaultProperties.instance()
dbconfig = self.props.getCoreDbConfig()
self.exe_name = "OpenSim.exe"
self.exe_name = "Halcyon.exe"
# self.exe_args = "--console rest"
self.exe_args = ""

Expand Down
2 changes: 1 addition & 1 deletion src/inworldz/maestro/System.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def process_list(self):
# if (len(p.cmdline()) <= 0):
# continue
# cmdline = p.cmdline()[0]
# if os.path.basename(cmdline) == "OpenSim.exe":
# if os.path.basename(cmdline) == "Halcyon.exe":
# print cmdline
# print os.path.dirname(cmdline)
# print p.pid
4 changes: 2 additions & 2 deletions src/inworldz/util/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,11 @@ def OpenAllFirewallPorts(

for i in range(maxRegionSlots):
print "Opening UDP port {0} on firewall".format(startingUdpPort + i);
FWOpenPort("OpenSim UDP {0}".format(i), startingUdpPort + i,
FWOpenPort("Halcyon UDP {0}".format(i), startingUdpPort + i,
NET_FW_IP_PROTOCOL_UDP, NET_FW_SCOPE_ALL, NET_FW_IP_VERSION_ANY)

print "Opening TCP port {0} on firewall".format(startingHttpPort + i)
FWOpenPort("OpenSim TCP {0}".format(i), startingHttpPort + i,
FWOpenPort("Halcyon TCP {0}".format(i), startingHttpPort + i,
NET_FW_IP_PROTOCOL_TCP, NET_FW_SCOPE_ALL, NET_FW_IP_VERSION_ANY)

FWOpenSubnet("Backend Subnet", backendSubnet);
Expand Down
2 changes: 1 addition & 1 deletion src/inworldz/util/provision.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def _findRegionProcess(slotnum):
continue
cmdline = p.cmdline()[0]
if ((os.path.dirname(cmdline) == bindir) and
(os.path.basename(cmdline) == "OpenSim.exe")):
(os.path.basename(cmdline) == "Halcyon.exe")):
return (p)
return None

Expand Down

0 comments on commit 8e9f34c

Please sign in to comment.