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

📄 lclnt2.c

📁 understanding unix/linux programming source code(bruce molay)
💻 C
字号:
/**************************************************************************** * lclnt2.c * License server client version 2 *  link with lclnt_funcs2.o dgram.o */#include <stdio.h>int main(int ac, char *av[]){	setup();	if (get_ticket() != 0 )		exit(0);		do_regular_work();	release_ticket();	shut_down();}/**************************************************************************** * do_regular_work  the main work of the application goes here */do_regular_work(){	printf("SuperSleep version 1.0 Running - Licensed Software\n");	sleep(15);	/* our patented sleep algorithm */	if ( validate_ticket() != 0 ){		printf("Server errors. Please Try later.\n");		return;	}	sleep(15);}

⌨️ 快捷键说明

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