IP-addresses stored as int results in overflow?

后端 未结 11 489
無奈伤痛
無奈伤痛 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条回答
  •  名媛妹妹
    2021-02-02 13:25

    You shifted left to get the original number - which is just 4 sets of bits regardless of the sign.

    Shift right to get back to the IP. Doesn't matter what the sign is.

提交回复
热议问题