public inbox for linux-bluetooth@vger.kernel.org
 help / color / mirror / Atom feed
* [Bluez-users] restricting inquiry responses
@ 2006-09-12 16:41 Loreno Oliveira
  2006-09-13 12:23 ` Claudio Takahasi
  0 siblings, 1 reply; 4+ messages in thread
From: Loreno Oliveira @ 2006-09-12 16:41 UTC (permalink / raw)
  To: BlueZ users


[-- Attachment #1.1: Type: text/plain, Size: 276 bytes --]

Hi there,

I have different base stations that permanently try to find out new mobile
devices on their coverage areas. Once discovered and paired with some BS, I
need this device to be able to not answer to that BS inquiries.

Is there a solution for this??

Regards,

Loreno

[-- Attachment #1.2: Type: text/html, Size: 305 bytes --]

[-- Attachment #2: Type: text/plain, Size: 373 bytes --]

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

[-- Attachment #3: Type: text/plain, Size: 164 bytes --]

_______________________________________________
Bluez-users mailing list
Bluez-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-users

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Bluez-users] restricting inquiry responses
  2006-09-12 16:41 [Bluez-users] restricting inquiry responses Loreno Oliveira
@ 2006-09-13 12:23 ` Claudio Takahasi
  2006-09-13 12:48   ` Claudio Takahasi
  0 siblings, 1 reply; 4+ messages in thread
From: Claudio Takahasi @ 2006-09-13 12:23 UTC (permalink / raw)
  To: BlueZ users

On 9/12/06, Loreno Oliveira <lorenooliveira@gmail.com> wrote:
> Hi there,
>
> I have different base stations that permanently try to find out new mobile
> devices on their coverage areas. Once discovered and paired with some BS, I
> need this device to be able to not answer to that BS inquiries.
>
> Is there a solution for this??
>
> Regards,
>
> Loreno
_______________________________________________
> Bluez-users mailing list
> Bluez-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bluez-users

Hi Loreno,

You can use the a D-Bus method to switch the device to "Connectable"
mode. The adapter interface supports the following discoverable modes:
discoverable: PSCAN ISCAN
connectable: PSCAN
off: NOSCAN

Use the gbluezconf(test app) to setup this mode:
http://www.maemo.org.br/cktakahasi/gbluezconf/gbluezconf-00.32.tar.gz

Or dbus-send:
$dbus-send --system --type=method_call --print-reply --dest=org.bluez
/org/bluez/hci0 org.bluez.Adapter.SetDiscoverableTimeout uint32:0
$dbus-send --system --type=method_call --print-reply --dest=org.bluez
/org/bluez/hci0 org.bluez.Adapter.SetMode string:discoverable

The default discoverable timeout is 180sec. Setting it to 0 +
discoverable mode to "discoverable" the device will be always visible.
Setting the discoverable timeout to X + mode to discoverable, the mode
will be changed automatically to connectable mode after X seconds.


BR,
Claudio.

-- 
---------------------------------------------------------
Claudio Takahasi
Instituto Nokia de Tecnologia - INdT

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Bluez-users mailing list
Bluez-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-users

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Bluez-users] restricting inquiry responses
  2006-09-13 12:23 ` Claudio Takahasi
@ 2006-09-13 12:48   ` Claudio Takahasi
  2006-09-13 12:56     ` Loreno Oliveira
  0 siblings, 1 reply; 4+ messages in thread
From: Claudio Takahasi @ 2006-09-13 12:48 UTC (permalink / raw)
  To: BlueZ users

On 9/13/06, Claudio Takahasi <cktakahasi@gmail.com> wrote:
> On 9/12/06, Loreno Oliveira <lorenooliveira@gmail.com> wrote:
> > Hi there,
> >
> > I have different base stations that permanently try to find out new mobile
> > devices on their coverage areas. Once discovered and paired with some BS, I
> > need this device to be able to not answer to that BS inquiries.
> >
> > Is there a solution for this??
> >
> > Regards,
> >
> > Loreno
> _______________________________________________
> > Bluez-users mailing list
> > Bluez-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/bluez-users
>
> Hi Loreno,
>
> You can use the a D-Bus method to switch the device to "Connectable"
> mode. The adapter interface supports the following discoverable modes:
> discoverable: PSCAN ISCAN
> connectable: PSCAN
> off: NOSCAN
>
> Use the gbluezconf(test app) to setup this mode:
> http://www.maemo.org.br/cktakahasi/gbluezconf/gbluezconf-00.32.tar.gz
>
> Or dbus-send:
> $dbus-send --system --type=method_call --print-reply --dest=org.bluez
> /org/bluez/hci0 org.bluez.Adapter.SetDiscoverableTimeout uint32:0
> $dbus-send --system --type=method_call --print-reply --dest=org.bluez
> /org/bluez/hci0 org.bluez.Adapter.SetMode string:discoverable
>
> The default discoverable timeout is 180sec. Setting it to 0 +
> discoverable mode to "discoverable" the device will be always visible.
> Setting the discoverable timeout to X + mode to discoverable, the mode
> will be changed automatically to connectable mode after X seconds.
>
>
> BR,
> Claudio.
> --
> ---------------------------------------------------------
> Claudio Takahasi
> Instituto Nokia de Tecnologia - INdT
>

Hi Loreno,

Sorry, I misunderstood your question. It's not possible "not answer"
to a specific BS inquiries.

BR,
Claudio.

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Bluez-users mailing list
Bluez-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-users

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Bluez-users] restricting inquiry responses
  2006-09-13 12:48   ` Claudio Takahasi
@ 2006-09-13 12:56     ` Loreno Oliveira
  0 siblings, 0 replies; 4+ messages in thread
From: Loreno Oliveira @ 2006-09-13 12:56 UTC (permalink / raw)
  To: BlueZ users


[-- Attachment #1.1: Type: text/plain, Size: 2733 bytes --]

On the one hand this is good because I was trying to understand you previous
answer yet :-)

On the other hand this is a big issue in my current work. Btw, thanks for
the help!

Loreno

On 9/13/06, Claudio Takahasi <cktakahasi@gmail.com> wrote:
>
> On 9/13/06, Claudio Takahasi <cktakahasi@gmail.com> wrote:
> > On 9/12/06, Loreno Oliveira <lorenooliveira@gmail.com> wrote:
> > > Hi there,
> > >
> > > I have different base stations that permanently try to find out new
> mobile
> > > devices on their coverage areas. Once discovered and paired with some
> BS, I
> > > need this device to be able to not answer to that BS inquiries.
> > >
> > > Is there a solution for this??
> > >
> > > Regards,
> > >
> > > Loreno
> > _______________________________________________
> > > Bluez-users mailing list
> > > Bluez-users@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/bluez-users
> >
> > Hi Loreno,
> >
> > You can use the a D-Bus method to switch the device to "Connectable"
> > mode. The adapter interface supports the following discoverable modes:
> > discoverable: PSCAN ISCAN
> > connectable: PSCAN
> > off: NOSCAN
> >
> > Use the gbluezconf(test app) to setup this mode:
> > http://www.maemo.org.br/cktakahasi/gbluezconf/gbluezconf-00.32.tar.gz
> >
> > Or dbus-send:
> > $dbus-send --system --type=method_call --print-reply --dest=org.bluez
> > /org/bluez/hci0 org.bluez.Adapter.SetDiscoverableTimeout uint32:0
> > $dbus-send --system --type=method_call --print-reply --dest=org.bluez
> > /org/bluez/hci0 org.bluez.Adapter.SetMode string:discoverable
> >
> > The default discoverable timeout is 180sec. Setting it to 0 +
> > discoverable mode to "discoverable" the device will be always visible.
> > Setting the discoverable timeout to X + mode to discoverable, the mode
> > will be changed automatically to connectable mode after X seconds.
> >
> >
> > BR,
> > Claudio.
> > --
> > ---------------------------------------------------------
> > Claudio Takahasi
> > Instituto Nokia de Tecnologia - INdT
> >
>
> Hi Loreno,
>
> Sorry, I misunderstood your question. It's not possible "not answer"
> to a specific BS inquiries.
>
> BR,
> Claudio.
>
> -------------------------------------------------------------------------
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> _______________________________________________
> Bluez-users mailing list
> Bluez-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bluez-users
>

[-- Attachment #1.2: Type: text/html, Size: 3856 bytes --]

[-- Attachment #2: Type: text/plain, Size: 373 bytes --]

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

[-- Attachment #3: Type: text/plain, Size: 164 bytes --]

_______________________________________________
Bluez-users mailing list
Bluez-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-users

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2006-09-13 12:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-09-12 16:41 [Bluez-users] restricting inquiry responses Loreno Oliveira
2006-09-13 12:23 ` Claudio Takahasi
2006-09-13 12:48   ` Claudio Takahasi
2006-09-13 12:56     ` Loreno Oliveira

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox