3 Commits

Author SHA1 Message Date
21847db9fd readme 2017-02-11 13:56:08 +13:00
b8122710f5 patch a crash on incomplete supplied UserIP2 2017-02-11 13:55:20 +13:00
f8c0fc54d8 Added tag release-0.13 for changeset 3ee0f4ea5142 2017-02-09 19:31:24 +13:00
3 changed files with 9 additions and 0 deletions

View File

@@ -15,3 +15,4 @@ e7c2c71ef24b386add728fad35fff4a996fccbac libnmdc-r9
3ecc037cf2d7080572fe87c2e39ecd153fb0e947 libnmdc-r10
5149ffe70ea8475e480b682345b31aa45a3352db release-0.11
22b156a6fc2f6161765317f4ec9ab3731a26e0e2 release-0.12
3ee0f4ea5142d66079a9500bdcd48a53bdcf362f release-0.13

View File

@@ -253,6 +253,11 @@ func (this *HubConnection) processProtocolMessage(message string) {
nextIPPair:
for _, pair := range pairs {
parts := strings.SplitN(pair, " ", 2)
if len(parts) != 2 {
// ????
continue nextIPPair
}
ip2nick := parts[0]
ip2addr := parts[1]

View File

@@ -9,6 +9,9 @@ Tags: nmdc
=CHANGELOG=
2017-02-09 0.14
- Fix an issue with crashing on malformed IP addresses supplied by the hub
2017-02-09 0.13
- Feature: Implement UserIP2 extension, to retrieve IP addresses of other users
- Enhancement: Implement QuickList extension (reduce one network roundtrip during initial connection)