Skip to content

Commit

Permalink
remove pretty much broken tls for the moment
Browse files Browse the repository at this point in the history
  • Loading branch information
myeisha committed Jul 19, 2011
1 parent 319c3b9 commit bb36d31
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 231 deletions.
2 changes: 1 addition & 1 deletion src/Manos.IO/Manos.IO.Libev/Context.cs
Expand Up @@ -99,7 +99,7 @@ public override Socket CreateSocket ()

public override Socket CreateSecureSocket (string certFile, string keyFile)
{
return new SecureSocket (this, certFile, keyFile);
throw new NotSupportedException ();
}

public override IByteStream OpenFile (string fileName, FileAccess openMode, int blockSize)
Expand Down
227 changes: 0 additions & 227 deletions src/Manos.IO/Manos.IO.Libev/SecureSocket.cs

This file was deleted.

1 change: 0 additions & 1 deletion src/Manos.IO/Manos.IO.csproj
Expand Up @@ -78,7 +78,6 @@
<Compile Include="Manos.IO.Libev\SocketInfo.cs" />
<Compile Include="Manos.IO.Libev\EventedStream.cs" />
<Compile Include="Manos.IO.Libev\SendFileOperation.cs" />
<Compile Include="Manos.IO.Libev\SecureSocket.cs" />
<Compile Include="Manos.IO.Libev\FileStream.cs" />
<Compile Include="Manos.IO.Managed\Context.cs" />
<Compile Include="Manos.IO.Managed\Watcher.cs" />
Expand Down
2 changes: 1 addition & 1 deletion src/libmanos/manos.h
Expand Up @@ -80,7 +80,7 @@ int manos_socket_close (int fd, int *err);



#ifdef HAVE_LIBGNUTLS
#ifdef false && HAVE_LIBGNUTLS

struct manos_tls_socket {
gnutls_certificate_credentials_t credentials;
Expand Down
2 changes: 1 addition & 1 deletion src/libmanos/manos_tls.c
@@ -1,6 +1,6 @@
#include "config.h"

#ifdef HAVE_LIBGNUTLS
#ifdef false && HAVE_LIBGNUTLS


#include <stdlib.h>
Expand Down

0 comments on commit bb36d31

Please sign in to comment.