mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-01 23:35:59 +00:00
Display error codes when the connection is terminated
This commit is contained in:
parent
951289a802
commit
77485f2d8d
@ -439,9 +439,21 @@
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
{
|
||||||
|
NSString* errorString;
|
||||||
|
if (abs(errorCode) > 1000) {
|
||||||
|
// We'll assume large errors are hex values
|
||||||
|
errorString = [NSString stringWithFormat:@"%08X", (uint32_t)errorCode];
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
// Smaller values will just be printed as decimal (probably errno.h values)
|
||||||
|
errorString = [NSString stringWithFormat:@"%d", errorCode];
|
||||||
|
}
|
||||||
|
|
||||||
title = @"Connection Terminated";
|
title = @"Connection Terminated";
|
||||||
message = @"The connection was terminated";
|
message = [NSString stringWithFormat: @"The connection was terminated\n\nError code: %@", errorString];
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit 3ed3ba62534ce06c1b97fec46722969e7710fee6
|
Subproject commit 3aae4cdc595ff6f428a2abbfb9d5055c03423bc2
|
Loading…
x
Reference in New Issue
Block a user