From baaa88714356c519a641b401988a023d55af93cf Mon Sep 17 00:00:00 2001 From: sbosse Date: Mon, 21 Jul 2025 23:29:32 +0200 Subject: [PATCH] Mon 21 Jul 22:43:21 CEST 2025 --- .../src/ios/ChromeSocketsTcp.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 js/ui/cordova/plugins/cordova-plugin-chrome-apps-sockets-tcp/src/ios/ChromeSocketsTcp.h diff --git a/js/ui/cordova/plugins/cordova-plugin-chrome-apps-sockets-tcp/src/ios/ChromeSocketsTcp.h b/js/ui/cordova/plugins/cordova-plugin-chrome-apps-sockets-tcp/src/ios/ChromeSocketsTcp.h new file mode 100644 index 0000000..59ca5f3 --- /dev/null +++ b/js/ui/cordova/plugins/cordova-plugin-chrome-apps-sockets-tcp/src/ios/ChromeSocketsTcp.h @@ -0,0 +1,14 @@ +// Copyright (c) 2014 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#import +#import + +@class GCDAsyncSocket; + +@interface ChromeSocketsTcp : CDVPlugin + +- (NSUInteger)registerAcceptedSocket:(GCDAsyncSocket*)theSocket; + +@end