Mike,

     That was my exact problem.  I could connect to both plib and the base packages.  
Perform a gethostbyaddr() and a gethostbyname().  My guess is that the second will 
fail for you.

In python, this would be the operation:

>>> import socket
>>> Host_Info = socket.gethostbyaddr(my_ip_address_as_a_string)
>>> Looked_Up_Host_Name = Host_Info [0]  # it will be a tuple
>>> Ip_Addr = socket.gethostbyname(Looked_Up_Host_Name)


Jonathan Polley

On Saturday, Dec 21, 2002, at 01:02PM, Mike Bonar <[EMAIL PROTECTED]> wrote:

>Works fine for the base package, but not for the source.  I didn't have this 
>problem last week.
>Mike
>
>On Saturday 21 December 2002 09:14, Curtis L. Olson wrote:
>> Erik Hofman writes:
>> > Mike Bonar wrote:
>> > > Getting:
>> > > cvs [login aborted]: recv() from server cvs.flightgear.org: Connection 
>reset 
>> > > by peer
>> > 
>> > It's working for me on the 21st, maybe it will be down tomorrow?
>> > (I noticed you have the date set to the 22nd) ...
>> 
>> Also make sure that your ISP has your dns set up correctly and that
>> you can do both forward and reverse lookups.
>> 
>> Regards,
>> 
>> Curt.
>> -- 
>> Curtis Olson   IVLab / HumanFIRST Program       FlightGear Project
>> Twin Cities    [EMAIL PROTECTED]                  [EMAIL PROTECTED]
>> Minnesota      http://www.menet.umn.edu/~curt   http://www.flightgear.org
>> 
>> _______________________________________________
>> Flightgear-users mailing list
>> [EMAIL PROTECTED]
>> http://mail.flightgear.org/mailman/listinfo/flightgear-users
>> 
>
>
>_______________________________________________
>Flightgear-users mailing list
>[EMAIL PROTECTED]
>http://mail.flightgear.org/mailman/listinfo/flightgear-users
>
>
 

Of COURSE they can do that.  They're engineers!

_______________________________________________
Flightgear-users mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-users

Reply via email to