Questions tagged [hotspot]

A hotspot is a physical location where people may obtain Internet access, typically using Wi-Fi technology.

A hotspot is a physical location where people may obtain Internet access, typically using Wi-Fi technology, via a wireless local area network (WLAN) using a router connected to an internet service provider. The service can also be provided by a smartphone using its cellular data to connect to the isp.

346 questions
1
vote
0 answers

Need to method for disconnect device from hotspot. (Android)

I need a method to restrict certain MAC addresses from connecting to the hotspot. If I knew the MAC address of a device how can I achieve this?
Dinith
  • 839
  • 14
  • 22
1
vote
1 answer

Not able to ping device which started the LocalOnlyHotSpot when mobile data is on

I am using wifiManager.startLocalOnlyHotspot to start a hotspot with no internet access so that the connecting device can send files to this device using sockets. Everything is working as expected but I am not able to ping the connected wifi hotspot…
webianks
  • 125
  • 3
  • 10
1
vote
0 answers

File transfer through hotspot

File transfer through hotspot This project transfers files through wifi to pc. I want to sent the files through both wifi and hotspot. My project This shares files with wifi IP. import android.content.BroadcastReceiver; import…
Abiraami
  • 11
  • 4
1
vote
1 answer

Xcode wireless debugging over iPhone's hotspot in the park [solved]

For me wireless debugging works flawlessly on my home Wi-Fi, but I always wanted to go in the park and have the freedom of developing applications without the cable, where my iPhone provides Internet via its hotspot. It would be nice if Apple…
George Valkov
  • 1,217
  • 12
  • 10
1
vote
0 answers

Is it possible to get the Hotspot version from the source code itself?

A lot of times I find some modified Hotspot implementations on Github and would like to compare the code to the original Hotspot version to see which code has been added/removed. This is difficult if I don't know the version of Hotspot the project…
Nfff3
  • 321
  • 8
  • 24
1
vote
0 answers

GIT under VPN works only with hotspot, not home router/wifi

This one is my first post ever, so I'll try to write it in the clearest way possible! I remotely work for a company, so I have : VPN (Pulse Secure) SSH Certificates to reach the remote repos. Certificates are correct. Access to the remote repo -…
Kintha
  • 11
  • 2
1
vote
1 answer

Problem hosting from a wifi hotspot on Linux

I'm in a village with no Internet. I want to self host Mumble and an HLS server and spread WIFI at the same time. Both of those services work fine when hosting inside a WLAN - when being a wifi client. However, when I set up a hotspot off my laptop…
Todor Markov
  • 151
  • 9
1
vote
1 answer

Do Android ART and HotSpot behave differently in non-volatile variable visibility?

I tested the below piece of code on HotSpot and Android ART, but with different results. On HotSpot, MyThread never gets the updated isRunning, it get isRunning = true always... But when I test it on ART, MyThread can get the updated isRunning and…
fear
  • 35
  • 4
1
vote
0 answers

Managing WiFi Tethering in Android SDK 29

Does Android SDK 29 allow managing of WiFi Tethering? My app needs to be able to turn on/off the WiFi Tethering inside the app.
plr
  • 11
  • 1
1
vote
1 answer

Android 7.1 couldn't enable wifi hotspot programmatically

I am trying that opening Wifi hotspot in android,When I run below code it runs successfully for Api 28 I can open Wifi hotspot without getting errror but When I run it in Api 25 for Android 7.1 device it gets below errors, it says get WRITE_SETTINGS…
Diego
  • 937
  • 8
  • 24
1
vote
0 answers

Toggle hotspot programmatically in android N

I'm using android N and I'm trying to turn on wifi hotspot when the user opens the application. I was able to turn on the hotspot using the code that I mentioned below but other mobiles are not able to connect to this network, they stuck at…
1
vote
1 answer

Ssh to hotspot doesn't work when mobile data on

I've followed an article (https://www.raspberryconnect.com/projects/65-raspberrypi-hotspot-accesspoints/158-raspberry-pi-auto-wifi-hotspot-switch-direct-connection) to be able to access Raspberry Pi hotspot when it's offline, it works perfectly, and…
1
vote
0 answers

Enabling Passpoint feature in AOSP

I am working on an AOSP customization project where i want to enable the Hotspot 2.0/Passpoint feature through my code. From the Android developers site, https://source.android.com/devices/tech/connect/wifi-passpoint I got to know that requirements…
Roohi Zuwairiyah
  • 363
  • 3
  • 15
1
vote
0 answers

What exactly is JVM (HotSpot) intrinsic method?

I was playing around with JMH, and under different load Math.max(int, int) from same JVM (OpenJDK 13) compiled to two different implementations (both were emitted by C2): call handling code (stack and base pointers setting/restoration, etc.)…
Etki
  • 2,042
  • 2
  • 17
  • 40
1
vote
1 answer

Why does Concurrent-Mark-Sweep (CMS) remark phase need to re-examine the thread-stacks instead of just looking at the mutator's write-queues?

The standard CMS algorithm starts by making the application undergo a STW pause to calculate the GC-root-set. It then resumes mutator threads and both application and collector threads run concurrently until the marking is done. Any pointer store…
devoured elysium
  • 101,373
  • 131
  • 340
  • 557