2 writes to sin6_addr
System.ServiceModel (2)
System\ServiceModel\Channels\PeerUnsafeNativeMethods.cs (2)
137this.sin6_addr = address.GetAddressBytes(); 145this.sin6_addr = new byte[addrByteCount];
12 references to sin6_addr
System.ServiceModel (12)
System\ServiceModel\Channels\PeerUnsafeNativeMethods.cs (12)
147this.sin6_addr[i] = 0; 148this.sin6_addr[v4MapIndex] = 0xff; 149this.sin6_addr[v4MapIndex + 1] = 0xff; 151this.sin6_addr[i] = v4AddressBytes[i - v4Index]; 172if (sin6_addr[v4MapIndex] != 0xff || sin6_addr[v4MapIndex + 1] != 0xff) 176if (sin6_addr[i] != 0) 198this.sin6_addr[v4Index], 199this.sin6_addr[v4Index + 1], 200this.sin6_addr[v4Index + 2], 201this.sin6_addr[v4Index + 3] 207return new IPAddress(this.sin6_addr, this.sin6_scope_id);