Subject | RE: [IB-Java] Interclient 20 changes |
---|---|
Author | David Jencks |
Post date | 2001-02-07T06:27:27Z |
Thanks for checking this out.
2. works fine for me in rh7.
1. does not- this is why I changed it in the first place- socklen_t is
defined as a uint, and can't be cast to an int.
Does
// socklen_t clilen;
uint clilen;
at line 148 work for you, leaving line 171 as I had it? My prototype for
the last argument to accept is socklen_t = uint. Can you cast this in
msvc?
I wonder if my change will compile on earlier linices-- perhaps the
prototype for accept changed from int to uint in recent glibc.
Thanks
David Jencks
2. works fine for me in rh7.
1. does not- this is why I changed it in the first place- socklen_t is
defined as a uint, and can't be cast to an int.
Does
// socklen_t clilen;
uint clilen;
at line 148 work for you, leaving line 171 as I had it? My prototype for
the last argument to accept is socklen_t = uint. Can you cast this in
msvc?
I wonder if my change will compile on earlier linices-- perhaps the
prototype for accept changed from int to uint in recent glibc.
Thanks
David Jencks
On 2001.02.06 13:51:43 -0500 Ken Richard wrote:
> There were a few compile problems with msvc:
>
> 1. socklet_t is not defined in the msvc headers and the last argument to
> accept is prototypes as a int*.
>
> Index: NetTCP.cpp
> ===================================================================
> RCS file: /cvsroot/firebird/interclient/20/dev/interserver/NetTCP.cpp,v
> retrieving revision 1.2
> diff -r1.2 NetTCP.cpp
> 148c148
> < socklen_t clilen;
> ---
> > size_t clilen;
> 171c171
> < tmpSockfd = accept (sockfd, (struct sockaddr *) &tcpCliAddr,
> &clilen);
> ---
> > tmpSockfd = accept (sockfd, (struct sockaddr *) &tcpCliAddr,
> (int*)&clilen);
>
>
>
>
> 2. Msvc does not allow static initializers within the class definition.
>
> Index: IB_Catalog.h
> ===================================================================
> RCS file: /cvsroot/firebird/interclient/20/dev/interserver/IB_Catalog.h,v
> retrieving revision 1.2
> diff -r1.2 IB_Catalog.h
> 279c279,280
> < static const char* const spaces = " ";
> ---
> > //ken richard 2-6-2001
> > static const char* const spaces;
>
> Index: IB_Catalog.cpp
> ===================================================================
> RCS file: /cvsroot/firebird/interclient/20/dev/interserver/IB_Catalog.cpp,v
> retrieving revision 1.2
> diff -r1.2 IB_Catalog.cpp
> 82a83,85
> > const char* const
> > IB_Catalog::spaces = " ";
> >
>
>
>
>
> I didn't get to run anything against the server on Win32 - but I wanted
> to
> try a compile with your changes. I should get a chance sometime this
> week
> to run some stuff through it.
>
>
> -Ken
>
>
>
>
> -----Original Message-----
> From: David Jencks [mailto:davidjencks@...]
> Sent: Tuesday, February 06, 2001 12:25 PM
> To: firebird-devel@...
> Cc: ib-java@yahoogroups.com
> Subject: [IB-Java] Interclient 20 changes
>
>
> (sorry about the previous blank message)
>
> Hi!
>
> I have (I think) after waiting a week for CVS access and many struggles
> with CVS contributed an ant build script and many changes to
> DatabaseMetaData.
>
> The ant build script can be used to build interclient, interserver (gcc)
> or
> both. ( on linux, rh7). You may need to adjust some directory specs to
> get
> output where you want. If you haven't tried ant, do so now.
> (http://jakarta.apache.org/ant/index.html)
>
>
> The changes to DatabaseMetaData make getTables work reliably and make
> methods taking wildcards in parameters accept escaped wildcards properly.
>
> I can only build/test this on linux, I don't know if these changes break
> windows/other os versions. If you can test.. please do so.
>
> ***********
> CVS problem.
>
> I am having a big prblem with CVS, any advice/help would be greatly
> appreciated. I connect with ssh, and after every command it asks me for
> my
> password. After I enter it, cvs says
>
> Could not chdir to home directory /home/users/d_jencks No such file or
> directory
>
> I think as a result of this I can only commit one file at a time. Any
> ideas? I created a /home/users/d_jencks directory on my machine, it
> didn't
> help ( my local username is david, not d_jencks)
>
> **********
>
> After the cvs problem is sorted out I will add my ant based sql tool that
> can be used for regression testing.
>
> Thanks
> David Jencks
>
>
>
> To unsubscribe from this group, send an email to:
> IB-Java-unsubscribe@egroups.com
>
>
>
>
>
> To unsubscribe from this group, send an email to:
> IB-Java-unsubscribe@egroups.com
>
>
>
>
>