1
0
Fork 0
flightgear/src/FDM/JSBSim/FGfdmSocket.h

114 lines
3.2 KiB
C
Raw Normal View History

2000-11-03 23:02:47 +00:00
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1999-12-20 20:25:13 +00:00
Header: FGfdmSocket.h
Author: Jon S. Berndt
Date started: 11/08/99
------------- Copyright (C) 1999 Jon S. Berndt (jsb@hal-pc.org) -------------
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; either version 2 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
Place - Suite 330, Boston, MA 02111-1307, USA.
Further information about the GNU General Public License can also be found on
the world wide web at http://www.gnu.org.
HISTORY
--------------------------------------------------------------------------------
11/08/99 JSB Created
2000-11-03 23:02:47 +00:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1999-12-20 20:25:13 +00:00
SENTRY
2000-11-03 23:02:47 +00:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
1999-12-20 20:25:13 +00:00
#ifndef FGfdmSocket_H
#define FGfdmSocket_H
2000-11-03 23:02:47 +00:00
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1999-12-20 20:25:13 +00:00
COMMENTS, REFERENCES, and NOTES
2000-11-03 23:02:47 +00:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
1999-12-20 20:25:13 +00:00
2000-11-03 23:02:47 +00:00
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1999-12-20 20:25:13 +00:00
INCLUDES
2000-11-03 23:02:47 +00:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
1999-12-20 20:25:13 +00:00
#include <stdio.h>
#ifdef FGFS
2000-02-15 03:30:01 +00:00
# include <simgear/compiler.h>
2001-04-02 03:12:38 +00:00
# include STL_STRING
# include STL_IOSTREAM
# include STL_FSTREAM
# if !defined(SG_HAVE_NATIVE_SGI_COMPILERS)
SG_USING_STD(cout);
SG_USING_STD(endl);
# endif
1999-12-20 20:25:13 +00:00
#else
2001-04-02 03:12:38 +00:00
# include <string>
# if defined(sgi) && !defined(__GNUC__)
# include <iostream.h>
# include <fstream.h>
# else
# include <iostream>
# include <fstream>
using std::cout;
using std::endl;
# endif
1999-12-20 20:25:13 +00:00
#endif
#include <sys/types.h>
#include "FGJSBBase.h"
1999-12-20 20:25:13 +00:00
#if defined(__BORLANDC__) || defined(_MSC_VER) || defined(__MINGW32__)
1999-12-20 20:25:13 +00:00
#include <winsock.h>
#else
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#include <errno.h>
#endif
2000-11-03 23:02:47 +00:00
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1999-12-20 20:25:13 +00:00
DEFINITIONS
2000-11-03 23:02:47 +00:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
1999-12-20 20:25:13 +00:00
2001-03-30 01:04:50 +00:00
#define ID_FDMSOCKET "$Id$"
2000-11-03 23:02:47 +00:00
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1999-12-20 20:25:13 +00:00
CLASS DECLARATION
2000-11-03 23:02:47 +00:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
1999-12-20 20:25:13 +00:00
using std::string;
1999-12-20 20:25:13 +00:00
class FGfdmSocket : public FGJSBBase
{
1999-12-20 20:25:13 +00:00
public:
FGfdmSocket(string, int);
2001-03-30 01:04:50 +00:00
~FGfdmSocket();
1999-12-20 20:25:13 +00:00
void Send(void);
void Append(const char*);
2001-11-20 22:34:24 +00:00
void Append(double);
1999-12-20 20:25:13 +00:00
void Append(long);
void Clear(void);
private:
int sckt;
int size;
struct sockaddr_in scktName;
struct hostent *host;
string buffer;
2001-12-24 13:54:55 +00:00
void Debug(int from);
1999-12-20 20:25:13 +00:00
};
2000-02-15 03:30:01 +00:00
#endif