summaryrefslogtreecommitdiff
path: root/CyteKit
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2017-03-10 22:34:52 -0800
committerJay Freeman (saurik) <saurik@saurik.com>2017-03-10 22:34:52 -0800
commitd60043e4dfdcd8321f94720ef885c55ad59a2b3d (patch)
tree424dd0054b0d1208a2eca11b26ab0737e2cfc5a6 /CyteKit
parent2db33ea12fcfa87654ecf0ba54db21786f1fe821 (diff)
Support compound user-agents using CyteInitialize.
Diffstat (limited to 'CyteKit')
-rw-r--r--CyteKit/extern.h2
-rw-r--r--CyteKit/extern.mm4
2 files changed, 3 insertions, 3 deletions
diff --git a/CyteKit/extern.h b/CyteKit/extern.h
index 562fb26..e019227 100644
--- a/CyteKit/extern.h
+++ b/CyteKit/extern.h
@@ -33,7 +33,7 @@ extern const char *System_;
bool CyteIsReachable(const char *name);
-void CyteInitialize(NSString *app, NSString *version);
+void CyteInitialize(NSString *agent);
static inline double Retina(double value) {
value *= ScreenScale_;
diff --git a/CyteKit/extern.mm b/CyteKit/extern.mm
index aad3626..42317e1 100644
--- a/CyteKit/extern.mm
+++ b/CyteKit/extern.mm
@@ -58,7 +58,7 @@ bool CyteIsReachable(const char *name) {
;
}
-void CyteInitialize(NSString *app, NSString *version) {
+void CyteInitialize(NSString *agent) {
UIScreen *screen([UIScreen mainScreen]);
if ([screen respondsToSelector:@selector(scale)])
ScreenScale_ = [screen scale];
@@ -96,7 +96,7 @@ void CyteInitialize(NSString *app, NSString *version) {
safari = [info objectForKey:@"CFBundleVersion"];
}
- NSString *agent([NSString stringWithFormat:@"%@/%@ CyF/%.2f", app, version, kCFCoreFoundationVersionNumber]);
+ agent = [NSString stringWithFormat:@"%@ CyF/%.2f", agent, kCFCoreFoundationVersionNumber];
if (RegEx match = RegEx("([0-9]+(\\.[0-9]+)+).*", safari))
agent = [NSString stringWithFormat:@"Safari/%@ %@", match[1], agent];