1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
/*
WinPopup Protocol plugin for Miranda IM.
Copyright (C) 2004-2011 Nikolay Raspopov
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#define SMB_ANY_NAME _T("* ")
#define FACILITY_NETBIOS (0x0f0f)
#define SMB_HEADER_SIZE (32)
#pragma pack (push, 1)
typedef struct SESSION_INFO_BLOCK
{
SESSION_HEADER sib_header;
SESSION_BUFFER sib_Names[ NCBNAMSZ ];
} SESSION_INFO_BLOCK, *PSESSION_INFO_BLOCK;
#pragma pack (pop)
class netbios_name
{
public:
netbios_name(LPCTSTR n = SMB_ANY_NAME /* ANSI */, UCHAR type = 0, bool group = false, UCHAR lana = 0);
netbios_name(const NAME_BUFFER& n, UCHAR lana);
netbios_name& operator=(const netbios_name& n);
netbios_name& operator=(const UCHAR* n);
// ��������� (������������� ������ �� �����, ������ �����, ���� �����)
bool operator==(const NAME_BUFFER& n) const;
// ��������� (������������� ������ �� �����, ������ �����, ���� �����)
bool operator!=(const NAME_BUFFER& n) const;
// ��������� (������������� ������ �� �����, ������ �����, ���� �����, ��������)
bool operator==(const netbios_name& n) const;
// ��������� (������������� ������ �� �����, ������ �����, ���� �����, ��������)
bool operator!=(const netbios_name& n) const;
// ����������� �����
bool Register();
// ��� ���������
void AskForDestroy();
// ������������� �����
void Destroy();
// �������� �������������� NetBIOS-����� �� OEM � ANSI � ����: NAME <TYPE>
CStringA GetANSIFullName() const;
CStringA original; // ������ ��� (� ANSI ���������)
NAME_BUFFER netbiosed; // NetBIOS ��� (� OEM ���������):
// typedef struct _NAME_BUFFER {
// UCHAR name[NCBNAMSZ];
// UCHAR name_num;
// UCHAR name_flags;
// } NAME_BUFFER, *PNAME_BUFFER;
// ��������� ��������� �����:
UCHAR GetType() const;
bool IsGroupName() const;
bool IsRegistered() const;
bool IsDuplicated() const;
bool IsError() const;
bool IsOwnName() const;
UCHAR GetLana() const;
size_t GetLength() const; // ����� ����� NetBIOS
protected:
bool m_managed; // ���� ������������ �����
bool m_registered; // ���� �������� ����������� �����
bool m_duplicated; // ���� ������������� ����� �� �����������
bool m_error; // ���� ������ ������������� �����
UCHAR m_lana; // ����� ��������
HANDLE m_listener; // ������� �������� ������-��������� ������
HANDLE m_dgreceiver; // ������� �������� ������-��������� ���������
HANDLE m_term; // ������� ������� �������� �������� ������-���������
// �������� �������������� NetBIOS-����� �� OEM � ANSI
CStringA GetANSIName() const;
bool GetRealSender(UCHAR lsn, CStringA& sRealFrom) const;
UCHAR AddName();
UCHAR DeleteName();
// �������� ������ ������
void Listener();
static void ListenerThread(LPVOID param);
// �������� ����������
void DatagramReceiver();
static void DatagramReceiverThread(LPVOID param);
// ��������� ������ (�� Listener)
void Receiver(UCHAR lsn);
static void ReceiverThread(LPVOID param);
};
typedef CAtlArray <netbios_name*> netbios_name_array;
typedef CAtlList <netbios_name> netbios_name_list;
/*
Name Number(h) Type Usage
--------------------------------------------------------------------------
<computername> 00 U Workstation Service
<computername> 01 U Messenger Service
<\\--__MSBROWSE__> 01 G Master Browser
<computername> 03 U Messenger Service
<computername> 06 U RAS Server Service
<computername> 1F U NetDDE Service
<computername> 20 U File Server Service
<computername> 21 U RAS Client Service
<computername> 22 U Microsoft Exchange Interchange(MSMail
Connector)
<computername> 23 U Microsoft Exchange Store
<computername> 24 U Microsoft Exchange Directory
<computername> 30 U Modem Sharing Server Service
<computername> 31 U Modem Sharing Client Service
<computername> 43 U SMS Clients Remote Control
<computername> 44 U SMS Administrators Remote Control
Tool
<computername> 45 U SMS Clients Remote Chat
<computername> 46 U SMS Clients Remote Transfer
<computername> 4C U DEC Pathworks TCPIP service on
Windows NT
<computername> 42 U mccaffee anti-virus
<computername> 52 U DEC Pathworks TCPIP service on
Windows NT
<computername> 87 U Microsoft Exchange MTA
<computername> 6A U Microsoft Exchange IMC
<computername> BE U Network Monitor Agent
<computername> BF U Network Monitor Application
<username> 03 U Messenger Service
<domain> 00 G Domain Name
<domain> 1B U Domain Master Browser
<domain> 1C G Domain Controllers
<domain> 1D U Master Browser
<domain> 1E G Browser Service Elections
<INet~Services> 1C G IIS
<IS~computer name> 00 U IIS
<computername> [2B] U Lotus Notes Server Service
IRISMULTICAST [2F] G Lotus Notes
IRISNAMESERVER [33] G Lotus Notes
Forte_$ND800ZA [20] U DCA IrmaLan Gateway Server Service
*/
|