Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 21847db9fd | |||
| b8122710f5 | |||
| f8c0fc54d8 |
1
.hgtags
1
.hgtags
@@ -15,3 +15,4 @@ e7c2c71ef24b386add728fad35fff4a996fccbac libnmdc-r9
|
|||||||
3ecc037cf2d7080572fe87c2e39ecd153fb0e947 libnmdc-r10
|
3ecc037cf2d7080572fe87c2e39ecd153fb0e947 libnmdc-r10
|
||||||
5149ffe70ea8475e480b682345b31aa45a3352db release-0.11
|
5149ffe70ea8475e480b682345b31aa45a3352db release-0.11
|
||||||
22b156a6fc2f6161765317f4ec9ab3731a26e0e2 release-0.12
|
22b156a6fc2f6161765317f4ec9ab3731a26e0e2 release-0.12
|
||||||
|
3ee0f4ea5142d66079a9500bdcd48a53bdcf362f release-0.13
|
||||||
|
|||||||
@@ -253,6 +253,11 @@ func (this *HubConnection) processProtocolMessage(message string) {
|
|||||||
nextIPPair:
|
nextIPPair:
|
||||||
for _, pair := range pairs {
|
for _, pair := range pairs {
|
||||||
parts := strings.SplitN(pair, " ", 2)
|
parts := strings.SplitN(pair, " ", 2)
|
||||||
|
if len(parts) != 2 {
|
||||||
|
// ????
|
||||||
|
continue nextIPPair
|
||||||
|
}
|
||||||
|
|
||||||
ip2nick := parts[0]
|
ip2nick := parts[0]
|
||||||
ip2addr := parts[1]
|
ip2addr := parts[1]
|
||||||
|
|
||||||
|
|||||||
@@ -9,6 +9,9 @@ Tags: nmdc
|
|||||||
|
|
||||||
=CHANGELOG=
|
=CHANGELOG=
|
||||||
|
|
||||||
|
2017-02-09 0.14
|
||||||
|
- Fix an issue with crashing on malformed IP addresses supplied by the hub
|
||||||
|
|
||||||
2017-02-09 0.13
|
2017-02-09 0.13
|
||||||
- Feature: Implement UserIP2 extension, to retrieve IP addresses of other users
|
- Feature: Implement UserIP2 extension, to retrieve IP addresses of other users
|
||||||
- Enhancement: Implement QuickList extension (reduce one network roundtrip during initial connection)
|
- Enhancement: Implement QuickList extension (reduce one network roundtrip during initial connection)
|
||||||
|
|||||||
Reference in New Issue
Block a user