summaryrefslogtreecommitdiff
path: root/source4/dns_server/dns_server.h
diff options
context:
space:
mode:
authorKai Blin <kai@samba.org>2010-10-12 06:23:32 +0200
committerKai Blin <kai@samba.org>2010-10-23 10:17:05 +0000
commit96195b2c0c239781c47f51bbf62156a8804f9525 (patch)
treebf2bc8442ccef219c0dcd74da803982fb4032322 /source4/dns_server/dns_server.h
parentcaf4196899d864abe4bb6d3c9da3952f5b5ba8b8 (diff)
downloadsamba-96195b2c0c239781c47f51bbf62156a8804f9525.tar.gz
samba-96195b2c0c239781c47f51bbf62156a8804f9525.tar.bz2
samba-96195b2c0c239781c47f51bbf62156a8804f9525.zip
s4 dns: Add a boilerplate DNS server implementation
Diffstat (limited to 'source4/dns_server/dns_server.h')
-rw-r--r--source4/dns_server/dns_server.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/source4/dns_server/dns_server.h b/source4/dns_server/dns_server.h
new file mode 100644
index 0000000000..ca12c5cd8e
--- /dev/null
+++ b/source4/dns_server/dns_server.h
@@ -0,0 +1,33 @@
+/*
+ Unix SMB/CIFS implementation.
+
+ DNS structures
+
+ Copyright (C) 2010 Kai Blin <kai@samba.org>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#ifndef __DNS_SERVER_H__
+#define __DNS_SERVER_H__
+
+#include "librpc/gen_ndr/dns.h"
+
+struct tsocket_address;
+
+struct dns_server {
+ struct task_server *task;
+};
+
+#endif /* __DNS_SERVER_H__ */