зеркало из https://github.com/mozilla/pjs.git
Bug 606609: Make script to extract protocol/message from msgtype numbers part of m-c. r=bsmedberg a=npotb
This commit is contained in:
Родитель
0e5357d4c0
Коммит
f4300e2869
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
import sys
|
||||
|
||||
msgid = int(sys.argv[1])
|
||||
protocol = (msgid >> 16)
|
||||
msg = (msgid - (protocol << 16))
|
||||
|
||||
print 'protocol', protocol, 'message', msg
|
Загрузка…
Ссылка в новой задаче