Here's an example:
https://github.com/Laksen/fp-ethernet/blob/master/linuxraw.pas
You need to change ifindex obviously, and I can't remember how that was
found. But it should be relatively easy.
On 11/18/2015 02:47 PM, Xiangrong Fang wrote:
Hi,
I am looking for some examples of writing linu
On Wed, Nov 18, 2015 at 12:45 PM, Daniel Gaspary wrote:
> Need to change the fpsocket function call.
>
>
> From fpSocket(AF_INET,SOCK_STREAM,0)
> to fpSocket(AF_INET,SOCK_RAW,0);
>
> Is possible that the "0" needs to be changed too.
>
Just keep in mind that reading such socket is tricky.
There's
Need to change the fpsocket function call.
>From fpSocket(AF_INET,SOCK_STREAM,0)
to fpSocket(AF_INET,SOCK_RAW,0);
Is possible that the "0" needs to be changed too.
On Wed, Nov 18, 2015 at 3:20 PM, leledumbo wrote:
> FPC docs has them:
> http://www.freepascal.org/docs-html/rtl/sockets/fpaccep
FPC docs has them:
http://www.freepascal.org/docs-html/rtl/sockets/fpaccept.html (server)
http://www.freepascal.org/docs-html/rtl/sockets/fpconnect.html (client)
--
View this message in context:
http://free-pascal-general.1045716.n5.nabble.com/raw-socket-example-tp5723096p5723097.html
Sent fro
Hi,
I am looking for some examples of writing linux raw socket programs in free
pascal, anyone had experience on that?
Thanks a lot!
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pas
On 2015-11-18 13:32, Joost van der Sluis wrote:
Op 18-11-15 om 08:00 schreef Torsten Bonde Christiansen:
On 2015-11-17 18:25, Serguei TARASSOV wrote:
On 17/11/2015 15:24, fpc-pascal-requ...@lists.freepascal.org wrote:
In my program I need to use the OpenSSL unit from fpc
(packages/openssl)
AN
On Wed, 18 Nov 2015, Joost van der Sluis wrote:
Op 18-11-15 om 08:00 schreef Torsten Bonde Christiansen:
On 2015-11-17 18:25, Serguei TARASSOV wrote:
On 17/11/2015 15:24, fpc-pascal-requ...@lists.freepascal.org wrote:
In my program I need to use the OpenSSL unit from fpc (packages/openssl)
Op 18-11-15 om 08:00 schreef Torsten Bonde Christiansen:
On 2015-11-17 18:25, Serguei TARASSOV wrote:
On 17/11/2015 15:24, fpc-pascal-requ...@lists.freepascal.org wrote:
In my program I need to use the OpenSSL unit from fpc
(packages/openssl)
AND I also need to use the lNET package.
However m