| 31 |
|
#include <stdarg.h> |
| 32 |
|
#include <errno.h> |
| 33 |
|
#include <netdb.h> |
| 34 |
+ |
#include <netinet/in.h> |
| 35 |
|
|
| 36 |
< |
#include "ukcprog.h" |
| 37 |
< |
#include "statgrab.h" |
| 36 |
> |
#include <ukcprog.h> |
| 37 |
> |
#include <statgrab.h> |
| 38 |
|
|
| 39 |
|
#define LOG_CRIT 0 |
| 40 |
|
#define LOG_ERR 1 |
| 164 |
|
}else{ |
| 165 |
|
fprintf(ihost_config.log, "\n"); |
| 166 |
|
} |
| 167 |
+ |
fflush(ihost_config.log); |
| 168 |
|
} |
| 169 |
|
} |
| 170 |
|
|
| 224 |
|
|
| 225 |
|
if((get_host_addr(hostname, &haddr))!=0){ |
| 226 |
|
log_msg(LOG_CRIT, "Failed to lookup name for %s", hostname); |
| 227 |
+ |
close(sock); |
| 228 |
|
return NULL; |
| 229 |
|
} |
| 230 |
|
|
| 236 |
|
log_msg(LOG_DEBUG, "Creating a tcp connection"); |
| 237 |
|
if(connect(sock, (struct sockaddr *)&addr, sizeof(addr)) !=0){ |
| 238 |
|
log_msg(LOG_CRIT, "Failed to connect to hostname %s on port %d", hostname, port); |
| 239 |
+ |
close(sock); |
| 240 |
|
return NULL; |
| 241 |
|
} |
| 242 |
|
|
| 297 |
|
time_t config_ttl=0; |
| 298 |
|
|
| 299 |
|
if((tcp_con=create_tcp_connection(ihost_state->filtermanager_host, ihost_state->filtermanager_port))==NULL){ |
| 300 |
< |
goto error; |
| 300 |
> |
return -1; |
| 301 |
|
} |
| 302 |
|
|
| 303 |
|
if(ihost_state->file_list!=NULL || ihost_state->last_modified!=NULL){ |
| 582 |
|
y=page_stats->pages_pageout; |
| 583 |
|
} |
| 584 |
|
snprintf(tmp, size, \ |
| 585 |
< |
"<pages><swapins>%lld</swapins><swapouts>%lld</swapouts></pages>", \ |
| 585 |
> |
"<pages><pageins>%lld</pageins><pageouts>%lld</pageouts></pages>", \ |
| 586 |
|
x, \ |
| 587 |
|
y); |
| 588 |
|
|