File tree 2 files changed +13
-0
lines changed
2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,12 @@ + (BOOL)sendHeaderByte:(char)txHeaderByte
42
42
}
43
43
} while (!remotePort) ;
44
44
45
+ /* If the system logs a message like this:
46
+ "*** CFMessagePort: dropping corrupt reply Mach message (***)"
47
+ Check out this:
48
+ https://github.com/opensource-apple/CF/blob/master/CFMessagePort.c
49
+ to decode the (***) */
50
+
45
51
if (!remotePort) {
46
52
ok = NO ;
47
53
result = SSYInterappClientErrorCantFindReceiver ;
Original file line number Diff line number Diff line change @@ -181,6 +181,13 @@ - (id)initWithPortName:(NSString*)portName
181
181
SSYInterappServerCallBackCreateData,
182
182
&context,
183
183
NULL ) ;
184
+
185
+ /* If the system logs a message like this:
186
+ "*** CFMessagePort: dropping corrupt reply Mach message (***)"
187
+ Check out this:
188
+ https://github.com/opensource-apple/CF/blob/master/CFMessagePort.c
189
+ to decode the (***) */
190
+
184
191
if (_port) {
185
192
break ;
186
193
}
You can’t perform that action at this time.
0 commit comments