Displaying 3 results from an estimated 3 matches for "lhost".
Did you mean:
host
2024 Oct 14
2
[RFC] Preferentially TOFU certificate authorities rather than host keys
...03..462ed8357 100644
--- a/hostfile.c
+++ b/hostfile.c
@@ -437,12 +437,15 @@ static int
write_host_entry(FILE *f, const char *host, const char *ip,
const struct sshkey *key, int store_hash)
{
- int r, success = 0;
+ int r, success = 0, cert = sshkey_is_cert(key);
char *hashed_host = NULL, *lhost;
lhost = xstrdup(host);
lowercase(lhost);
+ if (cert)
+ fprintf(f, "%s ", CA_MARKER);
+
if (store_hash) {
if ((hashed_host = host_hash(lhost, NULL, 0)) == NULL) {
error_f("host_hash failed");
@@ -457,7 +460,9 @@ write_host_entry(FILE *f, const char *host, const...
2012 Oct 05
0
No subject
...:/mseas-data-0-0
Brick2: gluster-0-1:/mseas-data-0-1
Brick3: gluster-data:/data
[root at mseas-data ~]# ps -ef | grep gluster
root 2783 1 0 Nov29 ? 00:01:15 /usr/sbin/glusterd -p /var/=
run/glusterd.pid
root 2899 1 0 Nov29 ? 00:00:00 /usr/sbin/glusterfsd -s loc=
alhost --volfile-id gdata.gluster-data.data -p /var/lib/glusterd/vols/gdata=
/run/gluster-data-data.pid -S /tmp/e3eac7ce95e786a3d909b8fc65ed2059.socket =
--brick-name /data -l /var/log/glusterfs/bricks/data.log --xlator-option *-=
posix.glusterd-uuid=3D22f1102a-08e6-482d-ad23-d8e063cf32ed --brick-port 240...
2009 Sep 19
0
memcached-1.4.1 and C4
...php? I'm trying to use memcached under Centos 4. I can set
values fine but
'get' returns:
[root at rakosnicek eshop]# php d.php
PHP Warning: Memcached::get(): bad type specifier while parsing
parameters in /var/www/d.php on line 6
NULL
string(7) "SUCCESS"
array(1) {
["lhost:11211"]=>
string(5) "1.4.1"
}
The code is:
<?php
$m = new Memcached();
$m->addServer('localhost', 11211);
$m->set('foo', 100);
var_dump($m->get('foo'));
var_dump($m->getResultMessage());
var_dump($m->getVersion());
?>
Memcat return...