Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Report os arch #2320

Open
wants to merge 4 commits into
base: dev
Choose a base branch
from
Open

Report os arch #2320

wants to merge 4 commits into from

Conversation

adamierymenko
Copy link
Contributor

This adds reporting of OS/arch to network controllers for some fairly innocuous metrics that will help with security checking and can be usefully shown to users.

Also contains some commits that were un-done from another branch; ignore these. Only relevant files have changed.

Also added a .clangd for clang code-insight on the Zed editor among others.

Comment on lines +224 to +232
#elif defined(__APPLE__) && defined(__MACH__) // Apple OSX and iOS (Darwin)
#include <TargetConditionals.h>
#if TARGET_IPHONE_SIMULATOR == 1
#define ZT_PLATFORM_NAME "ios" // Apple iOS
#elif TARGET_OS_IPHONE == 1
#define ZT_PLATFORM_NAME "ios" // Apple iOS
#elif TARGET_OS_MAC == 1
#define ZT_PLATFORM_NAME "macos" // Apple OSX
#endif
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe iPadOS is a separate thing now. We can probably detect that

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants