Node.JS - Page keeps on running

82 visualizações
Pular para a primeira mensagem não lida

SARFRAZ AHMED

não lida,
18 de fev. de 2012, 10:03:4918/02/2012
para nodejs
So I download Windows binaries from node's site and installed on my
Windows 7 machine which is installed fine, when I do:

node --version

It correctly displays its version: v0.6.7

Here is the hello world program:

// app.js
var http = require('http');

http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(8000, "127.0.0.1");

console.log('Server running at http://127.0.0.1:8000/');

And when I do:

node app.js

I get the response fine:

Server running at http://127.0.0.1:8000/

However, when I browser the URL http://127.0.0.1:8000, the page keeps
on running (on status bar it says waiting for 127.0.0.1...).

Can anybody help me how to make it to output Hello World ?

Bert Belder

não lida,
18 de fev. de 2012, 10:56:1218/02/2012
para nodejs
On Feb 18, 4:03 pm, SARFRAZ AHMED <sarfraznawaz2...@gmail.com> wrote:
> So I download Windows binaries from node's site and installed on my
> Windows 7 machine which is installed fine, when I do:
>
> node --version
>
> It correctly displays its version: v0.6.7
>
> Here is the hello world program:
>
> // app.js
> var http = require('http');
>
> http.createServer(function (req, res) {
>   res.writeHead(200, {'Content-Type': 'text/plain'});
>   res.end('Hello World\n');
>
> }).listen(8000, "127.0.0.1");
>
> console.log('Server running athttp://127.0.0.1:8000/');
>
> And when I do:
>
> node app.js
>
> I get the response fine:
>
> Server running athttp://127.0.0.1:8000/
>
> However, when I browser the URLhttp://127.0.0.1:8000, the page keeps
> on running (on status bar it says waiting for 127.0.0.1...).
>
> Can anybody help me how to make it to output Hello World ?

You should check your firewall and antivirus settings.

If that doesn't help, I am afraid that you might be hitting a bug that
a handful of windows users run into. Unfortunately neither me or Igor
have been able to reproduce this problem, or get access to a machine
where it happens. So we don't know when we will be able to solve this.

- Bert

C. Mundi

não lida,
18 de fev. de 2012, 13:50:1218/02/2012
para nod...@googlegroups.com

I had this problem exactly once, back around 0.6.4.  Of course I thought I had forgotten the res.end() but no.  Thought it was a firewall problem.  No.  Finally rebuilt from source, problem gone.  Tried to reproduce with original binary tarball.  Nope.  Mysterious. 

Since the problem seems to be reproducible for you, ie you are stuck, you may be in a position to help everyone.

You could try something I wish I had thought of...if you are comfortable with wireshark (and your local IT policy allows it) you could capture the traffic on the loopback interface for clues.  If node just isn't responding that's one thing.  But it could also be Windows firewall refusing to resolve the port or maybe node is responding before your browser is even ready to process a response.

Also if instead of using your browser, you could try curl (not sure if windows has curl) or just telnet localhost 8000 and manually "speak" http to the node server.  This would let you test things like...are you getting a connection at all...what does HEAD (as opposed to GET) produce, etc. 

This is all grasping at straws but since the devs cannot reproduce it, even a small clue might help.

--
Job Board: http://jobs.nodejs.org/
Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to nod...@googlegroups.com
To unsubscribe from this group, send email to
nodejs+un...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

Igor Zinkovsky

não lida,
20 de fev. de 2012, 18:18:0620/02/2012
para nodejs
Sarfraz, please post the output from the following commands on the
machine where you're able to reproduce this. It might help us
diagnose the issue.
- 'ipconfig /all'
- 'netsh winsock show catalog'

Sarfraz Ahmed

não lida,
21 de fev. de 2012, 00:24:1921/02/2012
para nod...@googlegroups.com
Thanks for your response. Here are the results:

ipconfig /all
-----------------------

Windows IP Configuration

   Host Name . . . . . . . . . . . . : xxxxxx
   Primary Dns Suffix  . . . . . . . :
   Node Type . . . . . . . . . . . . : Hybrid
   IP Routing Enabled. . . . . . . . : No
   WINS Proxy Enabled. . . . . . . . : No

Ethernet adapter Local Area Connection 5:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : TAP-Win32 Adapter V9
   Physical Address. . . . . . . . . : 00-FF-7F-68-B9-48
   DHCP Enabled. . . . . . . . . . . : Yes
   Autoconfiguration Enabled . . . . : Yes

Ethernet adapter Local Area Connection* 28:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Anchorfree HSS Adapter
   Physical Address. . . . . . . . . : 00-FF-1C-2A-06-53
   DHCP Enabled. . . . . . . . . . . : Yes
   Autoconfiguration Enabled . . . . : Yes

Wireless LAN adapter Wireless Network Connection 3:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Microsoft Virtual WiFi Miniport Adapter
   Physical Address. . . . . . . . . : E0-2A-82-A3-16-C0
   DHCP Enabled. . . . . . . . . . . : Yes
   Autoconfiguration Enabled . . . . : Yes

Wireless LAN adapter Wireless Network Connection 2:

   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Broadcom 4313 802.11b/g/n
   Physical Address. . . . . . . . . : E0-2A-82-A3-16-C0
   DHCP Enabled. . . . . . . . . . . : Yes
   Autoconfiguration Enabled . . . . : Yes
   Link-local IPv6 Address . . . . . : fe80::641c:f30c:f24f:6e3%17(Preferred)
   IPv4 Address. . . . . . . . . . . : 192.168.15.184(Preferred)
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Lease Obtained. . . . . . . . . . : Tuesday, February 21, 2012 9:54:46 AM
   Lease Expires . . . . . . . . . . : Tuesday, February 21, 2012 10:54:46 AM
   Default Gateway . . . . . . . . . : 192.168.15.1
   DHCP Server . . . . . . . . . . . : 192.168.15.1
   DHCPv6 IAID . . . . . . . . . . . : 400566914
   DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-14-8F-EE-81-64-31-50-03-D3-98

   DNS Servers . . . . . . . . . . . : 192.168.15.1
   NetBIOS over Tcpip. . . . . . . . : Enabled

Ethernet adapter Local Area Connection 3:

   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : VMware Virtual Ethernet Adapter for VMnet
1
   Physical Address. . . . . . . . . : 00-50-56-C0-00-01
   DHCP Enabled. . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . : Yes
   Link-local IPv6 Address . . . . . : fe80::c0f:b50d:bfa8:e72%21(Preferred)
   IPv4 Address. . . . . . . . . . . : 192.168.128.1(Preferred)
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Default Gateway . . . . . . . . . :
   DHCPv6 IAID . . . . . . . . . . . : 503337046
   DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-14-8F-EE-81-64-31-50-03-D3-98

   DNS Servers . . . . . . . . . . . : fec0:0:0:ffff::1%1
                                       fec0:0:0:ffff::2%1
                                       fec0:0:0:ffff::3%1
   NetBIOS over Tcpip. . . . . . . . : Enabled

Ethernet adapter Local Area Connection 4:

   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : VMware Virtual Ethernet Adapter for VMnet
8
   Physical Address. . . . . . . . . : 00-50-56-C0-00-08
   DHCP Enabled. . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . : Yes
   Link-local IPv6 Address . . . . . : fe80::bdd0:e980:e6c8:c4ad%22(Preferred)
   IPv4 Address. . . . . . . . . . . : 192.168.195.1(Preferred)
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Default Gateway . . . . . . . . . :
   DHCPv6 IAID . . . . . . . . . . . : 805326934
   DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-14-8F-EE-81-64-31-50-03-D3-98

   DNS Servers . . . . . . . . . . . : fec0:0:0:ffff::1%1
                                       fec0:0:0:ffff::2%1
                                       fec0:0:0:ffff::3%1
   NetBIOS over Tcpip. . . . . . . . : Enabled

Ethernet adapter VirtualBox Host-Only Network:

   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : VirtualBox Host-Only Ethernet Adapter
   Physical Address. . . . . . . . . : 08-00-27-00-40-B0
   DHCP Enabled. . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . : Yes
   Link-local IPv6 Address . . . . . : fe80::b876:37de:431e:f850%43(Preferred)
   IPv4 Address. . . . . . . . . . . : 192.168.56.1(Preferred)
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Default Gateway . . . . . . . . . :
   DHCPv6 IAID . . . . . . . . . . . : 1124597799
   DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-14-8F-EE-81-64-31-50-03-D3-98

   DNS Servers . . . . . . . . . . . : fec0:0:0:ffff::1%1
                                       fec0:0:0:ffff::2%1
                                       fec0:0:0:ffff::3%1
   NetBIOS over Tcpip. . . . . . . . : Enabled

Tunnel adapter isatap.{C9CBA415-60DE-47E3-BF3E-28A0AE5D346C}:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Microsoft ISATAP Adapter
   Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
   DHCP Enabled. . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . : Yes

Tunnel adapter isatap.{7F68B948-715C-4313-98EB-1E3A11B825C1}:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Microsoft ISATAP Adapter #2
   Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
   DHCP Enabled. . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . : Yes

Tunnel adapter isatap.{3F3CED1A-1C3D-4FE1-8426-078C67E71843}:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Microsoft ISATAP Adapter #3
   Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
   DHCP Enabled. . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . : Yes

Tunnel adapter Teredo Tunneling Pseudo-Interface:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Teredo Tunneling Pseudo-Interface
   Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
   DHCP Enabled. . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . : Yes

Tunnel adapter isatap.{77A2FA98-966D-4CEA-939C-C4659C4E0F6F}:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Microsoft ISATAP Adapter #4
   Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
   DHCP Enabled. . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . : Yes

Tunnel adapter isatap.{D91CA614-03F1-421A-86C2-255DA5E2B0A5}:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Microsoft ISATAP Adapter #5
   Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
   DHCP Enabled. . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . : Yes

Tunnel adapter isatap.{B9FCF1F4-B8D1-4449-8FCA-8E7CF7E28FAB}:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Microsoft ISATAP Adapter #6
   Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
   DHCP Enabled. . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . : Yes

Tunnel adapter isatap.{1C2A0653-B7D8-4E59-8D1D-D0C86239B68B}:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Microsoft ISATAP Adapter #8
   Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
   DHCP Enabled. . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . : Yes
   
   
   


netsh winsock show catalog
-----------------------------------

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Layered Chain Entry
Description:                        IDM_LAYERED_MSAFD Tcpip [TCP/IP]
Provider ID:                        {00645CCD-B777-44A2-9B36-1FB3F423B559}
Provider Path:                      C:\windows\system32\idmmbc.dll
Catalog Entry ID:                   1375
Version:                            2
Address Family:                     2
Max Address Length:                 16
Min Address Length:                 16
Socket Type:                        1
Protocol:                           6
Service Flags:                      0x66
Protocol Chain Length:              2
Protocol Chain: 1374 : 1001


Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Layered Chain Entry
Description:                        IDM_LAYERED_MSAFD Tcpip [UDP/IP]
Provider ID:                        {02C1811B-6B25-416A-ACA8-DC671D68056D}
Provider Path:                      C:\windows\system32\idmmbc.dll
Catalog Entry ID:                   1376
Version:                            2
Address Family:                     2
Max Address Length:                 16
Min Address Length:                 16
Socket Type:                        2
Protocol:                           17
Service Flags:                      0x609
Protocol Chain Length:              2
Protocol Chain: 1374 : 1002


Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Layered Chain Entry
Description:                        IDM_LAYERED_MSAFD Tcpip [RAW/IP]
Provider ID:                        {144323B7-20C3-4B5F-B2A5-1CD0D6996DBC}
Provider Path:                      C:\windows\system32\idmmbc.dll
Catalog Entry ID:                   1377
Version:                            2
Address Family:                     2
Max Address Length:                 16
Min Address Length:                 16
Socket Type:                        3
Protocol:                           0
Service Flags:                      0x609
Protocol Chain Length:              2
Protocol Chain: 1374 : 1003


Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Layered Chain Entry
Description:                        IDM_LAYERED_MSAFD Tcpip [TCP/IPv6]
Provider ID:                        {179619BA-DEEB-4436-ABAF-82EEAF2F3816}
Provider Path:                      C:\windows\system32\idmmbc.dll
Catalog Entry ID:                   1378
Version:                            2
Address Family:                     23
Max Address Length:                 28
Min Address Length:                 28
Socket Type:                        1
Protocol:                           6
Service Flags:                      0x66
Protocol Chain Length:              2
Protocol Chain: 1374 : 1004


Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Layered Chain Entry
Description:                        IDM_LAYERED_MSAFD Tcpip [UDP/IPv6]
Provider ID:                        {205801EA-84B1-4085-B818-B1C6FB567BD7}
Provider Path:                      C:\windows\system32\idmmbc.dll
Catalog Entry ID:                   1379
Version:                            2
Address Family:                     23
Max Address Length:                 28
Min Address Length:                 28
Socket Type:                        2
Protocol:                           17
Service Flags:                      0x609
Protocol Chain Length:              2
Protocol Chain: 1374 : 1005


Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Layered Chain Entry
Description:                        IDM_LAYERED_MSAFD Tcpip [RAW/IPv6]
Provider ID:                        {64A72197-BDA2-449E-BA78-8E0335442661}
Provider Path:                      C:\windows\system32\idmmbc.dll
Catalog Entry ID:                   1380
Version:                            2
Address Family:                     23
Max Address Length:                 28
Min Address Length:                 28
Socket Type:                        3
Protocol:                           0
Service Flags:                      0x609
Protocol Chain Length:              2
Protocol Chain: 1374 : 1006


Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Layered Chain Entry
Description:                        IDM_LAYERED_RSVP TCPv6 Service Provider
Provider ID:                        {6528E7DB-F86D-4398-A3DF-ABF0E7B70AA2}
Provider Path:                      C:\windows\system32\idmmbc.dll
Catalog Entry ID:                   1381
Version:                            2
Address Family:                     23
Max Address Length:                 28
Min Address Length:                 28
Socket Type:                        1
Protocol:                           6
Service Flags:                      0x2066
Protocol Chain Length:              2
Protocol Chain: 1374 : 1011


Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Layered Chain Entry
Description:                        IDM_LAYERED_RSVP TCP Service Provider
Provider ID:                        {77E27BC6-988A-4B45-BDF1-85A8928F86EA}
Provider Path:                      C:\windows\system32\idmmbc.dll
Catalog Entry ID:                   1382
Version:                            2
Address Family:                     2
Max Address Length:                 16
Min Address Length:                 16
Socket Type:                        1
Protocol:                           6
Service Flags:                      0x2066
Protocol Chain Length:              2
Protocol Chain: 1374 : 1012


Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Layered Chain Entry
Description:                        IDM_LAYERED_RSVP UDPv6 Service Provider
Provider ID:                        {80993B9B-0CD0-4B2D-864C-88151C635FE5}
Provider Path:                      C:\windows\system32\idmmbc.dll
Catalog Entry ID:                   1383
Version:                            2
Address Family:                     23
Max Address Length:                 28
Min Address Length:                 28
Socket Type:                        2
Protocol:                           17
Service Flags:                      0x2609
Protocol Chain Length:              2
Protocol Chain: 1374 : 1013


Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Layered Chain Entry
Description:                        IDM_LAYERED_RSVP UDP Service Provider
Provider ID:                        {851ABA31-D661-4825-A37F-5BD0FAEB4D88}
Provider Path:                      C:\windows\system32\idmmbc.dll
Catalog Entry ID:                   1384
Version:                            2
Address Family:                     2
Max Address Length:                 16
Min Address Length:                 16
Socket Type:                        2
Protocol:                           17
Service Flags:                      0x2609
Protocol Chain Length:              2
Protocol Chain: 1374 : 1014


Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD Tcpip [TCP/IP]
Provider ID:                        {E70F1AA0-AB8B-11CF-8CA3-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   1001
Version:                            2
Address Family:                     2
Max Address Length:                 16
Min Address Length:                 16
Socket Type:                        1
Protocol:                           6
Service Flags:                      0x20066
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD Tcpip [UDP/IP]
Provider ID:                        {E70F1AA0-AB8B-11CF-8CA3-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   1002
Version:                            2
Address Family:                     2
Max Address Length:                 16
Min Address Length:                 16
Socket Type:                        2
Protocol:                           17
Service Flags:                      0x20609
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD Tcpip [RAW/IP]
Provider ID:                        {E70F1AA0-AB8B-11CF-8CA3-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   1003
Version:                            2
Address Family:                     2
Max Address Length:                 16
Min Address Length:                 16
Socket Type:                        3
Protocol:                           0
Service Flags:                      0x20609
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD Tcpip [TCP/IPv6]
Provider ID:                        {F9EAB0C0-26D4-11D0-BBBF-00AA006C34E4}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   1004
Version:                            2
Address Family:                     23
Max Address Length:                 28
Min Address Length:                 28
Socket Type:                        1
Protocol:                           6
Service Flags:                      0x20066
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD Tcpip [UDP/IPv6]
Provider ID:                        {F9EAB0C0-26D4-11D0-BBBF-00AA006C34E4}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   1005
Version:                            2
Address Family:                     23
Max Address Length:                 28
Min Address Length:                 28
Socket Type:                        2
Protocol:                           17
Service Flags:                      0x20609
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD Tcpip [RAW/IPv6]
Provider ID:                        {F9EAB0C0-26D4-11D0-BBBF-00AA006C34E4}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   1006
Version:                            2
Address Family:                     23
Max Address Length:                 28
Min Address Length:                 28
Socket Type:                        3
Protocol:                           0
Service Flags:                      0x20609
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        RSVP TCPv6 Service Provider
Provider ID:                        {9D60A9E0-337A-11D0-BD88-0000C082E69A}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   1011
Version:                            2
Address Family:                     23
Max Address Length:                 28
Min Address Length:                 28
Socket Type:                        1
Protocol:                           6
Service Flags:                      0x22066
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        RSVP TCP Service Provider
Provider ID:                        {9D60A9E0-337A-11D0-BD88-0000C082E69A}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   1012
Version:                            2
Address Family:                     2
Max Address Length:                 16
Min Address Length:                 16
Socket Type:                        1
Protocol:                           6
Service Flags:                      0x22066
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        RSVP UDPv6 Service Provider
Provider ID:                        {9D60A9E0-337A-11D0-BD88-0000C082E69A}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   1013
Version:                            2
Address Family:                     23
Max Address Length:                 28
Min Address Length:                 28
Socket Type:                        2
Protocol:                           17
Service Flags:                      0x22609
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        RSVP UDP Service Provider
Provider ID:                        {9D60A9E0-337A-11D0-BD88-0000C082E69A}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   1014
Version:                            2
Address Family:                     2
Max Address Length:                 16
Min Address Length:                 16
Socket Type:                        2
Protocol:                           17
Service Flags:                      0x22609
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD RfComm [Bluetooth]
Provider ID:                        {9FC48064-7298-43E4-B7BD-181F2089792A}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   1067
Version:                            2
Address Family:                     32
Max Address Length:                 30
Min Address Length:                 30
Socket Type:                        1
Protocol:                           3
Service Flags:                      0x20026
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Layered Service Provider
Description:                        IDM_LP
Provider ID:                        {A47C427F-2C83-4FE4-ABB2-DD2708465C2D}
Provider Path:                      C:\windows\system32\idmmbc.dll
Catalog Entry ID:                   1374
Version:                            0
Address Family:                     2
Max Address Length:                 16
Min Address Length:                 16
Socket Type:                        1
Protocol:                           6
Service Flags:                      0x0
Protocol Chain Length:              0

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        VMCI sockets DGRAM
Provider ID:                        {570ADC4B-67B2-42CE-92B2-ACD33D88D842}
Provider Path:                      C:\Program Files\VMware\VMware Server\vsockl
ib.dll
Catalog Entry ID:                   6623
Version:                            0
Address Family:                     28
Max Address Length:                 16
Min Address Length:                 16
Socket Type:                        2
Protocol:                           0
Service Flags:                      0x9
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        VMCI sockets STREAM
Provider ID:                        {570ADC4B-67B2-42CE-92B2-ACD33D88D842}
Provider Path:                      C:\Program Files\VMware\VMware Server\vsockl
ib.dll
Catalog Entry ID:                   6624
Version:                            0
Address Family:                     28
Max Address Length:                 16
Min Address Length:                 16
Socket Type:                        1
Protocol:                           0
Service Flags:                      0x26
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip_{7F68B948
-715C-4313-98EB-1E3A11B825C1}] SEQPACKET 27
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15649
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -27
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip_{7F68B948
-715C-4313-98EB-1E3A11B825C1}] DATAGRAM 27
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15650
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -27
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip_{1C2A0653
-B7D8-4E59-8D1D-D0C86239B68B}] SEQPACKET 34
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15651
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -34
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip_{1C2A0653
-B7D8-4E59-8D1D-D0C86239B68B}] DATAGRAM 34
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15652
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -34
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip_{A498DAFD
-4ADF-4730-ACF6-6D18CC906D1C}] SEQPACKET 15
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15653
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -15
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip_{A498DAFD
-4ADF-4730-ACF6-6D18CC906D1C}] DATAGRAM 15
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15654
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -15
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip_{D91CA614
-03F1-421A-86C2-255DA5E2B0A5}] SEQPACKET 9
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15655
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -9
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip_{D91CA614
-03F1-421A-86C2-255DA5E2B0A5}] DATAGRAM 9
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15656
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -9
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip_{B9FCF1F4
-B8D1-4449-8FCA-8E7CF7E28FAB}] SEQPACKET 12
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15657
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -12
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip_{B9FCF1F4
-B8D1-4449-8FCA-8E7CF7E28FAB}] DATAGRAM 12
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15658
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -12
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip_{81E011C6
-7BC0-4ABC-BA90-CD8DC152669B}] SEQPACKET 10
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15659
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -10
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip_{81E011C6
-7BC0-4ABC-BA90-CD8DC152669B}] DATAGRAM 10
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15660
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -10
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip_{129CEB54
-508D-4F02-837B-F56EDDB76C15}] SEQPACKET 7
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15661
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -7
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip_{129CEB54
-508D-4F02-837B-F56EDDB76C15}] DATAGRAM 7
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15662
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -7
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip_{5121C6D3
-E81C-4AD5-90AB-499821ADB9D4}] SEQPACKET 4
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15663
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -4
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip_{5121C6D3
-E81C-4AD5-90AB-499821ADB9D4}] DATAGRAM 4
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15664
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -4
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip_{28FF5F0F
-6CB1-4B99-BA32-79A546CF2EF8}] SEQPACKET 2
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15665
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -2
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip_{28FF5F0F
-6CB1-4B99-BA32-79A546CF2EF8}] DATAGRAM 2
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15666
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -2
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip_{3F3CED1A
-1C3D-4FE1-8426-078C67E71843}] SEQPACKET 23
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15667
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -23
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip_{3F3CED1A
-1C3D-4FE1-8426-078C67E71843}] DATAGRAM 23
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15668
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -23
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip_{C9CBA415
-60DE-47E3-BF3E-28A0AE5D346C}] SEQPACKET 25
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15669
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -25
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip_{C9CBA415
-60DE-47E3-BF3E-28A0AE5D346C}] DATAGRAM 25
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15670
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -25
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip_{77A2FA98
-966D-4CEA-939C-C4659C4E0F6F}] SEQPACKET 30
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15671
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -30
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip_{77A2FA98
-966D-4CEA-939C-C4659C4E0F6F}] DATAGRAM 30
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15672
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -30
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{7F68B94
8-715C-4313-98EB-1E3A11B825C1}] SEQPACKET 32
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15673
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -32
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{7F68B94
8-715C-4313-98EB-1E3A11B825C1}] DATAGRAM 32
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15674
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -32
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{6154540
6-6ABC-4631-A432-FC480073CF11}] SEQPACKET 26
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15675
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -26
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{6154540
6-6ABC-4631-A432-FC480073CF11}] DATAGRAM 26
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15676
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -26
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{7EB9785
8-6AE1-478B-A6DF-275147338B9C}] SEQPACKET 19
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15677
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -19
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{7EB9785
8-6AE1-478B-A6DF-275147338B9C}] DATAGRAM 19
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15678
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -19
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{0DD045A
C-72FD-4AD5-8EF8-8690B89526E0}] SEQPACKET 18
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15679
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -18
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{0DD045A
C-72FD-4AD5-8EF8-8690B89526E0}] DATAGRAM 18
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15680
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -18
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{D7A6F91
7-DE8B-4896-8AE8-8D48759D6FEA}] SEQPACKET 16
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15681
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -16
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{D7A6F91
7-DE8B-4896-8AE8-8D48759D6FEA}] DATAGRAM 16
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15682
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -16
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{1C2A065
3-B7D8-4E59-8D1D-D0C86239B68B}] SEQPACKET 33
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15683
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -33
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{1C2A065
3-B7D8-4E59-8D1D-D0C86239B68B}] DATAGRAM 33
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15684
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -33
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{9E19B02
A-7A46-4AE2-9DE4-7F0F87944409}] SEQPACKET 31
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15685
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -31
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{9E19B02
A-7A46-4AE2-9DE4-7F0F87944409}] DATAGRAM 31
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15686
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -31
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{977460C
9-8C6D-4831-99B6-230AECE54BDB}] SEQPACKET 21
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15687
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -21
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{977460C
9-8C6D-4831-99B6-230AECE54BDB}] DATAGRAM 21
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15688
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -21
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{E1D5DA6
3-2D93-4637-8B2A-294B88C20CCC}] SEQPACKET 6
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15689
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -6
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{E1D5DA6
3-2D93-4637-8B2A-294B88C20CCC}] DATAGRAM 6
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15690
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -6
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{F0E59BA
4-7993-4766-9D80-02B00BE529CF}] SEQPACKET 29
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15691
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -29
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{F0E59BA
4-7993-4766-9D80-02B00BE529CF}] DATAGRAM 29
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15692
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -29
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{A498DAF
D-4ADF-4730-ACF6-6D18CC906D1C}] SEQPACKET 14
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15693
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -14
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{A498DAF
D-4ADF-4730-ACF6-6D18CC906D1C}] DATAGRAM 14
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15694
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -14
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{C9CBA41
5-60DE-47E3-BF3E-28A0AE5D346C}] SEQPACKET 24
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15695
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -24
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{C9CBA41
5-60DE-47E3-BF3E-28A0AE5D346C}] DATAGRAM 24
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15696
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -24
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{3F3CED1
A-1C3D-4FE1-8426-078C67E71843}] SEQPACKET 22
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15697
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -22
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{3F3CED1
A-1C3D-4FE1-8426-078C67E71843}] DATAGRAM 22
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15698
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -22
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{EA2509E
3-DF69-4602-BA7A-F58A35BE3BDF}] SEQPACKET 0
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15699
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -2147483648
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{EA2509E
3-DF69-4602-BA7A-F58A35BE3BDF}] DATAGRAM 0
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15700
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -2147483648
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{92BEF84
C-CAE4-4BAA-8906-3D19E27EFD28}] SEQPACKET 20
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15701
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -20
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{92BEF84
C-CAE4-4BAA-8906-3D19E27EFD28}] DATAGRAM 20
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15702
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -20
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{D91CA61
4-03F1-421A-86C2-255DA5E2B0A5}] SEQPACKET 17
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15703
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -17
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{D91CA61
4-03F1-421A-86C2-255DA5E2B0A5}] DATAGRAM 17
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15704
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -17
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{B9FCF1F
4-B8D1-4449-8FCA-8E7CF7E28FAB}] SEQPACKET 13
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15705
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -13
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{B9FCF1F
4-B8D1-4449-8FCA-8E7CF7E28FAB}] DATAGRAM 13
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15706
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -13
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{81E011C
6-7BC0-4ABC-BA90-CD8DC152669B}] SEQPACKET 11
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15707
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -11
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{81E011C
6-7BC0-4ABC-BA90-CD8DC152669B}] DATAGRAM 11
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15708
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -11
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{129CEB5
4-508D-4F02-837B-F56EDDB76C15}] SEQPACKET 8
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15709
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -8
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{129CEB5
4-508D-4F02-837B-F56EDDB76C15}] DATAGRAM 8
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15710
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -8
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{5121C6D
3-E81C-4AD5-90AB-499821ADB9D4}] SEQPACKET 5
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15711
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -5
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{5121C6D
3-E81C-4AD5-90AB-499821ADB9D4}] DATAGRAM 5
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15712
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -5
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{CDCE1BC
E-2FF2-42A2-8783-CFCB2F0999A4}] SEQPACKET 1
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15713
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -1
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{CDCE1BC
E-2FF2-42A2-8783-CFCB2F0999A4}] DATAGRAM 1
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15714
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -1
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{28FF5F0
F-6CB1-4B99-BA32-79A546CF2EF8}] SEQPACKET 3
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15715
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -3
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{28FF5F0
F-6CB1-4B99-BA32-79A546CF2EF8}] DATAGRAM 3
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15716
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -3
Service Flags:                      0x20209
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{77A2FA9
8-966D-4CEA-939C-C4659C4E0F6F}] SEQPACKET 28
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15717
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        5
Protocol:                           -28
Service Flags:                      0x2000e
Protocol Chain Length:              1

Winsock Catalog Provider Entry
------------------------------------------------------
Entry Type:                         Base Service Provider
Description:                        MSAFD NetBIOS [\Device\NetBT_Tcpip6_{77A2FA9
8-966D-4CEA-939C-C4659C4E0F6F}] DATAGRAM 28
Provider ID:                        {8D5F1830-C273-11CF-95C8-00805F48A192}
Provider Path:                      %SystemRoot%\system32\mswsock.dll
Catalog Entry ID:                   15718
Version:                            2
Address Family:                     17
Max Address Length:                 20
Min Address Length:                 20
Socket Type:                        2
Protocol:                           -28
Service Flags:                      0x20209
Protocol Chain Length:              1

Name Space Provider Entry
------------------------------------------------------
Description:                        Network Location Awareness Legacy (NLAv1) Na
mespace
Provider ID:                        {6642243A-3BA8-4AA6-BAA5-2E0BD71FDD83}
Name Space:                         15
Active:                             1
Version:                            0


Name Space Provider Entry
------------------------------------------------------
Description:                        Tcpip
Provider ID:                        {22059D40-7E9E-11CF-AE5A-00AA00A7112B}
Name Space:                         12
Active:                             1
Version:                            0


Name Space Provider Entry
------------------------------------------------------
Description:                        NTDS
Provider ID:                        {3B2637EE-E580-11CF-A555-00C04FD8D4AC}
Name Space:                         32
Active:                             1
Version:                            0


Name Space Provider Entry
------------------------------------------------------
Description:                        E-mail Naming Shim Provider
Provider ID:                        {964ACBA2-B2BC-40EB-8C6A-A6DB40161CAE}
Name Space:                         37
Active:                             1
Version:                            0


Name Space Provider Entry
------------------------------------------------------
Description:                        PNRP Cloud Namespace Provider
Provider ID:                        {03FE89CE-766D-4976-B9C1-BB9BC42C7B4D}
Name Space:                         39
Active:                             1
Version:                            0


Name Space Provider Entry
------------------------------------------------------
Description:                        PNRP Name Namespace Provider
Provider ID:                        {03FE89CD-766D-4976-B9C1-BB9BC42C7B4D}
Name Space:                         38
Active:                             1
Version:                            0


Name Space Provider Entry
------------------------------------------------------
Description:                        Bluetooth Namespace
Provider ID:                        {06AA63E0-7D60-41FF-AFB2-3EE6D2D9392D}
Name Space:                         16
Active:                             1
Version:                            0


Name Space Provider Entry
------------------------------------------------------
Description:                        WindowsLive NSP
Provider ID:                        {4177DDE9-6028-479E-B7B7-03591A63FF3A}
Name Space:                         12
Active:                             1
Version:                            1


Name Space Provider Entry
------------------------------------------------------
Description:                        WindowsLive Local NSP
Provider ID:                        {229F2A2C-5F18-4A06-8F89-3A372170624D}
Name Space:                         19
Active:                             1
Version:                            1



I checked firewall is off, added node.exe as exception to AVG antivius, put off WAMP. I have this problem with Win7 only where I have various development stuff installed such as .NET libraries, WAMP, etc. When I tried running on XP through VM, node just worked fine but does not seem to work on Win7. Don't know what is problem or what thing is conflicting.


Regards,
SARFRAZ AHMED


Andreas M. Botsikas

não lida,
21 de fev. de 2012, 10:13:1221/02/2012
para nod...@googlegroups.com

Have you tried to hit localhost instead of 127.0.0.1? I have the same problem when I run node-inspector and this did the trick for me.

 

Sarfraz Ahmed

não lida,
21 de fev. de 2012, 10:24:0021/02/2012
para nod...@googlegroups.com
Yes I tried that, even that does not work :(


Regards,
SARFRAZ AHMED


On Tue, Feb 21, 2012 at 8:13 PM, Andreas M. Botsikas <andreas...@gmail.com> wrote:

Have you tried to hit localhost instead of 127.0.0.1? I have the same problem when I run node-inspector and this did the trick for me.

 

--

Bert Belder

não lida,
21 de fev. de 2012, 13:35:5821/02/2012
para nodejs
You might be hitting a windows issue described here:
http://support.microsoft.com/kb/2568167
Don't worry, we will release a workaround soon.
> Version: ...
>
> read more »

Sarfraz Ahmed

não lida,
21 de fev. de 2012, 14:08:1221/02/2012
para nod...@googlegroups.com
Thanks I hope so.  Checking that link out..



Regards,
SARFRAZ AHMED


Sarfraz Ahmed

não lida,
21 de fev. de 2012, 15:09:2721/02/2012
para nod...@googlegroups.com
I only see last console.log response not others:

// app.js
var http = require('http');

http.createServer(function (req, res) {
  console.log('got a request'); // this does not show up
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Hello World\n');
  console.log('got a request here'); // this does not show up
}).listen(8000, "127.0.0.1");

console.log('Server running at http://127.0.0.1:8000/');  // this is shown only


Regards,
SARFRAZ AHMED

Sarfraz Ahmed

não lida,
21 de fev. de 2012, 22:51:5321/02/2012
para nod...@googlegroups.com
They have fixed the issue, asked me to download new exe from here:



It works like charm now, awsome !. Thanks everyone !


Regards,
SARFRAZ AHMED
Responder a todos
Responder ao autor
Encaminhar
0 nova mensagem