Patch by Yavor Doganov to send message id in port messages

This commit is contained in:
Richard Frith-Macdonald 2018-02-07 07:02:40 +00:00
parent 033b921903
commit 3edc201239
2 changed files with 9 additions and 0 deletions

View file

@ -71,6 +71,7 @@
self = [super init];
if (self != nil)
{
_msgid = 0;
_send = RETAIN(aPort);
_recv = RETAIN(anotherPort);
_components = [[NSMutableArray allocWithZone: [self zone]]
@ -97,6 +98,7 @@
- (BOOL) sendBeforeDate: (NSDate*)when
{
return [_send sendBeforeDate: when
msgid: _msgid
components: _components
from: _recv
reserved: 0];