mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 16:09:25 +02:00
* more fixes from Lloyd
This commit is contained in:
parent
5e82863f3f
commit
988c22bb2d
@ -128,7 +128,7 @@ end;
|
|||||||
|
|
||||||
function fpsetsockopt (s:cint; level:cint; optname:cint; optval:pointer; optlen : tsocklen):cint;
|
function fpsetsockopt (s:cint; level:cint; optname:cint; optval:pointer; optlen : tsocklen):cint;
|
||||||
begin
|
begin
|
||||||
fpSetSockOpt:=SocketCall(Socket_Sys_SetSockOpt,S,optname,TSysParam(optval),optlen,0,0);
|
fpSetSockOpt:=SocketCall(Socket_Sys_SetSockOpt,S,level,optname,TSysParam(optval),optlen,0);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function fpgetsockopt (s:cint; level:cint; optname:cint; optval:pointer; optlen : psocklen):cint;
|
function fpgetsockopt (s:cint; level:cint; optname:cint; optval:pointer; optlen : psocklen):cint;
|
||||||
@ -144,7 +144,10 @@ end;
|
|||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.11 2004-03-20 15:19:29 marco
|
Revision 1.12 2004-03-22 06:49:28 marco
|
||||||
|
* more fixes from Lloyd
|
||||||
|
|
||||||
|
Revision 1.11 2004/03/20 15:19:29 marco
|
||||||
* *BSD do_syscall was left behind. Replaced with socketcall
|
* *BSD do_syscall was left behind. Replaced with socketcall
|
||||||
|
|
||||||
Revision 1.10 2004/03/16 18:03:37 marco
|
Revision 1.10 2004/03/16 18:03:37 marco
|
||||||
|
Loading…
Reference in New Issue
Block a user