ypupdate_prot.x

来自「操作系统SunOS 4.1.3版本的源码」· X 代码 · 共 38 行

X
38
字号
%/* @(#)ypupdate_prot.x 1.1 92/07/30 Copyr 1990, Sun Micro */%%/*% * Compiled from ypupdate_prot.x using rpcgen% * This is NOT source code!% * DO NOT EDIT THIS FILE!% *//* * NIS update service protocol */const MAXMAPNAMELEN = 255;const MAXYPDATALEN  = 1023;const MAXERRMSGLEN  = 255;program YPU_PROG {	version YPU_VERS {		u_int YPU_CHANGE(ypupdateargs) = 1;		u_int YPU_INSERT(ypupdateargs) = 2;		u_int YPU_DELETE(ypdeleteargs) = 3;		u_int YPU_STORE(ypupdateargs)  = 4;	} = 1;} = 100028;typedef opaque yp_buf<MAXYPDATALEN>;struct ypupdate_args {	string mapname<MAXMAPNAMELEN>;	yp_buf key;	yp_buf datum;};struct ypdelete_args {	string mapname<MAXMAPNAMELEN>;	yp_buf key;};

⌨️ 快捷键说明

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