Skip to content
Snippets Groups Projects
Commit befa086c authored by dnsadmin's avatar dnsadmin
Browse files

Include-ok egységesítése (#17)

parent 81ed50fd
Branches
No related tags found
No related merge requests found
......@@ -11,6 +11,7 @@
#include <stdint.h>
#include <stdlib.h>
#include <arpa/inet.h>
#include "dns_question.h"
#include "general_sockaddr_wp.h"
......
......@@ -9,7 +9,6 @@
#define GENERAL_SOCKADDR_WP_H
#include <sys/socket.h>
#include <stdlib.h>
/**
......
......@@ -11,7 +11,6 @@
#include <errno.h>
#include <sys/types.h>
#include <pwd.h>
#include <signal.h>
#include <linux/limits.h>
#include "include/general_sockaddr_wp.h"
......
#include <string.h>
#include "../include/dns_answer.h"
#include "../include/dns_types.h"
#include "../include/exceptions/server_error.h"
#include <string.h>
dns_answer::dns_answer(const dns_answer& other) : dns_question(other), ttl(other.ttl), rd_length(other.rd_length) {
rdata = new char[get_rd_length()];
......
/*
* File: sqlite3_wrapper.cpp
* Author: Eckl Máté <ecklm94@gmail.com>
*
* Created on 2016. május 17., 19:33
*/
#include "../include/dns_db.h"
#include "../include/dns_types.h"
#include "../include/exceptions/db_exception.h"
......
/*
* File: dns_server.cpp
* Author: Eckl Máté <ecklm94@gmail.com>
*
* Created on 2016. május 21., 18:47
*/
#include <pthread.h>
#include "../include/dns_server.h"
......
#include "../include/logger.h"
#include <stdarg.h>
#include <stdio.h>
#include <stdio.h>
#include "../include/logger.h"
LOGGER_FUNCTION_HEADER(syslog_on_demand) {
va_list args;
va_start(args, __fmt);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment