Search results for

“eskimo”

37,165 results found

Post

Replies

Boosts

Views

Activity

Reply to NEProxySettings.matchDomains = [""] — supported catch-all when no IP routes are claimed?
[quote='822733021, Kesava_jawaharlal_fp1, /thread/822733, /profile/Kesava_jawaharlal_fp1'] We are building a VPN using NEPacketTunnelProvider where the intent is to route HTTP/S traffic through a local proxy server [/quote] To what end? My experience is that most folks on this path are trying to implement a content filter on iOS. We don’t support the use of packet tunnel provider for that. See TN3120 Expected use cases for Network Extension packet tunnel providers. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Apr ’26
Reply to MIDI Drag-and-drop to Logic Pro via NSItemProvider
I don’t have a lot of insight into this — UI frameworks aren’t really my thing — but M78 posted their bug number (FB18243622) upthread, and from that I was able to see this is reported as fixed in Logic Pro 12.0. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: UI Frameworks SubTopic: General Tags:
Apr ’26
Reply to Notarization stuck in “In Progress” for all submissions since April 4th
antho2305, I discussed your case with the notary team and the conclusion is that: While there were some transient issues caused by oddities at our end… This all falls into the category of the notary service ‘learning’ how to recognise your submissions. Your submissions should be flowing normally now, but if you continue to have problems please reply here with the details and I can take another look. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Apr ’26
Reply to A new coder wanting to learn
[quote='884303022, ParinK124, /thread/822456?answerId=884303022#884303022, /profile/ParinK124'] it is a bit slow. [/quote] Which bit? The Swift Playground app? Or your code running within the Swift Playground app? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Apr ’26
Reply to Port forwarding with VZVmnetNetworkDeviceAttachment
[quote='822658021, rbmanian75, /thread/822658, /profile/rbmanian75'] Is there anything i am doing wrong? [/quote] It’s hard to say without more context. Specifically: What network have you assigned to the interface? Has the guest successfully acquired an IP address? Does that IP address match the IP address you’re passing in here (ipAddr)? What value as you using for guestPort? Are you sure that the guest is listening on the port? If you run a command on the guest to connect to it’s IP address and port (so ipAddr and guestPort), does that go through? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: Core OS Tags:
Apr ’26
Reply to Programmatic IP Discovery for VZVirtualMachine in an App Store Sandbox
[quote='884242022, rbmanian75, /thread/822025?answerId=884242022#884242022, /profile/rbmanian75'] But i dont want to have a different subnet for each vm. [/quote] Why is that? Are you expecting the VMs to communicate with each other? Or is there some other reason? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: Core OS Tags:
Apr ’26
Reply to Provisioning profiles marked "Ineligible" for Contactless Pass Provisioning even though entitlement is present in profile
[quote='884233022, DTS Engineer, /thread/821961?answerId=884233022#884233022'] I’m talking with the right folks about this [/quote] I now have specific advice for folks in this situation: Please re-apply for the Contactless Pass Provisioning capability. The approval folks will then assign you the Contactless Pass Provisioning (deprecated) capability, which you can use right now. Once this Xcode issue is resolved (FB22439399), they will assign you the newer Contactless Pass Provisioning (SharableCredential) to use going forward. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Apr ’26
Reply to Calling SecKeychainUnlock with a locked keychain and an invalid password returns errSecSuccess on macOS 26.4
[quote='884266022, oleksandr91, /thread/821894?answerId=884266022#884266022, /profile/oleksandr91'] Does it mean that Keychain Access is using some other private API that we are not allowed to use? [/quote] Private APIs aren’t thing. Rather, there are APIs and there are implementation details (-: Keychain Access is built in to the system, so it isn’t restricted to APIs. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Privacy & Security SubTopic: General Tags:
Apr ’26
Reply to Keychain errSecItemNotFound
[quote='884334022, iceboy, /thread/822626?answerId=884334022#884334022, /profile/iceboy'] I am using the iOS platform. [/quote] Cool. iOS only has one keychain implementation, equivalent to the data protection keychain on macOS, and that simplifies your life. [quote='884334022, iceboy, /thread/822626?answerId=884334022#884334022, /profile/iceboy'] I did not set kSecAttrAccount and kSecAttrAccessible when saving data on older iOS versions. [/quote] kSecAttrAccessible is unlikely to be the problem: Your current code leaves out that attribute from the query and return dictionary you pass to SecItemCopyMatching. In that context a missing attribute is treated as wildcard, so it’ll make any item regardless of what it’s kSecAttrAccessible value is. If the value is not present in the add dictionary you pass to SecItemAdd, the system will default to using no value for kSecAttrAccessible and, assuming there’s no kSecAttrAccessGroup attribute, it’ll place the item in your app’s default keychain access group. Sharing acc
Apr ’26
Reply to DHCP broken when device wakeup
[quote='884284022, Richie_Wu, /thread/820894?answerId=884284022#884284022, /profile/Richie_Wu'] our app was built on top of transparent proxy provider [/quote] OK. [quote='884284022, Richie_Wu, /thread/820894?answerId=884284022#884284022, /profile/Richie_Wu'] However issue still been reported from customers [/quote] Are you able to reproduce this yourself? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Apr ’26
Reply to Bug: Wi-Fi Aware (NAN) Subscriber Mode: nwPath.availableInterfaces Does Not Include nan0 Interface After Successful Peer Connection
[quote='884320022, wu_aaron, /thread/818708?answerId=884320022#884320022, /profile/wu_aaron'] Does Wi-Fi Aware currently support the QUIC protocol? [/quote] This is a very different question from the one that started this thread. Please start a new thread for it. If you use the same subtopic as this thread, I’ll be sure to see it go by. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Apr ’26
Reply to macOS DNS Proxy system extension makes device stop processing MDM commands until reboot
It’s likely that I’m going to have you file a bug about this, but before I do that I wanted to propose a diagnostic test. You wrote: [quote='822673021, Leo_Nagano, /thread/822673, /profile/Leo_Nagano'] general network access (Safari etc.) continues to work. [/quote] which certainly limits the scope for problems here. However, MDM relies on push notifications, as you’re aware, so I’m curious whether they’re working. If you get a Mac into this state and then send it a user-visible push notification, does that get through? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Apr ’26
Reply to NEProxySettings.matchDomains = [""] — supported catch-all when no IP routes are claimed?
[quote='822733021, Kesava_jawaharlal_fp1, /thread/822733, /profile/Kesava_jawaharlal_fp1'] We are building a VPN using NEPacketTunnelProvider where the intent is to route HTTP/S traffic through a local proxy server [/quote] To what end? My experience is that most folks on this path are trying to implement a content filter on iOS. We don’t support the use of packet tunnel provider for that. See TN3120 Expected use cases for Network Extension packet tunnel providers. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
Apr ’26
Reply to MIDI Drag-and-drop to Logic Pro via NSItemProvider
I don’t have a lot of insight into this — UI frameworks aren’t really my thing — but M78 posted their bug number (FB18243622) upthread, and from that I was able to see this is reported as fixed in Logic Pro 12.0. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: UI Frameworks SubTopic: General Tags:
Replies
Boosts
Views
Activity
Apr ’26
Reply to Notarization stuck in “In Progress” for all submissions since April 4th
antho2305, I discussed your case with the notary team and the conclusion is that: While there were some transient issues caused by oddities at our end… This all falls into the category of the notary service ‘learning’ how to recognise your submissions. Your submissions should be flowing normally now, but if you continue to have problems please reply here with the details and I can take another look. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
Apr ’26
Reply to A new coder wanting to learn
[quote='884303022, ParinK124, /thread/822456?answerId=884303022#884303022, /profile/ParinK124'] it is a bit slow. [/quote] Which bit? The Swift Playground app? Or your code running within the Swift Playground app? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
Apr ’26
Reply to autologin required inconsistent for virtualization
Are you talking about auto login on the guest? Or the host? Are you trying these operations from a GUI login session? Or doing something outside of a GUI login session, for example, from a launchd daemon? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Apr ’26
Reply to Port forwarding with VZVmnetNetworkDeviceAttachment
[quote='822658021, rbmanian75, /thread/822658, /profile/rbmanian75'] Is there anything i am doing wrong? [/quote] It’s hard to say without more context. Specifically: What network have you assigned to the interface? Has the guest successfully acquired an IP address? Does that IP address match the IP address you’re passing in here (ipAddr)? What value as you using for guestPort? Are you sure that the guest is listening on the port? If you run a command on the guest to connect to it’s IP address and port (so ipAddr and guestPort), does that go through? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Apr ’26
Reply to Programmatic IP Discovery for VZVirtualMachine in an App Store Sandbox
[quote='884242022, rbmanian75, /thread/822025?answerId=884242022#884242022, /profile/rbmanian75'] But i dont want to have a different subnet for each vm. [/quote] Why is that? Are you expecting the VMs to communicate with each other? Or is there some other reason? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Apr ’26
Reply to Provisioning profiles marked "Ineligible" for Contactless Pass Provisioning even though entitlement is present in profile
[quote='884233022, DTS Engineer, /thread/821961?answerId=884233022#884233022'] I’m talking with the right folks about this [/quote] I now have specific advice for folks in this situation: Please re-apply for the Contactless Pass Provisioning capability. The approval folks will then assign you the Contactless Pass Provisioning (deprecated) capability, which you can use right now. Once this Xcode issue is resolved (FB22439399), they will assign you the newer Contactless Pass Provisioning (SharableCredential) to use going forward. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
Apr ’26
Reply to Calling SecKeychainUnlock with a locked keychain and an invalid password returns errSecSuccess on macOS 26.4
[quote='884266022, oleksandr91, /thread/821894?answerId=884266022#884266022, /profile/oleksandr91'] Does it mean that Keychain Access is using some other private API that we are not allowed to use? [/quote] Private APIs aren’t thing. Rather, there are APIs and there are implementation details (-: Keychain Access is built in to the system, so it isn’t restricted to APIs. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Privacy & Security SubTopic: General Tags:
Replies
Boosts
Views
Activity
Apr ’26
Reply to Keychain errSecItemNotFound
[quote='884334022, iceboy, /thread/822626?answerId=884334022#884334022, /profile/iceboy'] I am using the iOS platform. [/quote] Cool. iOS only has one keychain implementation, equivalent to the data protection keychain on macOS, and that simplifies your life. [quote='884334022, iceboy, /thread/822626?answerId=884334022#884334022, /profile/iceboy'] I did not set kSecAttrAccount and kSecAttrAccessible when saving data on older iOS versions. [/quote] kSecAttrAccessible is unlikely to be the problem: Your current code leaves out that attribute from the query and return dictionary you pass to SecItemCopyMatching. In that context a missing attribute is treated as wildcard, so it’ll make any item regardless of what it’s kSecAttrAccessible value is. If the value is not present in the add dictionary you pass to SecItemAdd, the system will default to using no value for kSecAttrAccessible and, assuming there’s no kSecAttrAccessGroup attribute, it’ll place the item in your app’s default keychain access group. Sharing acc
Replies
Boosts
Views
Activity
Apr ’26
Reply to DHCP broken when device wakeup
[quote='884284022, Richie_Wu, /thread/820894?answerId=884284022#884284022, /profile/Richie_Wu'] our app was built on top of transparent proxy provider [/quote] OK. [quote='884284022, Richie_Wu, /thread/820894?answerId=884284022#884284022, /profile/Richie_Wu'] However issue still been reported from customers [/quote] Are you able to reproduce this yourself? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
Apr ’26
Reply to Bug: Wi-Fi Aware (NAN) Subscriber Mode: nwPath.availableInterfaces Does Not Include nan0 Interface After Successful Peer Connection
[quote='884320022, wu_aaron, /thread/818708?answerId=884320022#884320022, /profile/wu_aaron'] Does Wi-Fi Aware currently support the QUIC protocol? [/quote] This is a very different question from the one that started this thread. Please start a new thread for it. If you use the same subtopic as this thread, I’ll be sure to see it go by. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
Apr ’26
Reply to NSFileWrapper data loss bug in Foundation on macOS Tahoe 26.4.1
Is there some specific reason you’re trying to avoid setting the atomic flag? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Apr ’26
Reply to UITextField and UITextView abnormally popped up the network permission application interface
[quote='884275022, Mingmiu, /thread/822198?answerId=884275022#884275022, /profile/Mingmiu'] I have already uploaded the sysdiagnose log in FB22333352 [/quote] OK. I see it there now. Thanks! Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Apr ’26
Reply to macOS DNS Proxy system extension makes device stop processing MDM commands until reboot
It’s likely that I’m going to have you file a bug about this, but before I do that I wanted to propose a diagnostic test. You wrote: [quote='822673021, Leo_Nagano, /thread/822673, /profile/Leo_Nagano'] general network access (Safari etc.) continues to work. [/quote] which certainly limits the scope for problems here. However, MDM relies on push notifications, as you’re aware, so I’m curious whether they’re working. If you get a Mac into this state and then send it a user-visible push notification, does that get through? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
Apr ’26