volume_id: Adopt to new kbuild style.
[oweals/busybox.git] / networking / isrv.h
index 780636d1770a2d9fd0dd2407be84803f2e8d2471..4c7e01dd1f9e0b4d68fe2d9e77f00b2ccdee35b3 100644 (file)
@@ -1,3 +1,15 @@
+/* vi: set sw=4 ts=4: */
+/*
+ * Generic non-forking server infrastructure.
+ * Intended to make writing telnetd-type servers easier.
+ *
+ * Copyright (C) 2007 Denys Vlasenko
+ *
+ * Licensed under GPLv2, see file LICENSE in this source tree.
+ */
+
+PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
+
 /* opaque structure */
 struct isrv_state_t;
 typedef struct isrv_state_t isrv_state_t;
@@ -21,3 +33,5 @@ void isrv_run(
        int timeout,
        int linger_timeout
 );
+
+POP_SAVED_FUNCTION_VISIBILITY