X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=networking%2Fisrv.h;h=4c7e01dd1f9e0b4d68fe2d9e77f00b2ccdee35b3;hb=3b45801dc6e3484ffb2a86958fce587974842c6b;hp=780636d1770a2d9fd0dd2407be84803f2e8d2471;hpb=fdf7aec5324782969328b6375c3043b46402cae5;p=oweals%2Fbusybox.git diff --git a/networking/isrv.h b/networking/isrv.h index 780636d17..4c7e01dd1 100644 --- a/networking/isrv.h +++ b/networking/isrv.h @@ -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