This commit is contained in:
crusader 2017-11-23 18:18:37 +09:00
parent f60a2f912a
commit 99e3263594
2 changed files with 16 additions and 5 deletions

View File

@ -110,17 +110,28 @@ func newClientCodecResponseOrNotify(r io.Reader, encoder encode.Encoder) (protoc
ccrn := retainClientCodecResponseOrNotify()
if res, err := newClientCodecResponse(raw); nil != err {
notify, err := newClientCodecNotify(raw)
if notify, err := newClientCodecNotify(raw); nil != err {
res, err := newClientCodecResponse(raw)
if nil != err {
releaseClientCodecResponseOrNotify(ccrn)
return nil, fmt.Errorf("Is not response or notification [%v]", raw)
}
ccrn.notify = notify
} else {
ccrn.response = res
} else {
ccrn.notify = notify
}
// if res, err := newClientCodecResponse(raw); nil != err {
// notify, err := newClientCodecNotify(raw)
// if nil != err {
// releaseClientCodecResponseOrNotify(ccrn)
// return nil, fmt.Errorf("Is not response or notification [%v]", raw)
// }
// ccrn.notify = notify
// } else {
// ccrn.response = res
// }
return ccrn, nil
}

View File

@ -23,7 +23,7 @@ func newClientCodecNotify(raw json.RawMessage) (protocol.ClientCodecNotify, erro
}
if "" == ccn.notify.Method {
releaseClientCodecNotify(ccn)
return nil, fmt.Errorf("This is not ClientNotify")
return nil, fmt.Errorf("This is not Client Notify")
}
if ccn.notify.Version != Version {