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

📄 date.x

📁 the source code from the book "UNIX Network Programming" by W. Richard Stevens. i hope it is useful
💻 X
字号:
/* * date.x - Specification of remote date and time service. *//* * Define 2 procedures: *	bin_date_1() returns the binary time and date (no arguments). *	str_date_1() takes a binary time and returns a human-readable string. */program DATE_PROG {    version DATE_VERS {	long	BIN_DATE(void) = 1;	/* procedure number = 1 */	string	STR_DATE(long) = 2;	/* procedure number = 2 */    } = 1;				/* version number = 1 */} = 0x31234567;				/* program number = 0x31234567 */

⌨️ 快捷键说明

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