linklayer.java

来自「纯java操作系统jnode,安装简单和操作简单的个人使用的Java操作系统」· Java 代码 · 共 35 行

JAVA
35
字号
/*
 * $Id: LinkLayer.java,v 1.1 2003/11/25 11:52:21 epr Exp $
 */
package org.jnode.net;

import java.net.SocketException;

/**
 * OSI datalink layers must implement this interface.
 *  
 * @author epr
 */
public interface LinkLayer {
	
	/**
	 * Gets the name of this layer
	 */
	public String getName();
	
	/**
	 * Gets the type of frames this layer handles
	 */
	public int getType();
	
	/**
	 * Process a packet that has been received and matches the type of this
	 * layer.
	 * @param skbuf
	 * @throws SocketException
	 */
	public void receive(SocketBuffer skbuf)
	throws SocketException;

}

⌨️ 快捷键说明

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