Coldwings
Coldwings
Overlaybd using curl wrapper in LibPhotonOS for `registryfs` and SSL wrapper for `registryfs_v2`, both of two implementation are already have TLSv1.2 supported. In `registryfs` (which is default registry connect implementation...
> What is the minimum OpenSSL version that supports `SSL_CTX_set_default_verify_paths ` and `SSL_get_verify_result `? [SSL_get_verify_result](https://www.openssl.org/docs/man1.0.2/man3/SSL_get_verify_result.html) is provided in openssl 1.0.2 [SSL_CTX_set_default_verify_paths](https://www.openssl.org/docs/man1.1.1/man3/SSL_CTX_set_default_verify_paths.html) is for 1.1.1 above. old version can only set...
> That's because gcc13 has changed the way we used to write `__attribute__ ((packed))`. You can just remove this assertion. Just add a packed attribute to the enum in IPAddr...
Add one more configuration option to set the token request method is a simple way to fit AzureCR situation. Both a dynamic linked plugin and a tcp/domain socket http server...
We are planing to provides RDMA supports via rSocket API, as a part of photon in not too far future. rSocket is different to kernel socket API, when users do...
The stack size is able to be set, parameters when creating threads. like `photon::threada_create(entry, arg, STACK_SIZE)`, that feature has already provided. Still, it can hardly be to smaller. In 0.8...
Actually, any `std::thread` or `pthread` that called `photon::init` or `photon::vcpu_init` will be treated as a vCPU, so yes, if you initialized photon environment by calling `photon::init` or `photon::vcpu_init`, photon will...
Thank you for all these. I likes ZeroMQ and used to use it a lot, your work is definitely welcomed to Photon. About the event notification problem you have met,...
The problem is caused by Thread11 using bottom of stack storing function and parameters, make it looks not like a formally thread stack. It might have some solution (like add...
> > > Does ‘Thread11’ here refer to the thread created via thread_create11 ? > > > > > > Yes, but I don't think that's the reason. We are...