Tagged Questions
The broadcast tag has no wiki summary.
13
votes
1answer
1k views
Android: Detect another application has started playing audio
My music application constantly plays music in the background, however I'd like to be able to detect when another application starts playing audio (such as the YouTube app) so I can pause/mute/stop ...
12
votes
2answers
267 views
Broadcasting UDP packets using multiple NICs
I'm building an embedded system for a camera controller in Linux (not real-time). I'm having a problem getting the networking to do what I want it to do. The system has 3 NICs, 1 100base-T and 2 ...
10
votes
7answers
13k views
What is the difference between 0.0.0.0 and 255.255.255.255 in IPv4?
I've heard some people say the IPv4 broadcast address is 0.0.0.0 and others say it is 255.255.255.255... would someone explain the real-world difference?
9
votes
2answers
5k views
Android - how to receive broadcast intents ACTION_SCREEN_ON/OFF?
<application>
<receiver android:name=".MyBroadcastReceiver" android:enabled="true">
<intent-filter>
<action ...
7
votes
1answer
2k views
Problem recieving UDP packets send to 127.0.0.1 when using SO_REUSEADDR
I am trying to make a set of applications discover each other using UDP and broadcasting messages. The applications will periodically send out an UDP packet saying who they are and what they can do. ...
6
votes
5answers
1k views
Little problem with AsyncUdpSocket receiving data after connecting to broadcast instead of server
I have a problem with AsyncUdpSocket.
I used to connect to a server, send some data and get some response. Now since I do not know the actual address of the server I had to change my code and send ...
5
votes
1answer
395 views
Mac: stream a video file as webcam to applications (similar to CamTwist)
I am trying to program a feature, similar to that of CamTwist, with which a video file (on hard disk) can be broadcasted to other applications as video input.
However, I am not sure where to ...
5
votes
2answers
3k views
Is it possible to write an Android broadcast receiver that detects when the phone wakes up?
I want to figure out how to detect when the phone wakes up from being in the black screen mode and write a handler for that event. Is that possible? It seems like this would be something a Broadcast ...
5
votes
5answers
353 views
Receiving response(s) from N number of clients in reply to a broadcast request over UDP
I am implementing a kind of IP finder for a particular type of network multimedia device.
I want to find out all the alive devices of that type in the LAN, with their IP address and other details.
...
4
votes
2answers
50 views
How to send sms on switching off the phone in android?
I have a broadCast receiver class which listens on Switching off the phone, Now i wanted to send Sms when the phone is Switching off. Is it possible or not?
4
votes
1answer
179 views
Android emulator udp broadcast
I am working on an Android application which sends a udp broadcast message to the devices on LAN. Application works well on the device and also on the emulator running on Windows. However, I couldn't ...
4
votes
3answers
2k views
socket.io - how to broadcast messages on a namespace?
According to socket.io examples:
To broadcast, simply add a broadcast flag to emit and send method calls. Broadcasting means sending a message to everyone else except for the socket that starts ...
4
votes
2answers
322 views
Sending voice over the net and get it with HTML5 and mobile apps
I'm trying to put in place a basic streaming system from the browser.
The idea is to let the user stream audio live from his mic through the browser and then allow others to listen to this stream with ...
4
votes
2answers
1k views
Linux ping broadcast switch
When using ping on virtually every UNIX system available, pinging the broadcast address is simple:
$ ping 192.168.11.255
However, when this is done on Linux, a non-standard (and continually ...
4
votes
5answers
5k views
Java on Linux: Listening to broadcast messages on a bound local address
I have a somewhat weird requirement to be able to listen to a number of network interfaces from Java on a Linux machine and determine if one of them receives UDP packets of a certain type. The output ...
4
votes
5answers
8k views
Calculate broadcast address from ip and subnet mask
I want to calculate the broadcast address for e.g
-IP 192.168.3.1
-Subnet 255.255.255.0
=192.168.3.255
in C.
I know the way (doing fancy bitwise OR's between the inversed IP and Subnet), but my ...
4
votes
3answers
5k views
UDP-Broadcast on all interfaces
On a Linux system with a wired and a wireless interface (e.g. 192.168.1.x and 192.168.2.x subnets) I want to send a UDP broadcast that goes out via ALL available interfaces (i.e. both through the ...
3
votes
4answers
65 views
php recommandation for big activity
I've to do a website with a lot of activity and i would to have like your recommandation.
The same page is going to be viewed by 5000 users at the same time...
Some data have to be updated every 5 ...
3
votes
1answer
453 views
Does Windows Phone 7 Mango support UDP broadcast?
According to the MSDN documentation Mango does not support UDP broadcast. According to this thread it is somehow possible. Does anybody have any experience with UDP on Phone 7? A code snippet in C# ...
3
votes
2answers
438 views
Android - Is there a broadcast action for volume changes?
I'm programming a small widget that needs to be updated whenever the user changes the ringer volume or the vibrate settings.
Capturing android.media.VIBRATE_SETTING_CHANGED works just fine for the ...
3
votes
1answer
93 views
Is it possible to scope a broadcast to an application?
I want to use sendBroadcast to broadcast an intent that can only be received by that application that originated it.
The use case is for an authentication module I'm planning to use between several ...
3
votes
1answer
293 views
UDP broadcasting for LAN computer discovery & server setup
I'm working on a small, networked game prototype which will be played on LANs using UDP. For the discovery of other computers on the network, I've been investigating broadcasting. However, I'm still ...
3
votes
3answers
452 views
Does Java NIO support broadcast or multicast?
I am searching if Java NIO implements broadcast. I need to create a peer that sends messages to other peers, using multicast or broadcast. I was searching in the API 1.6, but I don't find anything in ...
3
votes
5answers
1k views
SMS receive with no notification
Sorry about my English (I'm not speaking good).
I want to receive a sms in my app, but I don't want my Android to show a notification about that event. Algorithm:
1) Receive sms (it's ok)
2) If this ...
3
votes
1answer
1k views
Detecting all available network's broadcast addresses in Java
For my project I wanted to get a list of all available broadcast addresses so I could broadcast a request and my other application located on other computer in the unspecified network would respond ...
3
votes
2answers
3k views
Where is the all Android broadcast Intent list
I want to received the Android broadcast, is there a list of all intents?
3
votes
2answers
5k views
How to send and receive broadcast message
I am trying to pass data between two activities that are inside of tabs. I am trying to use the sendBroadcast. With breakpoints set I never reach the OnReceive.
manifest :
<activity ...
3
votes
1answer
267 views
How to send a multicast ping using .NET?
How can I send a multicast ping in .NET ?
So that all computers on the network respond ?
3
votes
1answer
305 views
Android - Is there a system broadcast intent when an app is killed to reclaim resources?
I'm attempting to write a BroadcastReceiver to be notified when the Android OS kills an app in order to reclaim resources. I've tried filtering on "android.intent.action.PACKAGE_RESTARTED" but I never ...
3
votes
1answer
2k views
Android - sendOrderedBroadcast help
I am trying to use a sendOrderedBroadcast in my Android app.
I want to be able to send the Intent from one of my applications to another and I then want to get data back from the Application that ...
3
votes
1answer
149 views
Android - Intents somehow incrementing?
I have started using custom intents in my application and I have come across a bit of a problem.
When I send a custom intent I register a Broadcast Receiver and I catch the intent no problem.
...
3
votes
1answer
1k views
UDP Broadcast Reception Problems with Ubuntu 9.04 but not 8.04
Updates
01-27ter: rp_filter information added
01-27bis: Note that the 9.04 box works on a different interface.
01-27: Added interface configuration information and analysis of a packet.
Original ...
3
votes
8answers
5k views
Problems with SO_BINDTODEVICE Linux socket option
I have a pc with two network cards. One (eth0) is for LAN/internet and the other for UDP communication with one microcontroller (mc) device. The mc has an IP(192.168.7.2) and a MAC address. The second ...
3
votes
3answers
3k views
UDP Broadcast or IP Multicast?
If you had to implement a network broadcast, would you use UDP broadcast or IP multicast in a new application? Why?
What are the benefits and drawbacks you encountered with either method? ...
3
votes
5answers
2k views
Remoting server auto-discovery. Broadcast or not?
I have a client/server application that communicates with .Net remoting. I need my clients to be able to find the server(s) on the network without requiring client-side configuration.
As far as I ...
2
votes
2answers
42 views
Difference between Service and Broadcast receivers in android
I want to know the difference between services and broadcast receivers, can anyone point out an example that can be observed on android mobile devices.
Thanks
2
votes
1answer
86 views
Listening on a specific Port for incomming data
In order to scann a Wifi network for other devices, I send a broadcast with my application a a specific port to all IPs in the wifi network.
Therefore the application, if its running on a device in ...
2
votes
1answer
49 views
PyQt4's udp broadcast doesn't seem to work
My application written in PyQt4 doesn't seem to get any data.
readyRead event isn't even fired.
Use of the applications is following:
python server.py -s -p 50000 #(server on port 50000)
python ...
2
votes
1answer
66 views
Reacting to broadcast from another process
I have class that looks like this:
package com.broadcast;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
public class ...
2
votes
1answer
139 views
Multicast vs Broadcast in LAN
Is there any advantage to using a multicast group to send messages rather than just broadcasting them to a specific port? I understand that when broadcasting, other computers that don't want the ...
2
votes
0answers
65 views
Is there a way to ignore broadcasted UDP messages with DatagramSocket in Java on Windows?
I am looking for a way to not receive broadcast messages with DatagramSocket. The implementation seems to hide the destination address so I cannot use that as a filter. Setting setBroadcast seems to ...
2
votes
0answers
539 views
WARN/ActivityManager(5038): Permission denied: checkComponentPermission
From one application I'm (broadcast)sending an intent to a broadcastreceiver of another one. I'm getting the error: WARN/ActivityManager(5038): Permission denied: checkComponentPermission
2
votes
1answer
123 views
Android Gps saved too much points
I have created a service running in background which saves gps points on the phone db.
I have created the service using also a broadcast listener to the on-off screen, because when the screen is off ...
2
votes
2answers
161 views
UDP broadcast send from PHP and recieve in C#
I'm trying to send a broadcast udp message to a C# application. I have tried the following code to send the message. Which I found on the php.net website as a comment to the socket_sendto manual page.
...
2
votes
3answers
590 views
Sending packets to 255.255.255.255 by Java DatagramSocket fails
I'm programming a networking program in java , and I want to send some Packets to 255.255.255.255, but it fails , even when I send them to 192.168.1.255, which according to the output of ifconfig ...
2
votes
1answer
340 views
Why is my UDP broadcast failing?
I'm trying to send a UDP broadcast but wireshark isn't reporting any traffic. Here's the snippet that does the sending:
void SendBroadcast()
{
String^ ip = "255.255.255.255";
int port = ...
2
votes
1answer
404 views
Sent/delivered SMS: how do you identify to which SMS the broadcast belongs?
In thread How to monitor each of Sent SMS status? it is described how you can monitor the status of a sent/delivered SMS via broadcast.
However, I haven't found: how do you identify to which SMS the ...
2
votes
3answers
400 views
Simple broadcast library/example in C/C++
I'm putting together a client/server application written in C/C++. It is mostly C with some C++ features - I come from the C and Java world and don't use lots of heavy advanced C++ language features. ...
2
votes
3answers
417 views
Aborting/Cancelling Broadcasts
What I want: I want to be the first to receive the Sms Broadcast and I want to cancel the broadcast if SMS is of my interest only, so that The broadcast doesn't reach any other app/receiver (Default ...
2
votes
3answers
284 views
Finding or building an inter-process broadcast communication channel
So we have this somewhat unusual need in our product. We have numerous processes running on the local host and need to construct a means of communication between them. The difficulty is that ...
...