2021-03-04 16:30:38 +05:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
#include "params.h"
|
|
|
|
|
|
|
|
void hexdump_limited_dlog(const uint8_t *data, size_t size, size_t limit);
|
|
|
|
char *strncasestr(const char *s,const char *find, size_t slen);
|
|
|
|
bool load_file(const char *filename,void *buffer,size_t *buffer_size);
|
|
|
|
bool load_file_nonempty(const char *filename,void *buffer,size_t *buffer_size);
|
2022-03-25 18:59:58 +05:00
|
|
|
bool save_file(const char *filename, const void *buffer, size_t buffer_size);
|
2023-10-26 17:12:32 +05:00
|
|
|
bool append_to_list_file(const char *filename, const char *s);
|
2021-03-04 16:30:38 +05:00
|
|
|
|
|
|
|
void print_sockaddr(const struct sockaddr *sa);
|
2021-03-05 22:15:56 +05:00
|
|
|
void ntop46(const struct sockaddr *sa, char *str, size_t len);
|
|
|
|
void ntop46_port(const struct sockaddr *sa, char *str, size_t len);
|
|
|
|
|
2021-03-04 16:30:38 +05:00
|
|
|
void dbgprint_socket_buffers(int fd);
|
|
|
|
bool set_socket_buffers(int fd, int rcvbuf, int sndbuf);
|
2022-03-25 18:59:58 +05:00
|
|
|
|
|
|
|
uint64_t pntoh64(const void *p);
|
|
|
|
void phton64(uint8_t *p, uint64_t v);
|
2022-05-03 12:20:42 +05:00
|
|
|
|
|
|
|
static inline uint16_t pntoh16(const uint8_t *p) {
|
|
|
|
return ((uint16_t)p[0] << 8) | (uint16_t)p[1];
|
|
|
|
}
|
|
|
|
static inline void phton16(uint8_t *p, uint16_t v) {
|
2022-05-03 14:32:14 +05:00
|
|
|
p[0] = (uint8_t)(v >> 8);
|
|
|
|
p[1] = v & 0xFF;
|
2022-05-03 12:20:42 +05:00
|
|
|
}
|
|
|
|
static inline uint32_t pntoh32(const uint8_t *p) {
|
|
|
|
return ((uint32_t)p[0] << 24) | ((uint32_t)p[1] << 16) | ((uint32_t)p[2] << 8) | (uint32_t)p[3];
|
|
|
|
}
|
2023-09-07 15:41:25 +05:00
|
|
|
|
|
|
|
bool parse_hex_str(const char *s, uint8_t *pbuf, size_t *size);
|
|
|
|
void fill_pattern(uint8_t *buf,size_t bufsize,const void *pattern,size_t patsize);
|