-
大小: 50KB文件类型: .gz金币: 1下载: 0 次发布日期: 2021-05-16
- 语言: 其他
- 标签: UltraVNC centos vnc vncrepeater
资源简介
UltraVNC Repeater centos 版本源代码,编译并配置后,可以直接运行,详情参考博文 https://blog.csdn.net/WTUDAN/article/details/100214799
代码片段和文件信息
/*
based upon libiniparser by Nicolas Devillard
Hacked into 1 file (m-iniparser) by Freek/2005
Original terms following:
-- -
Copyright (c) 2000 by Nicolas Devillard (ndevilla AT free DOT fr).
Written by Nicolas Devillard. Not derived from licensed software.
Permission is granted to anyone to use this software for any
purpose on any computer system and to redistribute it freely
subject to the following restrictions:
1. The author is not responsible for the consequences of use of
this software no matter how awful even if they arise
from defects in it.
2. The origin of this software must not be misrepresented either
by explicit claim or by omission.
3. Altered versions must be plainly marked as such and must not
be misrepresented as being the original software.
4. This notice may not be removed or altered.
*/
//Modified by Jari Korhonen/2005:
//-strcpy() -> strlcpy()
//-sprintf() -> snprintf()
//-removed strupc / strstrip (were not used)
#include
#include
#include
#include
#include “iniparser.h“
#include “openbsd_stringfuncs.h“
#ifdef __cplusplus
extern “C“ {
#endif
/* strlib.c following */
#define ASCIILINESZ 1024
/*-------------------------------------------------------------------------*/
/**
@brief Convert a string to lowercase.
@param s String to convert.
@return ptr to statically allocated string.
This function returns a pointer to a statically allocated string
containing a lowercased version of the input string. Do not free
or modify the returned string! Since the returned string is statically
allocated it will be modified at each function call (not re-entrant).
*/
/*--------------------------------------------------------------------------*/
static char * strlwc(char * s)
{
static char l[ASCIILINESZ+1];
int i ;
if (s==NULL) return NULL ;
memset(l 0 ASCIILINESZ+1);
i=0 ;
while (s[i] && i l[i] = (char)tolower((int)s[i]);
i++ ;
}
l[ASCIILINESZ]=(char)0;
return l ;
}
/*-------------------------------------------------------------------------*/
/**
@brief Skip blanks until the first non-blank character.
@param s String to parse.
@return Pointer to char inside given string.
This function returns a pointer to the first non-blank character in the
given string.
*/
/*--------------------------------------------------------------------------*/
static char * strskp(char * s)
{
char * skip = s;
if (s==NULL) return NULL ;
while (isspace((int)*skip) && *skip) skip++;
return skip ;
}
/*-------------------------------------------------------------------------*/
/**
@brief Remove blanks at the end of a string.
@param s String to parse.
@return ptr to statically allocated string.
This function returns a pointer to a statically allocated string
which is identical to the input string except that all blank
character
相关资源
- VNCX
- CentOS-6.7-x86_64-bin-DVD1to2
- grpc-lua CentOS 7.4 执行程序打包
- Installation OpenMeetings 5.0.0-M2 on Centos 7
- CentOS-6.5-i386-bin-DVD1
- VNC-5.1.0-Windows 破解版
- centos 7 openssh7.9p 201810月最新版,基于
- centos7搭建基于strongswan ipsec的 l2tp服务
- openssl098e-0.9.8e-17.el6.centos.src.rpm
- CentOS7下Zabbix安装部署使用手册.doc
- 《网络服务器搭建与配置》实训指导
- centos7安装zabbix
- NIC-X722_X710_XL710-CentOS7.4-i40e-2.7.12-1.x8
- vnc viewer
- Linux CentOS离线环境下安装Apache所需要
- VNC开源 源码
- rabbitmq-server-generic-unix-3.7.21.tar.xz
-
svn代码检查工具(svnchecker+checkst
y - centos安装PPT教程
- 最新 redis-4.0.2.tar.gz 包
- Linux学习之CentOS带完整目录,非常适合
- nginx服务器插件之net-snmp-5.6.1.1.tar.gz
- CentOS-6.6-x86_64 nginx 依赖 pcre-devel zli
- LINUX 离线安装NFS
- centos6.8安装openssh7.9的rpm包
- CentOS7局域网下安装离线Ambari
- CactiEZ V10.1 中文版(附Cacti中文解决方
- rtl8192eu_linux x86_64
- nginx依赖包nginx依赖包
- Centos6.7-6.9_32x64-镜像种子.rar
评论
共有 条评论