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

📄 lookup.ry

📁 ftam等标准协议服务器和客户端的源代码。
💻 RY
字号:
-- lookup.ry - the ISODE password lookup demo-- $Header: /xtel/isode/isode/others/lookup/RCS/lookup.ry,v 9.0 1992/06/16 12:42:23 isode Rel $------ $Log: lookup.ry,v $-- Revision 9.0  1992/06/16  12:42:23  isode-- Release 8.0---- ----				  NOTICE----    Acquisition, use, and distribution of this module and related--    materials are subject to the restrictions of a license agreement.--    Consult the Preface in the User's Manual for the full terms of--    this agreement.----PasswordLookup DEFINITIONS ::=BEGIN-- operations			-- given a user name, return a Passwd typelookupUser OPERATION	ARGUMENT	UserName	RESULT		Passwd	ERRORS		{ noSuchUser, congested }	::=		0			-- given a user ID, return a Passwd typelookupUID OPERATION	ARGUMENT	UserID	RESULT		Passwd	ERRORS		{ noSuchUser, congested }	::=		1-- errors			-- no matching user in the databasenoSuchUser ERROR	::=		0			-- congestion at respondercongested ERROR	::=		1-- types			-- similar to an entry in <pwd.h>Passwd ::=    [APPLICATION 1]	IMPLICIT SEQUENCE {	    name[0]		IMPLICIT UserName,	    passwd[1]		IMPLICIT IA5String		OPTIONAL,	    uid[2]		IMPLICIT UserID,	    gid[3]		IMPLICIT GroupID,	    quota[4]		IMPLICIT INTEGER		DEFAULT 0,	    	    comment[5]		IMPLICIT IA5String		OPTIONAL,	    gecos[6]		IMPLICIT IA5String		OPTIONAL,	    dir[7]		IMPLICIT IA5String		OPTIONAL,	    shell[8]		IMPLICIT IA5String		OPTIONAL	}UserName ::=    [APPLICATION 2]	IMPLICIT GraphicStringUserID ::=    [APPLICATION 3]	IMPLICIT INTEGERGroupID ::=    [APPLICATION 4]	IMPLICIT INTEGEREND

⌨️ 快捷键说明

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