01: // MICP.java
02: // $Id: MICP.java,v 1.3 1998/01/22 14:39:21 bmahe Exp $
03: // (c) COPYRIGHT MIT and INRIA, 1997.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.www.protocol.http.micp;
07:
08: /**
09: * MICP constants.
10: */
11:
12: public interface MICP {
13: /**
14: * MICP current version.
15: */
16: public static final byte MICP_VERSION = (byte) 1;
17: /**
18: * MIC opcodes - query for an URL.
19: */
20: public static final byte MICP_OP_QUERY = (byte) 1;
21: /**
22: * MICP opcode - reply to a query.
23: */
24: public static final byte MICP_OP_REPLY = (byte) 2;
25: }
|