Travis Glenn Hansen

Results 821 comments of Travis Glenn Hansen
trafficstars

I think for the ecosystem it makes sense to coalesce with the other projects/proxies about the naming. I prefer `tls.ocsp` over `ocsp.staple` personally as stapling with the data is an...

Yeah. I switch the service/characteristics based on certain state in the device. I have clients (centrals) which I have 0 control over and if they cache the data and I...

OK great! I don't really change the values on the fly..I wait for the current client to disconnect and re-access the situation before advertising again. Do you happen to have...

Well, I am simply doing BLE so I assume no bonding is involved (I don't exchange pins or anything of that nature).

I don't have any pairing handlers so I doubt that's in play but I will put that code in place just to be sure. When I connect with LightBlue I...

It's not there in Light Blue no. ``` function startAdv() { manager.gattDb.removeService(services[SERVICE_UUID]); manager.gattDb.removeService(services[JOIN_SERVICE_UUID]); if (ConfigManager.SIDEKICK_DEVICE_TOKEN) { manager.gattDb.addServices([services[SERVICE_UUID]]); manager.setAdvertisingData(serviceAdvDataBuffer); advertised_service_uuid = SERVICE_UUID; } else { manager.gattDb.addServices([services[JOIN_SERVICE_UUID]]); manager.setAdvertisingData(joinServiceAdvDataBuffer); advertised_service_uuid = JOIN_SERVICE_UUID; }...

I am on ios, let me try it on android real quick...

Indeed the characteristic is there. Let me do some digging on other OSes and flesh out the behavior a little better and report back my findings. I can say that...

This seems to work as explained. Thanks for the assistance!

If anyone knows the replacement functionality then a PR would be welcome, or even just pointing where the new code resides. Otherwise I will try to take a look in...