laftur - 2013-07-24

In the UDT4 manual, under the tutorial section, on the page 'configure UDT options'.
The function calls are shown like this:

UDT::getsockopt(u, UDT_SNDSYN, 0, &block, &size);
UDT::setsockopt(u, UDT_SNDSYN, 0, &block, sizeof(bool));

When shouldn't they be like this?:

UDT::getsockopt(u, 0, UDT_SNDSYN, &block, &size);
UDT::setsockopt(u, 0, UDT_SNDSYN, &block, sizeof(bool));