WSABLOBATTRLIST

Contains the attribute list.

Service:Winsock 2

Syntax

  #include <winsock/nwws2ext.h>
  
  typedef struct _WSABlobAttrList 
  {
     DWORD         dwSignature; 
     DWORD         dwAttrCount; 
     WSAATTRINFO   lpAttributes; 
  } WSABLOBATTRLIST, *LPWSABLOBATTRLIST;
  

Fields

dwSignature

Specifies the format of the attribute names and values:

  • 0xb10bea1a WS_ATTRLIST_ASCII
  • 0xb10bea10 WS_ATTRLIST_UNICODE
dwAttrCount

Specifies the number of WSAATTRINFO structures presented in the blob.

lpAttributes

Points to the first WSAATTRINFO structure.

Remarks

When the blob is returned by WSALookupServiceNext (see Windows* Sockets 2 Application Programming Interface, the WSAATTRINFO structures immediately follow the WSABLOBATTRLIST structure. The attribute names and values pointed to by the WSAATTRINFO structures follow the array of WSAATTRINFO structures.