Skip to content

Commit

Permalink
Catch Paired message even if it is ignored now to prevent returning an
Browse files Browse the repository at this point in the history
error to the user on receiving this message.
  • Loading branch information
zbalaton committed Jul 13, 2016
1 parent 4397b33 commit fe6e9de
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/usbmuxd-proto.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ enum usbmuxd_msgtype {
MESSAGE_LISTEN = 3,
MESSAGE_DEVICE_ADD = 4,
MESSAGE_DEVICE_REMOVE = 5,
//???
MESSAGE_DEVICE_PAIRED = 6,
//???
MESSAGE_PLIST = 8,
};
Expand Down
20 changes: 18 additions & 2 deletions src/libusbmuxd.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
#endif

#ifdef WIN32
#include <windows.h>
#include <winsock2.h>
#include <windows.h>
#define sleep(x) Sleep(x*1000)
#ifndef EPROTO
#define EPROTO 134
Expand Down Expand Up @@ -268,8 +268,24 @@ static int receive_packet(int sfd, struct usbmuxd_header *header, void **payload
hdr.length = sizeof(hdr) + sizeof(dwval);
hdr.message = MESSAGE_DEVICE_REMOVE;
}
} else if (strcmp(message, "Paired") == 0) {
/* device pair message */
uint32_t dwval = 0;
plist_t n = plist_dict_get_item(plist, "DeviceID");
if (n) {
plist_get_uint_val(n, &val);
*payload = malloc(sizeof(uint32_t));
dwval = val;
memcpy(*payload, &dwval, sizeof(dwval));
hdr.length = sizeof(hdr) + sizeof(dwval);
hdr.message = MESSAGE_DEVICE_PAIRED;
}
} else {
DEBUG(1, "%s: Unexpected message '%s' in plist!\n", __func__, message);
char *xml = NULL;
uint32_t len = 0;
plist_to_xml(plist, &xml, &len);
DEBUG(1, "%s: Unexpected message '%s' in plist:\n%s\n", __func__, message, xml);
free(xml);
free(message);
plist_free(plist);
return -EBADMSG;
Expand Down

0 comments on commit fe6e9de

Please sign in to comment.