blob: e1219d8701613f235f0329638ba944afec255d10 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
--- src/Transports/UnixNativeTransport.cs.orig 2014-06-24 17:10:54 UTC
+++ src/Transports/UnixNativeTransport.cs
@@ -94,10 +94,8 @@ namespace DBus.Transports
byte[] sa = new byte[2 + p.Length + 1];
- //we use BitConverter to stay endian-safe
- byte[] afData = BitConverter.GetBytes (UnixSocket.AF_UNIX);
- sa[0] = afData[0];
- sa[1] = afData[1];
+ sa[0] = (byte) sa.Length;
+ sa[1] = 1; /* AF_UNIX */
for (int i = 0 ; i != p.Length ; i++)
sa[2 + i] = p[i];
@@ -112,10 +110,8 @@ namespace DBus.Transports
byte[] sa = new byte[2 + 1 + p.Length];
- //we use BitConverter to stay endian-safe
- byte[] afData = BitConverter.GetBytes (UnixSocket.AF_UNIX);
- sa[0] = afData[0];
- sa[1] = afData[1];
+ sa[0] = (byte) sa.Length;
+ sa[1] = 1; /* AF_UNIX */
sa[2] = 0; //null prefix for abstract domain socket addresses, see unix(7)
for (int i = 0 ; i != p.Length ; i++)
|