mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2026-02-16 02:20:53 +00:00
85 lines
2.2 KiB
Objective-C
85 lines
2.2 KiB
Objective-C
//
|
|
// Utils.m
|
|
// Moonlight
|
|
//
|
|
// Created by Diego Waxemberg on 10/20/14.
|
|
// Copyright (c) 2014 Moonlight Stream. All rights reserved.
|
|
//
|
|
|
|
#import "Utils.h"
|
|
|
|
#include <arpa/inet.h>
|
|
#include <netinet/in.h>
|
|
#include <netdb.h>
|
|
|
|
@implementation Utils
|
|
NSString *const deviceName = @"roth";
|
|
|
|
+ (NSData*) randomBytes:(NSInteger)length {
|
|
char* bytes = malloc(length);
|
|
arc4random_buf(bytes, length);
|
|
NSData* randomData = [NSData dataWithBytes:bytes length:length];
|
|
free(bytes);
|
|
return randomData;
|
|
}
|
|
|
|
+ (NSData*) hexToBytes:(NSString*) hex {
|
|
unsigned long len = [hex length];
|
|
NSMutableData* data = [NSMutableData dataWithCapacity:len / 2];
|
|
char byteChars[3] = {'\0','\0','\0'};
|
|
unsigned long wholeByte;
|
|
|
|
const char *chars = [hex UTF8String];
|
|
int i = 0;
|
|
while (i < len) {
|
|
byteChars[0] = chars[i++];
|
|
byteChars[1] = chars[i++];
|
|
wholeByte = strtoul(byteChars, NULL, 16);
|
|
[data appendBytes:&wholeByte length:1];
|
|
}
|
|
|
|
return data;
|
|
}
|
|
|
|
+ (NSString*) bytesToHex:(NSData*)data {
|
|
const unsigned char* bytes = [data bytes];
|
|
NSMutableString *hex = [[NSMutableString alloc] init];
|
|
for (int i = 0; i < [data length]; i++) {
|
|
[hex appendFormat:@"%02X" , bytes[i]];
|
|
}
|
|
return hex;
|
|
}
|
|
|
|
+ (BOOL)isActiveNetworkVPN {
|
|
NSDictionary *dict = CFBridgingRelease(CFNetworkCopySystemProxySettings());
|
|
NSArray *keys = [dict[@"__SCOPED__"] allKeys];
|
|
for (NSString *key in keys) {
|
|
if ([key containsString:@"tap"] ||
|
|
[key containsString:@"tun"] ||
|
|
[key containsString:@"ppp"] ||
|
|
[key containsString:@"ipsec"]) {
|
|
return YES;
|
|
}
|
|
}
|
|
return NO;
|
|
}
|
|
|
|
+ (void) addHelpOptionToDialog:(UIAlertController*)dialog {
|
|
#if !TARGET_OS_TV
|
|
// tvOS doesn't have a browser
|
|
[dialog addAction:[UIAlertAction actionWithTitle:@"Help" style:UIAlertActionStyleDefault handler:^(UIAlertAction* action){
|
|
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://github.com/moonlight-stream/moonlight-docs/wiki/Troubleshooting"]];
|
|
}]];
|
|
#endif
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation NSString (NSStringWithTrim)
|
|
|
|
- (NSString *)trim {
|
|
return [self stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
|
|
}
|
|
|
|
@end
|