Yes, I read the source code and found that fpconnect + socktotext = connect, but just don't know why combining them together is a bad idea :-) thanks
2013/4/16 Victor Campillo <[email protected]> > On 16/04/13 11:12, Xiangrong Fang wrote: > > Hi All, > > I am trying to write a tcp client (redis) in free pascal, and found this > function marked as deprecated: > > Function Connect(Sock:longint;const addr:TInetSockAddr;var > SockIn,SockOut:text):Boolean; deprecated; > > My question is, why it is deprecated, or, what is the replacement for > this function? > > Thanks > > > _______________________________________________ > fpc-pascal maillist - > [email protected]http://lists.freepascal.org/mailman/listinfo/fpc-pascal > > Hi, > > I think that Connect was replaced by fpconnect that is more cross > platform, so you should use fpconnect instead of Connect. > The same happens with the other sockets functions like Accept, Bind, etc. > You should use fpaccept, fpbind, etc. > > See unit rtl/inc/socketsh.inc > > Best Regards. > > -- > Victor Campillo > > > _______________________________________________ > fpc-pascal maillist - [email protected] > http://lists.freepascal.org/mailman/listinfo/fpc-pascal >
_______________________________________________ fpc-pascal maillist - [email protected] http://lists.freepascal.org/mailman/listinfo/fpc-pascal
