⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 version.c

📁 radius服务器
💻 C
字号:
/* * version.c	Print version number and exit. * * Version:	$Id: version.c,v 1.13 2003/09/24 14:03:09 aland Exp $ * *   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 2 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, write to the Free Software *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA * * Copyright 2000  The FreeRADIUS server project * Copyright 2000  Alan DeKok <aland@ox.org> * Copyright 2000  Chris Parker <cparker@starnetusa.com> */static const char rcsid[] = "$Id: version.c,v 1.13 2003/09/24 14:03:09 aland Exp $";#include "autoconf.h"#include <stdio.h>#include <stdlib.h>#include "radiusd.h"/* *	Display the revision number for this program */void version(void){	printf("%s: %s\n", progname, radiusd_version);#if 0	printf("Compilation flags: ");	/* here are all the conditional feature flags */#if defined(OSFC2)	printf(" OSFC2");#endif#if defined(WITH_SNMP)	printf(" WITH_SNMP");#endif	printf("\n");#endif	printf("Copyright (C) 2000-2003 The FreeRADIUS server project.\n");	printf("There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n");	printf("PARTICULAR PURPOSE.\n");	printf("You may redistribute copies of FreeRADIUS under the terms of the\n");	printf("GNU General Public License.\n");	printf("For more information about these matters, see the file named COPYRIGHT.\n");	exit (0);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -