Package org.apache.hadoop.oncrpc

Examples of org.apache.hadoop.oncrpc.RpcAuthSys


  @Override
  public XDR handleInternal(RpcCall rpcCall, final XDR xdr, XDR out,
      InetAddress client, Channel channel) {
    int procedure = rpcCall.getProcedure();
    int xid = rpcCall.getXid();
    RpcAuthSys authSys = null;
   
    // Ignore auth only for NFSPROC3_NULL, especially for Linux clients.
    if (procedure != Nfs3Constant.NFSPROC3_NULL) {
      if (rpcCall.getCredential().getFlavor() != AuthFlavor.AUTH_SYS) {
        LOG.info("Wrong RPC AUTH flavor, "
View Full Code Here

TOP

Related Classes of org.apache.hadoop.oncrpc.RpcAuthSys

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.