MICP.java :  » Web-Server » Jigsaw » org » w3c » www » protocol » http » micp » Java Open Source

Java Open Source » Web Server » Jigsaw 
Jigsaw » org » w3c » www » protocol » http » micp » MICP.java
// MICP.java
// $Id: MICP.java,v 1.3 1998/01/22 14:39:21 bmahe Exp $  
// (c) COPYRIGHT MIT and INRIA, 1997.
// Please first read the full copyright statement in file COPYRIGHT.html

package org.w3c.www.protocol.http.micp;

/**
 * MICP constants.
 */

public interface MICP {
    /**
     * MICP current version.
     */
    public static final byte MICP_VERSION  = (byte) 1;
    /**
     * MIC opcodes - query for an URL.
     */
    public static final byte MICP_OP_QUERY = (byte) 1;
    /**
     * MICP opcode - reply to a query.
     */
    public static final byte MICP_OP_REPLY = (byte) 2;
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.