matchrule.java

来自「基于人工免疫原理的入侵检测系统框架」· Java 代码 · 共 41 行

JAVA
41
字号
/*================= * Copyright (C) 2001  Todd Kaplan * * Lisys is a program that monitors TCP SYN packets to detect network * traffic anomalies. * * Licensed under the GNU General Public License (GPL), version 2 or * higher.  Please see the COPYING and PATENT files included with the * Lisys distribution, which can be found at: * *   http://www.cs.unm.edu/~judd/lisys/ * * Also, the current text of the GPL can be found at:  * *   http://www.gnu.org/copyleft/gpl.html *  * Note that Lisys has NO WARRANTY! *=================*/package edu.unm.cs.lisys.detection.matchrule;import edu.unm.cs.lisys.detection.bip.*;import java.util.*;/**========== * MatchRule.java *   Interface specifying the methods needed by *   child classes specifying matches. * * Here are the people who have worked on this code, starting with  * the most recent: *   @author Justin Balthrop <judd@cs.unm.edu> *   @author Todd Kaplan <kaplan@cs.unm.edu> *==========*/public interface MatchRule{    public int match(BinaryInputPattern first, BinaryInputPattern second);}

⌨️ 快捷键说明

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