Browse Source

iwyu: management.c

pull/1119/head
Hamish Coleman 1 year ago
parent
commit
06c2e012d7
  1. 18
      src/management.c

18
src/management.c

@ -3,22 +3,24 @@
* *
*/ */
#include <stdio.h>
#ifndef WIN32
#include <sys/socket.h>
#include <netdb.h>
#endif
#include <pearson.h> // for pearson_hash_64 #include <pearson.h> // for pearson_hash_64
#include <stdio.h> // for snprintf, NULL, size_t
#include <stdlib.h> // for strtoul
#include <string.h> // for strtok, strlen, strncpy
#include "management.h"
#include "n2n.h" // for TRACE_DEBUG, traceEvent #include "n2n.h" // for TRACE_DEBUG, traceEvent
#ifndef WIN32
#include <netdb.h> // for getnameinfo, NI_NUMERICHOST, NI_NUMERICSERV
#include <sys/socket.h> // for sendto, sockaddr
#endif
// TODO: move logging defs in their own header and include that // TODO: move logging defs in their own header and include that
void setTraceLevel (int level); void setTraceLevel (int level);
int getTraceLevel (); int getTraceLevel ();
#include <pearson.h>
#include "management.h"
ssize_t send_reply (mgmt_req_t *req, strbuf_t *buf, size_t msg_len) { ssize_t send_reply (mgmt_req_t *req, strbuf_t *buf, size_t msg_len) {
// TODO: better error handling (counters?) // TODO: better error handling (counters?)
return sendto(req->mgmt_sock, buf->str, msg_len, 0, return sendto(req->mgmt_sock, buf->str, msg_len, 0,

Loading…
Cancel
Save