RE: [fpc-pascal]Better/full internet-support in FPC on Linux?

2004-02-26 Thread Crabtree, Chad
-Original Message- From: Rainer Hantsch [mailto:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 1:57 AM To: Free Pascal Group Subject: [fpc-pascal]Better/full internet-support in FPC on Linux? Hello! Some time ago I tried to write a program which should work with nameservers to che

RE: [fpc-pascal]Local Ip Address

2004-02-23 Thread Crabtree, Chad
Ok. Thank you that worked however I'd like to ask some questions. I tried to find the answer by looking at the source code however I'm confused by this code abcd:=PABCD(phe^.h_addr_list[0])^; I beleive this automaticly parses h_addr_list[0] into the record. Not sure why but that's ok.

RE: [fpc-pascal]Local Ip Address

2004-02-23 Thread Crabtree, Chad
Here's my code that I use: >>uses sockets, errors, inet; Well that is part of the problem I cannot compile Inet I'm using win2k --- ***National City made the following annotations ---

[fpc-pascal]Local Ip Address

2004-02-23 Thread Crabtree, Chad
Hello I am having a dikens of a time getting my IP address on the machine that I am working on. I've looked in the mailing list and I found something that I've been toying with but still I cannot get the xxx.xxx.xxx.xxx style name I can only get my machine name. Here's what I have which I can get

[fpc-pascal]trouble compiling a demo

2004-02-18 Thread Crabtree, Chad
I am trying to compile this which is giving me hell unit MyError; { Custom error reporting routines. *** WINDOWS VERSION *** } interface procedure Say(msg : String); procedure SockError(msg : String); procedure SockSay(msg : String); procedure GenError(msg : String);implementation us