mirror of
https://github.com/zeromq/libzmq.git
synced 2025-02-01 14:55:59 +01:00
c8e62cb2e0
Solution: add them and install them where oss-fuzz expects them
45 lines
2.1 KiB
Plaintext
45 lines
2.1 KiB
Plaintext
# ZMTP magic binary streams
|
|
# 1.0 https://rfc.zeromq.org/spec/13/
|
|
# 2.0 https://rfc.zeromq.org/spec/15/
|
|
# 3.1 https://rfc.zeromq.org/spec/37/
|
|
# curve https://rfc.zeromq.org/spec/26/
|
|
signature="\xFF\x00\x00\x00\x00\x00\x00\x00\x00\x7F"
|
|
signature_v1="\x01\x00"
|
|
version_v2="\x01"
|
|
version_v3="\x03\x00"
|
|
version_v3_1="\x03\x01"
|
|
mechanism_null="\x4E\x55\x4C\x4C\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
|
mechanism_curve="\x43\x55\x52\x56\x45\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
|
short_command="\x04"
|
|
long_command="\x06"
|
|
ready="\x05\x52\x45\x41\x44\x59"
|
|
error="\x05\x45\x52\x52\x4F\x52"
|
|
identity="\x08\x49\x64\x65\x6E\x74\x69\x74\x79"
|
|
socket_type="\x0B\x53\x6F\x63\x6B\x65\x74\x2D\x54\x79\x70\x65"
|
|
dealer="\x06\x44\x45\x41\x4C\x45\x52"
|
|
router="\x06\x52\x4F\x55\x54\x45\x52"
|
|
pub="\x03\x50\x55\x42"
|
|
sub="\x03\x53\x55\x42"
|
|
xpub="\x04\x58\x50\x55\x42"
|
|
xsub="\x04\x58\x53\x55\x42"
|
|
req="\x03\x52\x45\x51"
|
|
rep="\x03\x52\x45\x50"
|
|
push="\x04\x50\x55\x53\x48"
|
|
pull="\x04\x50\x55\x4C\x4C"
|
|
pair="\x04\x50\x41\x49\x52"
|
|
client="\x05\x43\x4C\x49\x45\x4E\x54"
|
|
server="\x05\x53\x45\x52\x56\x45\x52"
|
|
radio="\x05\x52\x41\x44\x49\x4F"
|
|
dish="\x04\x44\x49\x53\x48"
|
|
scatter="\x06\x53\x43\x41\x54\x54\x45\x52"
|
|
gather="\x06\x47\x41\x54\x48\x45\x52"
|
|
subscribe="\x09\x53\x55\x42\x53\x43\x52\x49\x42\x45"
|
|
cancel="\x06\x43\x41\x4E\x43\x45\x4C"
|
|
join="\x04\x4A\x4F\x49\x4E"
|
|
leave="\x05\x43\x41\x4E\x43\x45\x4C"
|
|
ping="\x04\x50\x49\x4E\x47"
|
|
pong="\x04\x50\x4F\x4E\x47"
|
|
hello="\x05\x48\x45\x4C\x4C\x4F\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
|
welcome="\x07\x57\x45\x4C\x43\x4F\x4D\x45"
|
|
initiate="\x08\x49\x4E\x49\x54\x49\x41\x54\x45"
|
|
message="\x07\x4D\x45\x53\x53\x41\x47\x45" |