2001-05-23 15:26:42 +02:00
|
|
|
/*
|
|
|
|
* PROGRAM: JRD Remote Interface/Server
|
|
|
|
* MODULE: inet_proto.h
|
2003-10-29 11:53:47 +01:00
|
|
|
* DESCRIPTION: Prototpe header file for inet.cpp
|
2001-05-23 15:26:42 +02:00
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Interbase Public
|
|
|
|
* License Version 1.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy
|
|
|
|
* of the License at http://www.Inprise.com/IPL.html
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an
|
|
|
|
* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
|
|
|
|
* or implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
|
|
|
*
|
|
|
|
* The Original Code was created by Inprise Corporation
|
|
|
|
* and its predecessors. Portions created by Inprise Corporation are
|
|
|
|
* Copyright (C) Inprise Corporation.
|
|
|
|
*
|
|
|
|
* All Rights Reserved.
|
|
|
|
* Contributor(s): ______________________________________.
|
|
|
|
*/
|
|
|
|
|
2003-10-03 03:20:50 +02:00
|
|
|
#ifndef REMOTE_INET_PROTO_H
|
|
|
|
#define REMOTE_INET_PROTO_H
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2004-12-17 06:41:47 +01:00
|
|
|
#include "../common/classes/fb_string.h"
|
2013-04-04 15:17:57 +02:00
|
|
|
#include "../common/classes/RefCounted.h"
|
|
|
|
#include "../common/config/config.h"
|
2004-11-07 15:44:59 +01:00
|
|
|
|
2008-02-28 19:42:30 +01:00
|
|
|
namespace Firebird
|
|
|
|
{
|
|
|
|
class ClumpletReader;
|
2009-02-17 18:00:22 +01:00
|
|
|
}
|
2008-02-28 19:42:30 +01:00
|
|
|
|
2011-12-23 13:43:58 +01:00
|
|
|
rem_port* INET_analyze(ClntAuthBlock*, const Firebird::PathName&, const TEXT*,
|
2013-10-16 14:53:04 +02:00
|
|
|
bool, Firebird::ClumpletReader&, Firebird::RefPtr<Config>*, const Firebird::PathName*);
|
2013-04-04 15:17:57 +02:00
|
|
|
rem_port* INET_connect(const TEXT*, struct packet*, USHORT, Firebird::ClumpletReader*,
|
|
|
|
Firebird::RefPtr<Config>*);
|
2010-10-12 10:02:57 +02:00
|
|
|
rem_port* INET_reconnect(SOCKET);
|
2009-07-31 10:46:35 +02:00
|
|
|
rem_port* INET_server(SOCKET);
|
2009-01-16 10:55:38 +01:00
|
|
|
void setStopMainThread(FPTR_INT func);
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2003-10-03 03:20:50 +02:00
|
|
|
#endif // REMOTE_INET_PROTO_H
|