📄 yperr_string.c
字号:
#ifndef lintstatic char *sccsid = "@(#)yperr_string.c 4.1 (ULTRIX) 7/3/90";#endif lint/**************************************************************** * * * Licensed to Digital Equipment Corporation, Maynard, MA * * Copyright 1985 Sun Microsystems, Inc. * * All rights reserved. * * * ****************************************************************/#include <rpcsvc/ypclnt.h>/* * This returns a pointer to an error message string appropriate to an * input yp error code. An input value of zero will return a * success message. * In all cases, the message string will start with a lower case * characters and will be terminated neither by a period (".") * nor a newline. *//* change log * 04/13/89 jhw * Added SUN 4.0 changes */char *yperr_string(code) int code;{ char *pmesg; switch (code) { case 0: { pmesg = "yp operation succeeded"; break; } case YPERR_BADARGS: { pmesg = "args to yp function are bad"; break; } case YPERR_RPC: { pmesg = "RPC failure on yp operation"; break; } case YPERR_DOMAIN: { pmesg = "can't bind to a server which serves domain"; break; } case YPERR_MAP: { pmesg = "no such map in server's domain"; break; } case YPERR_KEY: { pmesg = "no such key in map"; break; } case YPERR_YPERR: { pmesg = "internal yp server or client error"; break; } case YPERR_RESRC: { pmesg = "local resource allocation failure"; break; } case YPERR_NOMORE: { pmesg = "no more records in map database"; break; } case YPERR_PMAP: { pmesg = "can't communicate with portmapper"; break; } case YPERR_YPBIND: { pmesg = "can't communicate with ypbind"; break; } case YPERR_YPSERV: { pmesg = "can't communicate with ypserv"; break; } case YPERR_NODOM: { pmesg = "local domain name not set"; break; } case YPERR_BADDB: { pmesg = "yp map data base is bad"; break; } case YPERR_VERS: { pmesg = "yp client/server version mismatch"; break; } case YPERR_ACCESS: { pmesg = "permission denied"; break; } case YPERR_BUSY: { pmesg = "database is busy"; break; } default: { pmesg = "unknown yp client error code"; break; } } return(pmesg);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -