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: flags: none; facility: 0 (FACILITY_NULL); error: 546 (more)

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