Browse Source

[3414] Renamed socket creator to kea-socketcreator.

Marcin Siodelski 11 years ago
parent
commit
29c4411925

+ 2 - 2
doc/guide/intro.xml

@@ -139,7 +139,7 @@
 	a master process, <command>b10-init</command>, which will
 	start other required processes and other processes when
 	configured.  The processes that may be started have names
-	starting with "b10-", including:
+	starting with "kea-", including:
       </para>
 
       <para>
@@ -199,7 +199,7 @@
 
           <listitem>
             <simpara>
-              <command>b10-sockcreator</command> &mdash;
+              <command>kea-sockcreator</command> &mdash;
               Socket creator daemon.
               This process creates sockets used by
               network-listening BIND 10 processes.

+ 2 - 2
src/bin/sockcreator/.gitignore

@@ -1,2 +1,2 @@
-/b10-sockcreator
-/b10-sockcreator.8
+/kea-sockcreator
+/kea-sockcreator.8

+ 9 - 9
src/bin/sockcreator/Makefile.am

@@ -12,25 +12,25 @@ pkglibexecdir = $(libexecdir)/@PACKAGE@
 
 CLEANFILES = *.gcno *.gcda
 
-man_MANS = b10-sockcreator.8
+man_MANS = kea-sockcreator.8
 DISTCLEANFILES = $(man_MANS)
-EXTRA_DIST = $(man_MANS) b10-sockcreator.xml
+EXTRA_DIST = $(man_MANS) kea-sockcreator.xml
 
 if GENERATE_DOCS
 
-b10-sockcreator.8: b10-sockcreator.xml
-	@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-sockcreator.xml
+kea-sockcreator.8: kea-sockcreator.xml
+	@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/kea-sockcreator.xml
 
 else
 
 $(man_MANS):
 	@echo Man generation disabled.  Creating dummy $@.  Configure with --enable-generate-docs to enable it.
-	@echo Man generation disabled.  Remove this file, configure with --enable-generate-docs, and rebuild BIND 10 > $@
+	@echo Man generation disabled.  Remove this file, configure with --enable-generate-docs, and rebuild Kea > $@
 
 endif
 
-pkglibexec_PROGRAMS = b10-sockcreator
+pkglibexec_PROGRAMS = kea-sockcreator
 
-b10_sockcreator_SOURCES = sockcreator.cc sockcreator.h main.cc
-b10_sockcreator_LDADD  = $(top_builddir)/src/lib/util/io/libkea-util-io.la
-b10_sockcreator_LDADD += $(top_builddir)/src/lib/exceptions/libkea-exceptions.la
+kea_sockcreator_SOURCES = sockcreator.cc sockcreator.h main.cc
+kea_sockcreator_LDADD  = $(top_builddir)/src/lib/util/io/libkea-util-io.la
+kea_sockcreator_LDADD += $(top_builddir)/src/lib/exceptions/libkea-exceptions.la

+ 16 - 21
src/bin/sockcreator/b10-sockcreator.xml

@@ -2,7 +2,7 @@
                "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"
 	       [<!ENTITY mdash "&#8212;">]>
 <!--
- - Copyright (C) 2012  Internet Systems Consortium, Inc. ("ISC")
+ - Copyright (C) 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
  -
  - Permission to use, copy, modify, and/or distribute this software for any
  - purpose with or without fee is hereby granted, provided that the above
@@ -20,48 +20,44 @@
 <refentry>
 
   <refentryinfo>
-    <date>February 28, 2012</date>
+    <date>July 1, 2014</date>
   </refentryinfo>
 
   <refmeta>
-    <refentrytitle>b10-sockcreator</refentrytitle>
+    <refentrytitle>kea-sockcreator</refentrytitle>
     <manvolnum>8</manvolnum>
-    <refmiscinfo>BIND10</refmiscinfo>
+    <refmiscinfo>Kea</refmiscinfo>
   </refmeta>
 
   <refnamediv>
-    <refname>b10-sockcreator</refname>
+    <refname>kea-sockcreator</refname>
     <refpurpose>socket creation daemon</refpurpose>
   </refnamediv>
 
   <docinfo>
     <copyright>
-      <year>2012</year>
+      <year>2014</year>
       <holder>Internet Systems Consortium, Inc. ("ISC")</holder>
     </copyright>
   </docinfo>
 
   <refsynopsisdiv>
     <cmdsynopsis>
-      <command>b10-sockcreator</command>
+      <command>kea-sockcreator</command>
     </cmdsynopsis>
   </refsynopsisdiv>
 
   <refsect1>
     <title>DESCRIPTION</title>
     <para>
-      The <command>b10-sockcreator</command> daemon's entire job
+      The <command>kea-sockcreator</command> daemon's entire job
       is to create sockets and assign names to them.
-      It is started by
-      <citerefentry><refentrytitle>b10-init</refentrytitle><manvolnum>8</manvolnum></citerefentry>
-      and communicates with it.
-      The new socket is sent over a file descriptor.
     </para>
 
 <!-- TODO: integrate README here -->
 
     <para>
-      The <command>b10-sockcreator</command> daemon will exit
+      The <command>kea-sockcreator</command> daemon will exit
       if there is an unrecoverable error or unknown command.
     </para>
 
@@ -70,23 +66,22 @@
   <refsect1>
     <title>SEE ALSO</title>
     <para>
-      <citerefentry>
-        <refentrytitle>b10-init</refentrytitle><manvolnum>8</manvolnum>
-      </citerefentry>,
-      <citerefentry>
-        <refentrytitle>bind10</refentrytitle><manvolnum>8</manvolnum>
-      </citerefentry>,
-      <citetitle>BIND 10 Guide</citetitle>.
+      <citetitle>Kea Guide</citetitle>.
     </para>
 <!-- TODO: point to developer docs -->
   </refsect1>
 
   <refsect1>
-    <title>AUTHORS</title>
+    <title>HISTORY</title>
     <para>
       The <command>b10-sockcreator</command> daemon
       was initially designed by Michal Vaner of CZNIC.
     </para>
+    <para>
+      Kea became a standalone server and the BIND10 framework was
+      removed. The socket creator server binary was renamed to
+      kea-sockcreator in July 2014.
+    </para>
   </refsect1>
 
 </refentry><!--