FEATURE allow user to configure uid, gid of process and socket file
diff --git a/config.h.in b/config.h.in
new file mode 100644
index 0000000..16c2f77
--- /dev/null
+++ b/config.h.in
@@ -0,0 +1,18 @@
+#ifndef MOD_NETCONF_CONFIG_H
+#define MOD_NETCONF_CONFIG_H
+
+/** username for change of UID of process */
+#define SU_USER "@SU_USER@"
+
+/** groupname for change of UID of process */
+#define SU_GROUP "@SU_GROUP@"
+
+/** username for change of ownership of socket file */
+#define CHOWN_USER "@CHOWN_USER@"
+
+/** groupname for change of ownership of socket file */
+#define CHOWN_GROUP "@CHOWN_GROUP@"
+
+
+#endif
+