2010-12-01 16:35:50 +00:00
|
|
|
/*
|
|
|
|
* virnetclientstream.h: generic network RPC client stream
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006-2011 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-09-20 22:30:55 +00:00
|
|
|
* License along with this library. If not, see
|
2012-07-21 10:06:23 +00:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
2010-12-01 16:35:50 +00:00
|
|
|
*/
|
|
|
|
|
2019-06-18 16:12:39 +00:00
|
|
|
#pragma once
|
2010-12-01 16:35:50 +00:00
|
|
|
|
2019-06-18 16:12:39 +00:00
|
|
|
#include "virnetclientprogram.h"
|
|
|
|
#include "virobject.h"
|
2010-12-01 16:35:50 +00:00
|
|
|
|
|
|
|
typedef struct _virNetClientStream virNetClientStream;
|
|
|
|
typedef virNetClientStream *virNetClientStreamPtr;
|
|
|
|
|
2019-02-07 12:58:47 +00:00
|
|
|
typedef enum {
|
|
|
|
VIR_NET_CLIENT_STREAM_CLOSED_NOT = 0,
|
|
|
|
VIR_NET_CLIENT_STREAM_CLOSED_FINISHED,
|
|
|
|
VIR_NET_CLIENT_STREAM_CLOSED_ABORTED,
|
|
|
|
} virNetClientStreamClosed;
|
|
|
|
|
2010-12-01 16:35:50 +00:00
|
|
|
typedef void (*virNetClientStreamEventCallback)(virNetClientStreamPtr stream,
|
|
|
|
int events, void *opaque);
|
|
|
|
|
2019-02-07 12:58:46 +00:00
|
|
|
virNetClientStreamPtr virNetClientStreamNew(virNetClientProgramPtr prog,
|
2010-12-01 16:35:50 +00:00
|
|
|
int proc,
|
2016-04-11 14:50:04 +00:00
|
|
|
unsigned serial,
|
|
|
|
bool allowSkip);
|
2010-12-01 16:35:50 +00:00
|
|
|
|
2019-02-07 12:58:44 +00:00
|
|
|
int virNetClientStreamCheckState(virNetClientStreamPtr st);
|
|
|
|
|
|
|
|
int virNetClientStreamCheckSendStatus(virNetClientStreamPtr st,
|
|
|
|
virNetMessagePtr msg);
|
2010-12-01 16:35:50 +00:00
|
|
|
|
|
|
|
int virNetClientStreamSetError(virNetClientStreamPtr st,
|
|
|
|
virNetMessagePtr msg);
|
|
|
|
|
2019-02-07 12:58:47 +00:00
|
|
|
void virNetClientStreamSetClosed(virNetClientStreamPtr st,
|
|
|
|
virNetClientStreamClosed closed);
|
|
|
|
|
2010-12-01 16:35:50 +00:00
|
|
|
bool virNetClientStreamMatches(virNetClientStreamPtr st,
|
|
|
|
virNetMessagePtr msg);
|
|
|
|
|
|
|
|
int virNetClientStreamQueuePacket(virNetClientStreamPtr st,
|
|
|
|
virNetMessagePtr msg);
|
|
|
|
|
|
|
|
int virNetClientStreamSendPacket(virNetClientStreamPtr st,
|
|
|
|
virNetClientPtr client,
|
|
|
|
int status,
|
|
|
|
const char *data,
|
|
|
|
size_t nbytes);
|
|
|
|
|
|
|
|
int virNetClientStreamRecvPacket(virNetClientStreamPtr st,
|
|
|
|
virNetClientPtr client,
|
|
|
|
char *data,
|
|
|
|
size_t nbytes,
|
2016-05-20 11:04:29 +00:00
|
|
|
bool nonblock,
|
|
|
|
unsigned int flags);
|
2010-12-01 16:35:50 +00:00
|
|
|
|
2016-04-11 15:23:17 +00:00
|
|
|
int virNetClientStreamSendHole(virNetClientStreamPtr st,
|
|
|
|
virNetClientPtr client,
|
|
|
|
long long length,
|
|
|
|
unsigned int flags);
|
|
|
|
|
2016-05-20 13:28:29 +00:00
|
|
|
int virNetClientStreamRecvHole(virNetClientPtr client,
|
|
|
|
virNetClientStreamPtr st,
|
|
|
|
long long *length);
|
|
|
|
|
2010-12-01 16:35:50 +00:00
|
|
|
int virNetClientStreamEventAddCallback(virNetClientStreamPtr st,
|
|
|
|
int events,
|
|
|
|
virNetClientStreamEventCallback cb,
|
|
|
|
void *opaque,
|
|
|
|
virFreeCallback ff);
|
|
|
|
|
|
|
|
int virNetClientStreamEventUpdateCallback(virNetClientStreamPtr st,
|
|
|
|
int events);
|
|
|
|
int virNetClientStreamEventRemoveCallback(virNetClientStreamPtr st);
|
|
|
|
|
2012-01-10 15:57:30 +00:00
|
|
|
bool virNetClientStreamEOF(virNetClientStreamPtr st)
|
|
|
|
ATTRIBUTE_NONNULL(1);
|