IP-addresses stored as int results in overflow?

后端 未结 11 586
無奈伤痛
無奈伤痛 2021-02-02 12:27

I\'m writing a chat-server in node.js, and I want to store connected users IP-addresses in a mysql database as (unsigned) integers. I have written a javascript method to convert

11条回答
  •  萌比男神i
    2021-02-02 13:29

    The result of the "<<" operator is always a signed, 32-bit integer, as per the spec.

    When you shift back, use ">>>" to do an unsigned right shift.

提交回复
热议问题