代码拉取完成,页面将自动刷新
#ifndef UTILS_H
#define UTILS_H
#include "config.h"
#include <errno.h>
#include <stdio.h>
#include <stdint.h>
#include <unistd.h>
#include <sys/types.h>
// sigh.. why is this not defined in some standard place
#ifndef MIN
#define MIN(x,y) ((x)<(y)?(x):(y))
#endif
#ifndef MAX
#define MAX(x,y) ((x)>(y)?(x):(y))
#endif
#ifndef BUFLEN
#define BUFLEN 4096
#endif
#define malloc_and_check(x) _realloc_and_check(NULL,(x),__FILE__,__LINE__);
#define realloc_and_check(ptr,x) _realloc_and_check((ptr),(x),__FILE__,__LINE__);
void * _realloc_and_check(void * ptr,size_t bytes, char * file, int lineno);
void perror_and_exit(char * str, int exit_code);
void add_time(struct timeval *now, time_t secs, suseconds_t usecs);
void set_timeval(struct timeval *target, struct timeval *val);
extern inline int time_diff(struct timeval *now, struct timeval *then);
void* xmalloc(size_t len);
void fail(const char *msg);
/**
* Endiannes change for 64 bit numbers.
*/
uint64_t ntohll(uint64_t val);
uint16_t ip_sum_calc(uint16_t len_ip_header, uint16_t buff[]);
#endif
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。