Windows error 0x00000222, 546

Detailed Error Information

PORT_MESSAGE_TOO_LONG[1]

MessageLength of message passed to NtRequestPort or NtRequestWaitReplyPort was longer than the maximum message allowed by the port.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x80070222.

HRESULT analysis[2]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

This code indicates success, rather than an error. This may not be the correct interpretation of this code, or possibly the program is handling errors incorrectly.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[2][1]
DescriptionThe default facility code.[2][1]
Error Code546 (0x0222)

Questions

3votes
2answers

Use awk to get value of the parameter in the array

journalctl -b showed me log like this: something something somethng aaa: 0x00000111 bbb: 0x00000222 ccc: 0x00000333 ddd: 0x00000444 something something somethng How to get value of parameter 'ccc'? For example: journalctl -b | awk '/ccc:/{print $1}' showed first word, but I need to get first word after 'ccc': 0x00000333 read more
bash
awk
grep
journal
0votes
1answer

How to block incoming ESP traffic with ip6tables

I would like to test my firewall configuration when IPsec traffic is received in my host and I also would like to know how to handle it (drop it at first). For testing reasons, I have deployed two containers (with ipv6 enabled) and then I am creating an ESP packet [...] read more
ipsec
ip6tables

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0