mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00

The broxygen-generated files now live in the git repo, have tests that check that they are up-to-date, and a script to re-generate them on-demand.
53 lines
1.4 KiB
ReStructuredText
53 lines
1.4 KiB
ReStructuredText
:tocdepth: 3
|
|
|
|
base/bif/plugins/Bro_NetBIOS.functions.bif.bro
|
|
==============================================
|
|
.. bro:namespace:: GLOBAL
|
|
|
|
|
|
:Namespace: GLOBAL
|
|
|
|
Summary
|
|
~~~~~~~
|
|
Functions
|
|
#########
|
|
======================================================== ================================================================
|
|
:bro:id:`decode_netbios_name`: :bro:type:`function` Decode a NetBIOS name.
|
|
:bro:id:`decode_netbios_name_type`: :bro:type:`function` Converts a NetBIOS name type to its corresponding numeric value.
|
|
======================================================== ================================================================
|
|
|
|
|
|
Detailed Interface
|
|
~~~~~~~~~~~~~~~~~~
|
|
Functions
|
|
#########
|
|
.. bro:id:: decode_netbios_name
|
|
|
|
:Type: :bro:type:`function` (name: :bro:type:`string`) : :bro:type:`string`
|
|
|
|
Decode a NetBIOS name. See http://support.microsoft.com/kb/194203.
|
|
|
|
|
|
:name: The encoded NetBIOS name, e.g., ``"FEEIEFCAEOEFFEECEJEPFDCAEOEBENEF"``.
|
|
|
|
|
|
:returns: The decoded NetBIOS name, e.g., ``"THE NETBIOS NAME"``.
|
|
|
|
.. bro:see:: decode_netbios_name_type
|
|
|
|
.. bro:id:: decode_netbios_name_type
|
|
|
|
:Type: :bro:type:`function` (name: :bro:type:`string`) : :bro:type:`count`
|
|
|
|
Converts a NetBIOS name type to its corresponding numeric value.
|
|
See http://support.microsoft.com/kb/163409.
|
|
|
|
|
|
:name: The NetBIOS name type.
|
|
|
|
|
|
:returns: The numeric value of *name*.
|
|
|
|
.. bro:see:: decode_netbios_name
|
|
|
|
|