Skip to content
Snippets Groups Projects
Commit e5057b47 authored by Josh Bell's avatar Josh Bell
Browse files

svn merge -r 73201:74169...

parent 78aec043
No related branches found
No related tags found
No related merge requests found
...@@ -255,7 +255,7 @@ ...@@ -255,7 +255,7 @@
<key>CoarseLocationUpdate</key> <key>CoarseLocationUpdate</key>
<map> <map>
<key>flavor</key> <key>flavor</key>
<string>llsd</string> <string>template</string>
<key>trusted-sender</key> <key>trusted-sender</key>
<boolean>true</boolean> <boolean>true</boolean>
</map> </map>
......
...@@ -277,7 +277,11 @@ def _ifconfig_getnode(): ...@@ -277,7 +277,11 @@ def _ifconfig_getnode():
import os import os
for dir in ['', '/sbin/', '/usr/sbin']: for dir in ['', '/sbin/', '/usr/sbin']:
try: try:
pipe = os.popen(os.path.join(dir, 'ifconfig')) path = os.path.join(dir, 'ifconfig')
if os.path.exists(path):
pipe = os.popen(path)
else:
continue
except IOError: except IOError:
continue continue
for line in pipe: for line in pipe:
......
...@@ -3038,7 +3038,7 @@ version 2.0 ...@@ -3038,7 +3038,7 @@ version 2.0
// and where someone you are tracking is located. They are -1 if not // and where someone you are tracking is located. They are -1 if not
// applicable. // applicable.
{ {
CoarseLocationUpdate Medium 6 Trusted Unencoded UDPDeprecated CoarseLocationUpdate Medium 6 Trusted Unencoded
{ {
Location Variable Location Variable
{ X U8 } { X U8 }
...@@ -3050,6 +3050,10 @@ version 2.0 ...@@ -3050,6 +3050,10 @@ version 2.0
{ You S16 } { You S16 }
{ Prey S16 } { Prey S16 }
} }
{
AgentData Variable
{ AgentID LLUUID }
}
} }
// ImageData - sent to viewer to transmit information about an image // ImageData - sent to viewer to transmit information about an image
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment