Parse and persist ServerCodecModeSupport attribute for hosts

This commit is contained in:
Cameron Gutman
2018-06-02 13:10:10 -07:00
parent 59506a2364
commit 2d2f71dcab
4 changed files with 9 additions and 0 deletions

View File

@@ -39,6 +39,11 @@
} else {
host.pairState = PairStateUnknown;
}
NSString *serverCodecModeString = [self getStringTag:@"ServerCodecModeSupport"];
if (serverCodecModeString != nil) {
host.serverCodecModeSupport = [[serverCodecModeString trim] intValue];
}
}
@end