7 lines
201 B
Go
7 lines
201 B
Go
package mxgateway
|
|
|
|
// StatusSucceeded reports whether an MXSTATUS_PROXY entry represents success.
|
|
func StatusSucceeded(status *MxStatusProxy) bool {
|
|
return status == nil || status.GetSuccess() != 0
|
|
}
|