1
|
# NBNS - NetBIOS name service
|
2
|
# Pattern attributes: good slow notsofast
|
3
|
# Protocol groups: networking proprietary
|
4
|
# Wiki: http://www.protocolinfo.org/wiki/NBNS
|
5
|
# Copyright (C) 2008 Matthew Strait, Ethan Sommer; See ../LICENSE
|
6
|
#
|
7
|
# This pattern has been tested and is believed to work well.
|
8
|
#
|
9
|
# name query
|
10
|
# \x01\x10 means name query
|
11
|
#
|
12
|
# registration NB
|
13
|
# (\x10 or )\x10 means registration
|
14
|
#
|
15
|
# release NB (merged with registration)
|
16
|
# 0\x10 means release
|
17
|
|
18
|
nbns
|
19
|
# This is not a valid basic GNU regular expression.
|
20
|
\x01\x10\x01|\)\x10\x01\x01|0\x10\x01
|