Re: off topic - sending and receiving raw Ethernet frames from clojure/java

2009-05-24 Thread prhlava
Hello Mark, Can't be done using the standard Java library. You'll have to write some JNI code or find a JNI library. Thanks for the confirmation, after long search and asking around, the conclusion was the same - not possible without JNI or using jpcap... Kind regards, Vlad

Re: off topic - sending and receiving raw Ethernet frames from clojure/java

2009-05-24 Thread Chouser
On Sun, May 24, 2009 at 3:49 PM, prhlava prhl...@googlemail.com wrote: Hello Mark, Can't be done using the standard Java library.  You'll have to write some JNI code or find a JNI library. Thanks for the confirmation, after long search and asking around, the conclusion was the same - not

Re: off topic - sending and receiving raw Ethernet frames from clojure/java

2009-05-21 Thread Mark Addleman
Can't be done using the standard Java library. You'll have to write some JNI code or find a JNI library. On May 20, 4:32 am, prhlava prhl...@googlemail.com wrote: Hello, Apologies for off topic post. I would like to send and receive raw ethernet frames from Clojure. So far, I found:

off topic - sending and receiving raw Ethernet frames from clojure/java

2009-05-20 Thread prhlava
Hello, Apologies for off topic post. I would like to send and receive raw ethernet frames from Clojure. So far, I found: http://netresearch.ics.uci.edu/kfujii/jpcap/doc/ but is sending and receiving raw ethernet packets possible with the latest JDK using standard networking stack of JVM?