Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / SystemNet / Net / PeerToPeer / SystemNetHelpers.cs / 1 / SystemNetHelpers.cs
namespace System.Net.PeerToPeer { using System; using System.Net; using System.Net.Sockets; using System.Collections.Generic; using System.Text; using System.Security.Permissions; internal static class SystemNetHelpers { internal const int IPv6AddressSize = 28; internal const int IPv4AddressSize = 16; internal static byte[] SOCKADDRFromIPEndPoint(IPEndPoint ipEndPoint) { byte[] buffer = new byte[ipEndPoint.AddressFamily == AddressFamily.InterNetworkV6 ? IPv6AddressSize : IPv4AddressSize]; #if BIGENDIAN buffer[0] = unchecked((byte)((int)family>>8)); buffer[1] = unchecked((byte)((int)family )); #else buffer[0] = unchecked((byte)((int)ipEndPoint.AddressFamily)); buffer[1] = unchecked((byte)((int)ipEndPoint.AddressFamily >> 8)); #endif if (ipEndPoint.AddressFamily == AddressFamily.InterNetworkV6) { buffer[2] = (byte)(ipEndPoint.Port >> 8); buffer[3] = (byte)ipEndPoint.Port; buffer[4] = (byte)0; buffer[5] = (byte)0; buffer[6] = (byte)0; buffer[7] = (byte)0; long scope = ipEndPoint.Address.ScopeId; buffer[24] = (byte)scope; buffer[25] = (byte)(scope >> 8); buffer[26] = (byte)(scope >> 16); buffer[27] = (byte)(scope >> 24); byte[] addressBytes = ipEndPoint.Address.GetAddressBytes(); for (int i = 0; i < addressBytes.Length; i++) { buffer[8 + i] = addressBytes[i]; } } else { buffer[2] = unchecked((byte)(ipEndPoint.Port >> 8)); buffer[3] = unchecked((byte)(ipEndPoint.Port)); byte[] addressBytes = ipEndPoint.Address.GetAddressBytes(); for (int i = 0; i < addressBytes.Length; i++) { buffer[4 + i] = addressBytes[i]; } } return buffer; } internal static IPEndPoint IPEndPointFromSOCKADDRBuffer(byte[] buffer) { IPAddress ip = null; int addressFamily = 0; #if BIGENDIAN addressFamily = buffer[1] + ((int)buffer[0] << 8); #else addressFamily = buffer[0] + ((int)buffer[1] << 8); #endif //Get port int port = buffer[3] + ((int)buffer[2] << 8); if ((AddressFamily)addressFamily == AddressFamily.InterNetwork) { byte[] v4bytes = new byte[] { buffer[4], buffer[5], buffer[6], buffer[7] }; ip = new IPAddress(v4bytes); } else if ((AddressFamily)addressFamily == AddressFamily.InterNetworkV6) { byte[] v6Bytes = new byte[16]; for (int i = 0; i < 16; i++) v6Bytes[i] = buffer[8 + i]; long scope = ((long)(long)buffer[24] + ((long)buffer[25] << 8) + ((long)buffer[26] << 16) + ((long)buffer[27] << 24)); ip = new IPAddress(v6Bytes); ip.ScopeId = scope; } return new IPEndPoint(ip, port); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. namespace System.Net.PeerToPeer { using System; using System.Net; using System.Net.Sockets; using System.Collections.Generic; using System.Text; using System.Security.Permissions; internal static class SystemNetHelpers { internal const int IPv6AddressSize = 28; internal const int IPv4AddressSize = 16; internal static byte[] SOCKADDRFromIPEndPoint(IPEndPoint ipEndPoint) { byte[] buffer = new byte[ipEndPoint.AddressFamily == AddressFamily.InterNetworkV6 ? IPv6AddressSize : IPv4AddressSize]; #if BIGENDIAN buffer[0] = unchecked((byte)((int)family>>8)); buffer[1] = unchecked((byte)((int)family )); #else buffer[0] = unchecked((byte)((int)ipEndPoint.AddressFamily)); buffer[1] = unchecked((byte)((int)ipEndPoint.AddressFamily >> 8)); #endif if (ipEndPoint.AddressFamily == AddressFamily.InterNetworkV6) { buffer[2] = (byte)(ipEndPoint.Port >> 8); buffer[3] = (byte)ipEndPoint.Port; buffer[4] = (byte)0; buffer[5] = (byte)0; buffer[6] = (byte)0; buffer[7] = (byte)0; long scope = ipEndPoint.Address.ScopeId; buffer[24] = (byte)scope; buffer[25] = (byte)(scope >> 8); buffer[26] = (byte)(scope >> 16); buffer[27] = (byte)(scope >> 24); byte[] addressBytes = ipEndPoint.Address.GetAddressBytes(); for (int i = 0; i < addressBytes.Length; i++) { buffer[8 + i] = addressBytes[i]; } } else { buffer[2] = unchecked((byte)(ipEndPoint.Port >> 8)); buffer[3] = unchecked((byte)(ipEndPoint.Port)); byte[] addressBytes = ipEndPoint.Address.GetAddressBytes(); for (int i = 0; i < addressBytes.Length; i++) { buffer[4 + i] = addressBytes[i]; } } return buffer; } internal static IPEndPoint IPEndPointFromSOCKADDRBuffer(byte[] buffer) { IPAddress ip = null; int addressFamily = 0; #if BIGENDIAN addressFamily = buffer[1] + ((int)buffer[0] << 8); #else addressFamily = buffer[0] + ((int)buffer[1] << 8); #endif //Get port int port = buffer[3] + ((int)buffer[2] << 8); if ((AddressFamily)addressFamily == AddressFamily.InterNetwork) { byte[] v4bytes = new byte[] { buffer[4], buffer[5], buffer[6], buffer[7] }; ip = new IPAddress(v4bytes); } else if ((AddressFamily)addressFamily == AddressFamily.InterNetworkV6) { byte[] v6Bytes = new byte[16]; for (int i = 0; i < 16; i++) v6Bytes[i] = buffer[8 + i]; long scope = ((long)(long)buffer[24] + ((long)buffer[25] << 8) + ((long)buffer[26] << 16) + ((long)buffer[27] << 24)); ip = new IPAddress(v6Bytes); ip.ScopeId = scope; } return new IPEndPoint(ip, port); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Token.cs
- TypeConverter.cs
- TagMapInfo.cs
- EmptyControlCollection.cs
- TextServicesCompartmentContext.cs
- Underline.cs
- DispatchWrapper.cs
- FixedBufferAttribute.cs
- BuilderPropertyEntry.cs
- MultiSelectRootGridEntry.cs
- ReachNamespaceInfo.cs
- ListMarkerLine.cs
- ProvideValueServiceProvider.cs
- Encoder.cs
- unsafeIndexingFilterStream.cs
- WebPartDescription.cs
- TextTreeRootNode.cs
- cryptoapiTransform.cs
- UnsupportedPolicyOptionsException.cs
- RegistrationServices.cs
- ThreadStartException.cs
- ContentDisposition.cs
- SamlConstants.cs
- DataSetFieldSchema.cs
- DuplicateWaitObjectException.cs
- BamlResourceSerializer.cs
- RawStylusSystemGestureInputReport.cs
- CodeTypeMemberCollection.cs
- GeometryHitTestParameters.cs
- EntityDataSourceState.cs
- CalendarDayButton.cs
- UnitControl.cs
- DecimalSumAggregationOperator.cs
- SqlConnectionManager.cs
- HttpCacheParams.cs
- DCSafeHandle.cs
- PublisherIdentityPermission.cs
- ServiceContractGenerator.cs
- CorrelationKey.cs
- SoundPlayer.cs
- TextRange.cs
- HttpHandler.cs
- HttpsHostedTransportConfiguration.cs
- DocumentViewerAutomationPeer.cs
- ContextMenuStripGroup.cs
- RuleConditionDialog.Designer.cs
- WebPartsPersonalization.cs
- Label.cs
- ParserStreamGeometryContext.cs
- JsonStringDataContract.cs
- ConfigXmlText.cs
- CopyOnWriteList.cs
- SeverityFilter.cs
- AllMembershipCondition.cs
- DataGridViewColumnCollection.cs
- DocumentXmlWriter.cs
- CodeEntryPointMethod.cs
- DirectoryGroupQuery.cs
- ProfilePropertyNameValidator.cs
- TextSimpleMarkerProperties.cs
- TdsParserStateObject.cs
- RenderCapability.cs
- ParallelDesigner.xaml.cs
- RuntimeConfig.cs
- SpecialNameAttribute.cs
- SHA384CryptoServiceProvider.cs
- CredentialCache.cs
- TreePrinter.cs
- InternalControlCollection.cs
- HyperLink.cs
- LogicalExpr.cs
- TimelineCollection.cs
- PathFigureCollectionConverter.cs
- RegexMatch.cs
- XmlSerializerSection.cs
- AppDomainUnloadedException.cs
- DetailsViewRowCollection.cs
- TextRange.cs
- ActiveXSite.cs
- DefaultValueTypeConverter.cs
- WebPartDisplayModeCollection.cs
- TranslateTransform.cs
- CatalogPart.cs
- XmlSchemaNotation.cs
- BoolExpr.cs
- Operand.cs
- HostedTransportConfigurationManager.cs
- MetaTable.cs
- XmlILModule.cs
- TypeElement.cs
- ChangeBlockUndoRecord.cs
- CurrentChangingEventManager.cs
- MetadataStore.cs
- PopupControlService.cs
- DataObjectEventArgs.cs
- AlignmentXValidation.cs
- InstanceNameConverter.cs
- RelatedCurrencyManager.cs
- XPathDocument.cs
- FormViewDeleteEventArgs.cs