Displaying 2 results from an estimated 2 matches for "sslfd".
Did you mean:
sshfd
2001 Mar 07
0
Anyone have Large File support working on AIX?
...ion 2.95.2 and the HAVE_EXPLICIT_LARGEFILE_SUPPORT is turned on. Anyone
been more successful or have ideas?
----code snippit from lib/util_sock.c------
ssize_t write_data(int fd,char *buffer,size_t N)
{
size_t total=0;
ssize_t ret;
while (total < N)
{
#ifdef WITH_SSL
if(fd == sslFd){
ret = SSL_write(ssl,buffer + total,N - total);
}else{
ret = write(fd,buffer + total,N - total);
}
#else /* WITH_SSL */
ret = write(fd,buffer + total,N - total);
#endif /* WITH_SSL */
if (ret == -1) {
DEBUG(0,("write_data: write failure. Error = %s\n",...
2003 Dec 01
0
No subject
...rce/lib/util.c Mon Jul 16 11:41:06 2001
@@ -52,7 +52,7 @@
#endif /* HAVE_NETGROUP && WITH_AUTOMOUNT */
#ifdef WITH_SSL
-#include <ssl.h>
+#include <openssl/ssl.h>
#undef Realloc /* SSLeay defines this and samba has a function of this name */
extern SSL *ssl;
extern int sslFd;
diff -r -u samba-2.2.1a-vanilla/source/lib/util_sock.c samba-2.2.1a/source/lib/util_sock.c
--- samba-2.2.1a-vanilla/source/lib/util_sock.c Tue Jul 10 10:04:27 2001
+++ samba-2.2.1a/source/lib/util_sock.c Mon Jul 16 11:41:30 2001
@@ -22,7 +22,7 @@
#include "includes.h"
#ifdef WITH_SSL...