* Overload Probe Request to send data
@ 2010-11-11 15:35 Cassiano Tartari
2010-11-11 17:41 ` Guy, Wey-Yi
2010-11-11 17:53 ` Johannes Berg
0 siblings, 2 replies; 7+ messages in thread
From: Cassiano Tartari @ 2010-11-11 15:35 UTC (permalink / raw)
To: linux-wireless
Hi,
I'd like to know if somebody could help me giving a way to modify
the iwlwifi driver to overload the Probe Requests to send data? Which
file I need to modify, for what word I need search for...
Thankful,
Best Regards,
-
Cassiano Valle Tartari
Computer Engineer
Tel: +55.48.84474818
Email: falecom@cassianotartari.eng.br
Site: http://www.cassianotartari.eng.br
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: Overload Probe Request to send data
2010-11-11 15:35 Overload Probe Request to send data Cassiano Tartari
@ 2010-11-11 17:41 ` Guy, Wey-Yi
2010-11-11 17:53 ` Johannes Berg
1 sibling, 0 replies; 7+ messages in thread
From: Guy, Wey-Yi @ 2010-11-11 17:41 UTC (permalink / raw)
To: Cassiano Tartari; +Cc: linux-wireless@vger.kernel.org
On Thu, 2010-11-11 at 07:35 -0800, Cassiano Tartari wrote:
> Hi,
>
> I'd like to know if somebody could help me giving a way to modify
> the iwlwifi driver to overload the Probe Requests to send data? Which
> file I need to modify, for what word I need search for...
>
> Thankful,
>
If you want to do it in iwlwifi, lease take a look at
iwl_fill_probe_req() in iwl-scan.c
But do please aware there is size limitation of the probe request from
uCode.
Wey
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Overload Probe Request to send data
2010-11-11 15:35 Overload Probe Request to send data Cassiano Tartari
2010-11-11 17:41 ` Guy, Wey-Yi
@ 2010-11-11 17:53 ` Johannes Berg
2010-11-11 19:18 ` Cassiano Tartari
1 sibling, 1 reply; 7+ messages in thread
From: Johannes Berg @ 2010-11-11 17:53 UTC (permalink / raw)
To: Cassiano Tartari; +Cc: linux-wireless
On Thu, 2010-11-11 at 13:35 -0200, Cassiano Tartari wrote:
> Hi,
>
> I'd like to know if somebody could help me giving a way to modify
> the iwlwifi driver to overload the Probe Requests to send data? Which
> file I need to modify, for what word I need search for...
Just give the data to iw in a vendor specific IE and iwlwifi will send
it out. Don't modify the kernel at all.
johannes
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Overload Probe Request to send data
2010-11-11 17:53 ` Johannes Berg
@ 2010-11-11 19:18 ` Cassiano Tartari
2010-11-11 20:05 ` Johannes Berg
2010-11-11 21:08 ` Johannes Berg
0 siblings, 2 replies; 7+ messages in thread
From: Cassiano Tartari @ 2010-11-11 19:18 UTC (permalink / raw)
To: Johannes Berg; +Cc: linux-wireless
Sorry johannes, but I didn't understand what you said.
I need to send data without confiability, just in one way client->AP
and without association, and this information is too short.
On Thu, Nov 11, 2010 at 3:53 PM, Johannes Berg
<johannes@sipsolutions.net> wrote:
> On Thu, 2010-11-11 at 13:35 -0200, Cassiano Tartari wrote:
>> Hi,
>>
>> I'd like to know if somebody could help me giving a way to modify
>> the iwlwifi driver to overload the Probe Requests to send data? Which
>> file I need to modify, for what word I need search for...
>
> Just give the data to iw in a vendor specific IE and iwlwifi will send
> it out. Don't modify the kernel at all.
>
> johannes
>
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Overload Probe Request to send data
2010-11-11 19:18 ` Cassiano Tartari
@ 2010-11-11 20:05 ` Johannes Berg
2010-11-11 21:08 ` Johannes Berg
1 sibling, 0 replies; 7+ messages in thread
From: Johannes Berg @ 2010-11-11 20:05 UTC (permalink / raw)
To: Cassiano Tartari; +Cc: linux-wireless
On Thu, 2010-11-11 at 17:18 -0200, Cassiano Tartari wrote:
> Sorry johannes, but I didn't understand what you said.
>
> I need to send data without confiability, just in one way client->AP
> and without association, and this information is too short.
what information is too short? Use multiple IEs if one isn't enough...
johannes
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Overload Probe Request to send data
2010-11-11 19:18 ` Cassiano Tartari
2010-11-11 20:05 ` Johannes Berg
@ 2010-11-11 21:08 ` Johannes Berg
2010-11-12 14:13 ` Cassiano Tartari
1 sibling, 1 reply; 7+ messages in thread
From: Johannes Berg @ 2010-11-11 21:08 UTC (permalink / raw)
To: Cassiano Tartari; +Cc: linux-wireless
On Thu, 2010-11-11 at 17:18 -0200, Cassiano Tartari wrote:
> Sorry johannes, but I didn't understand what you said.
>
> I need to send data without confiability, just in one way client->AP
> and without association, and this information is too short.
Oh ... and why not use vendor specific public action frames?
johannes
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Overload Probe Request to send data
2010-11-11 21:08 ` Johannes Berg
@ 2010-11-12 14:13 ` Cassiano Tartari
0 siblings, 0 replies; 7+ messages in thread
From: Cassiano Tartari @ 2010-11-12 14:13 UTC (permalink / raw)
To: Johannes Berg; +Cc: linux-wireless
@johannes
I tryed to find some information about how to overload the Vendor
Specific Action frame.
But I only found:
VSA frame - vendor specific action frame
- stand-alone management frame
- doesn't contain timestamp
- no segmentation required (max MMPDU)
I don't know if I used the correct works, but I tryed: "vendor
specific action frame" 802.11 on my researchs.
And a little more information at IEEE Std 802.11 pdf on page 151.
I'm studying the protocol.
On Thu, Nov 11, 2010 at 7:08 PM, Johannes Berg
<johannes@sipsolutions.net> wrote:
>
> On Thu, 2010-11-11 at 17:18 -0200, Cassiano Tartari wrote:
> > Sorry johannes, but I didn't understand what you said.
> >
> > I need to send data without confiability, just in one way client->AP
> > and without association, and this information is too short.
>
> Oh ... and why not use vendor specific public action frames?
>
> johannes
>
-
Cassiano Valle Tartari
Computer Engineer
Tel: +55.48.84474818
Email: falecom@cassianotartari.eng.br
Site: http://www.cassianotartari.eng.br
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2010-11-12 14:14 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-11 15:35 Overload Probe Request to send data Cassiano Tartari
2010-11-11 17:41 ` Guy, Wey-Yi
2010-11-11 17:53 ` Johannes Berg
2010-11-11 19:18 ` Cassiano Tartari
2010-11-11 20:05 ` Johannes Berg
2010-11-11 21:08 ` Johannes Berg
2010-11-12 14:13 ` Cassiano Tartari
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.