Displaying 4 results from an estimated 4 matches for "charaterist".
Did you mean:
characterist
2006 Sep 13
4
[Bug 1226] sftp-server does not respect rlogin = false
http://bugzilla.mindrot.org/show_bug.cgi?id=1226
Summary: sftp-server does not respect rlogin = false
Product: Portable OpenSSH
Version: 4.3p2
Platform: PPC
OS/Version: AIX
Status: NEW
Severity: normal
Priority: P2
Component: sftp-server
AssignedTo: bitbucket at mindrot.org
ReportedBy: cris
2003 Jun 02
3
how-to configure openssh
Hi,
Would you able to advise me to configure openssh running on Redhat linux ver7? Thanks.
Best Regards
_______________________
Joseph Keow
2004 Feb 24
4
Unix password sync
Hi all,
Sorry if this has been answered before, but I've searched Google and the
archives and it hasn't revealed an answer to my problem.
Basically I'm trying to get unix password sync to work so that users can
change both their logon and other services (POP3 etc) passwords from
within Windows. but the problem is that if I enable unix password sync,
it fails with the error of:
2012 Mar 15
3
[LLVMdev] Using JIT code to code a program to call C++
My project has a C++ library that I want to allow the user to use via some programming language to be JIT'd to call functions in said library. For the sake of simplicity, assume the library has classes like:
class item {
public:
item();
item( int );
~item();
// ...
};
class item_iterator {
public:
virtual ~item_iterator();
virtual bool next( item *result ) = 0;
};