I am writing a library to be included in other applications. I need to find a java library that will allow me to construct a LLCP packet that is sent out via broadcast. Additionally, I need to listen for responses to the broadcast. Since I do not know which OS the client application may be written for, My preference would be a pure java implementation or a library that could work with very common windows/linux libraries (such as libpcap or others).
Basically, I need to create an LLCP packet to a group address and could receive one or more responses. I need to be able to parse those responses as well.
Thanks!