ping gives us now a reply. But the reply doesnt contains useful data, requires still some investigations

This commit is contained in:
Michael Meer 2014-01-29 15:45:35 +01:00
parent ac8d481a32
commit ef97a454bb

View File

@ -478,24 +478,26 @@ function admin_page_hubloc_post(&$a){
intval($hublocid) intval($hublocid)
); );
$hublocurl = $arrhublocurl[0]['hubloc_url'] . '/post'; $hublocurl = $arrhublocurl[0]['hubloc_url'] . '/post';
logger('ping hubloc_url : ' . $hublocurl , LOGGER_DEBUG);
logger('ping get_channel : ' . print_r($a->get_channel(),true), LOGGER_DEBUG); //perform ping
$m = zot_build_packet($a->get_channel(),'ping'); $m = zot_build_packet($a->get_channel(),'ping');
logger('ping message : ' . print_r($m,true), LOGGER_DEBUG);
$r = zot_zot($hubloc_url,$m); $r = zot_zot($hubloc_url,$m);
logger('ping answer: ' . print_r($r,true), LOGGER_DEBUG); logger('ping answer: ' . print_r($r,true), LOGGER_DEBUG);
} //unfotunatly zping wont work, I guess return format is not correct
//require_once('mod/zping.php');
//$r = zping_content($hublocurl);
//logger('zping answer: ' . $r, LOGGER_DEBUG);
//if ( $_POST'' == "check" ) {
// //todo
//}
//perform ping
//handle results and set the hubloc flags in db to make results visible //handle results and set the hubloc flags in db to make results visible
//in case of repair store new pub key for tested hubloc (all channel with this hubloc) in db //in case of repair store new pub key for tested hubloc (all channel with this hubloc) in db
//after repair set hubloc flags to 0 //after repair set hubloc flags to 0
}
goaway($a->get_baseurl(true) . '/admin/hubloc' ); goaway($a->get_baseurl(true) . '/admin/hubloc' );
return; return;
} }