[root] / trunk / core / base / src / TInetAddress.cxx Repository:
ViewVC logotype

Log of /trunk/core/base/src/TInetAddress.cxx

Parent Directory Parent Directory


Links to HEAD: (view) (download) (as text) (annotate)
Sticky Revision:

Revision 31825 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Dec 10 20:16:27 2009 UTC (5 years, 1 month ago) by pcanal
File length: 7024 byte(s)
Diff to previous 31822
From Fons: Remove obsolete datamember

Revision 31822 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Dec 10 18:30:40 2009 UTC (5 years, 1 month ago) by pcanal
File length: 6942 byte(s)
Diff to previous 24777
Avoid reading the Class Version twice ... This enables reading a TInetAddress from file

Revision 24777 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Jul 10 22:57:50 2008 UTC (6 years, 6 months ago) by rdm
File length: 6924 byte(s)
Diff to previous 22961
when TSystem::GetHostByName() returns "UnNamedHost" set the host name
in TInetAddress by the address in dot notation. This avoids all kind of
ugly tests on "UnNamedHost" in user code, and more importantly this test
was not always done resulting in failed connections to a host "UnNamedHost"
which does not exist.

Revision 22961 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Apr 3 13:32:57 2008 UTC (6 years, 9 months ago) by rdm
File length: 6892 byte(s)
Diff to previous 20877
move the directories:
  base clib cont meta metautils newdelete pcre rint thread unix utils
  winnt zip
under the new core meta directory.

Revision 20877 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 19 11:17:07 2007 UTC (7 years, 2 months ago) by rdm
Original Path: trunk/base/src/TInetAddress.cxx
File length: 6892 byte(s)
Diff to previous 19826
Set property svn:eol-style LF on all source and Makefiles. This should avoid
problems with Win32 line endings ending up in the repository. All MS tools
support LF eols fine.

Revision 19826 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 19 19:56:11 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/base/src/TInetAddress.cxx
File length: 6892 byte(s)
Diff to previous 19825
imported svn:keywords Id property

Revision 19825 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 19 19:49:10 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/base/src/TInetAddress.cxx
File length: 6946 byte(s)
Diff to previous 17900
remove :$ from tag line

Revision 17900 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Feb 12 14:56:12 2007 UTC (7 years, 11 months ago) by rdm
Original Path: trunk/base/src/TInetAddress.cxx
File length: 6956 byte(s)
Diff to previous 17730
correct cvs tag line to reflect package change of these files.

Revision 17730 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Feb 6 15:20:31 2007 UTC (7 years, 11 months ago) by brun
Original Path: trunk/base/src/TInetAddress.cxx
File length: 6954 byte(s)
Diff to previous 12127
In the Streamer functions replace the lines like
         TPad::Class()->ReadBuffer(b, this, v, R__s, R__c);
         TPad::Class()->WriteBuffer(b,this);
by
         b.ReadClassBuffer(TPad::Class(), this, v, R__s, R__c);
         b.WriteClassBuffer(TPad::Class(),this);

Revision 12127 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Jun 23 00:29:38 2005 UTC (9 years, 7 months ago) by rdm
Original Path: trunk/base/src/TInetAddress.cxx
File length: 6947 byte(s)
Diff to previous 12123
cosmetics: remove <TABS> and change "const Char_t" back to "const char".

Revision 12123 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Jun 22 20:18:12 2005 UTC (9 years, 7 months ago) by brun
Original Path: trunk/base/src/TInetAddress.cxx
File length: 6954 byte(s)
Diff to previous 9569
From Constantin Loizides

This patch implements:
- decentralized, automatic mutex initialization,
  see R__LOCKGUARD2 in TVirtualMutex
- PROOF parallel startup fixes
- more thread protection (in base, cont, meta, rest to be done)
- cleanups

From Eddy Offermann:
TString::Atoi and Atof are made const.

Revision 9569 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Jul 22 07:17:32 2004 UTC (10 years, 6 months ago) by brun
Original Path: trunk/base/src/TInetAddress.cxx
File length: 6897 byte(s)
Diff to previous 9514
Implement a custom Streamer for TInetAddress to read old versions of the class.

Revision 9514 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Jul 13 16:48:21 2004 UTC (10 years, 6 months ago) by rdm
Original Path: trunk/base/src/TInetAddress.cxx
File length: 5504 byte(s)
Diff to previous 9454
address vector contains all addresses, also the default address. Member
fAddress suppressed, now fAddresses[0].

Revision 9454 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Jul 8 17:55:41 2004 UTC (10 years, 6 months ago) by rdm
Original Path: trunk/base/src/TInetAddress.cxx
File length: 5472 byte(s)
Diff to previous 4565
TInetAddress now has two extra vectors keeping alternative addresses
and aliases for a host. They are filled when doing, e.g.:
TInetAddress a = gSystem->GetHostByName("root.cern.ch")
a.Print()

Revision 4565 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat May 18 08:43:30 2002 UTC (12 years, 8 months ago) by brun
Original Path: trunk/base/src/TInetAddress.cxx
File length: 4082 byte(s)
Diff to previous 1205
Add explicit calls to the base classes copy constructors in the copy constructors.
This is required by gcc on MacOS X

Revision 1205 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Dec 13 15:13:57 2000 UTC (14 years, 1 month ago) by brun
Original Path: trunk/base/src/TInetAddress.cxx
File length: 4070 byte(s)
Diff to previous 3
      W A R N I N G   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
     ==================================================================
A very long list of changes in this pre-release of version 3.00.
We have modified the signature of many functions (in particular TObject)
to introduce more constness in the system.
You must change your code if your class derives from TObject and uses
one of the modified functions such as ls, Print, Compare, Hash, etc.
The modified functions in TObject have the following signature:
   virtual TObject    *Clone() const;
   virtual Int_t       Compare(const TObject *obj) const;
   virtual void        Delete(Option_t *option=""); // *MENU*
   virtual void        DrawClass() const; // *MENU*
   virtual void        DrawClone(Option_t *option="") const; // *MENU*
   virtual void        Dump() const; // *MENU*
   virtual TObject    *FindObject(const TObject *obj) const;
   virtual char       *GetObjectInfo(Int_t px, Int_t py) const;
   virtual ULong_t     Hash() const;
   virtual void        Inspect() const; // *MENU*
   virtual Bool_t      IsEqual(const TObject *obj) const;
   virtual void        ls(Option_t *option="") const;
   virtual void        Print(Option_t *option="") const;

A similar operation has been done with classes such as TH1, TVirtualPad,
TTree, etc.

Revision 3 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue May 16 17:00:58 2000 UTC (14 years, 8 months ago) by rdm
Original Path: trunk/base/src/TInetAddress.cxx
File length: 4004 byte(s)
Copied from: branches/unlabeled-1.1.1/base/src/TInetAddress.cxx revision 2
Diff to previous 2
This commit was generated by cvs2svn to compensate for changes in r2,
which included commits to RCS files with non-trunk default branches.

Revision 2 - (view) (download) (as text) (annotate) - [select for diffs]
Added Tue May 16 17:00:58 2000 UTC (14 years, 8 months ago) by rdm
Original Path: branches/unlabeled-1.1.1/base/src/TInetAddress.cxx
File length: 4004 byte(s)
Initial import of ROOT into CVS

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

Subversion Admin
ViewVC Help
Powered by ViewVC 1.0.9