[MS-FASP]: Firewall and Advanced Security Protocol

This topic lists Errata found in [MS-FASP] since it was last published. Since this topic is updated frequently, we recommend that you subscribe to this RSS feed to receive update notifications.

Errata are subject to the same terms as the Open Specifications documentation referenced.

RSS

To view a PDF file of the errata for the previous versions of this document, see the following ERRATA Archives:

July 18, 2016 - Download

March 13, 2019 - Download

April 29, 2022 - Download

Errata below are for Protocol Document Version v31.0 – 2022/04/29.

Errata Published*

Description

2022/09/20

Section 3.1.4 Message Processing Events and Sequencing

Description:  Removed duplicate instances of 'unsigned' designator in subsections 3.1.4.59, 3.1.4.60, 3.1.4.62, 3.1.4.67, 3.1.4.68, 3.1.4.69, and 3.1.4.70.

Section 3.1.6 Other Local Events

Description: Added abstract interface definitions from subsections 3.1.6.1, 3.1.6.2, 3.1.6.3, 3.1.6.4, 3.1.6.5, 3.1.6.6, 3.1.6.7, and 3.1.6.8 to Section 6 Full IDL.

Section 6 Full IDL

Added policy store handle to the Full IDL.

Added abstract interfaces to the Full IDL (definitions from sections 3.1.6.1, 3.1.6.2, 3.1.6.3, 3.1.6.4, 3.1.6.5, 3.1.6.6, 3.1.6.7, and 3.1.6.8).

Replaced 'typedef struct _tag_FW_QUERY_CONDITIONS' in IDL with actual code instance.

2022/09/20

In Section 2.2.92: FW_QUERY_CONDITIONS

Description: Updated definition of FW_QUERY_CONDITIONS struct.

Changed from:

typedef struct _tag_FW_QUERY_CONDITIONS {;

unsigned LONG dwNumEntries;

[size_is(dwNumEntries)] FW_QUERY_CONDITION* pAndedConditions;

} FW_QUERY_CONDITIONS, *PFW_QUERY CONDITIONS;

dwNumEntries:  Specifies the number of query conditions that the structure contains.

pAndedConditions:  A pointer to an array of FW_QUERY_CONDITIONS elements, which are all logically AND'd together. The number of elements is given by dwNumEntries.

Changed to:

typedef struct_tag_FW_QUERY_CONDITIONS

{

   DWORD dwNumEntries;

   [size_is(dwNumEntries)]

   FW_QUERY_CONDITION *AndedConditions;

} FW_QUERY_CONDITIONS, *PFW_QUERY_CONDITIONS;

dwNumEntries:  Specifies the number of query conditions that the structure contains.

AndedConditions:  A pointer to an array of FW_QUERY_CONDITIONS elements, which are to be logically AND'd together by the server.

Section 6 Appendix A Full IDL

Changed from:

Identical to the above.

Changed to:

Identical to the above.