Back to project page mha-android.
The source code is released under:
Copyright (c) 2011-2012 Cameron Porter, Ryan Brown http://github.com/camporter/mha-android Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated...
If you think the Android project mha-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.teamacra.myhomeaudio.discovery; //from w w w .ja v a 2 s . c o m public class DiscoveryConstants { public static final int RESPONDER_BROADCAST_PORT = 6808; public static final int SEARCH_BROADCAST_PORT = 6809; public static final int DATAGRAM_LENGTH = 1024; public static final int RESPONDER_SOCKET_TIMEOUT = 250; public static final int SEARCH_SOCKET_TIMEOUT = 250; public static final int SEARCH_QUERY_INTERVAL = 500; public static final String SEARCH_HEADER = "SERVICE QUERY "; public static final String REPLY_HEADER = "SERVICE REPLY "; }