Skip to content

Commit

Permalink
Nuget packet generation
Browse files Browse the repository at this point in the history
  • Loading branch information
EvilLord666 committed Mar 27, 2017
1 parent 6f6deb3 commit b772915
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ private void WriteAsyncCallback(IAsyncResult result)

private void CreateSocket()
{
_clientSocket = new Socket(DeviceAddressFamily, DeviceSocketType, DeviceProtocolType);
_clientSocket = new Socket(AddressFamily, SocketType, ProtocolType);
_clientSocket.SendTimeout = _writeTimeout;
_clientSocket.ReceiveTimeout = _readTimeout;
_clientSocket.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.KeepAlive, true);
Expand All @@ -266,9 +266,9 @@ private void CreateSocket()
private const Int32 DefaultMaximumConnectionWaitTimeout = 4000;
private const Int32 DefaultMaximumReadTimeout = 2000;
private const Int32 DefaultMaximumWriteTimeout = 2000;
private const AddressFamily DeviceAddressFamily = AddressFamily.InterNetwork;
private const SocketType DeviceSocketType = SocketType.Stream;
private const ProtocolType DeviceProtocolType = ProtocolType.Tcp;
private const AddressFamily AddressFamily = System.Net.Sockets.AddressFamily.InterNetwork;
private const SocketType SocketType = System.Net.Sockets.SocketType.Stream;
private const ProtocolType ProtocolType = System.Net.Sockets.ProtocolType.Tcp;
private readonly Guid _id;
private Socket _clientSocket;
private readonly EndPoint _endPoint;
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]
[assembly: AssemblyVersion("1.0.1.0")]
[assembly: AssemblyFileVersion("1.0.1.0")]

0 comments on commit b772915

Please sign in to comment.