windows-nt/Source/XPSP1/NT/com/rpc/perf/raw/inc/sct.h
2020-09-26 16:20:57 +08:00

178 lines
3.3 KiB
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//+-------------------------------------------------------------------------
//
// Microsoft Windows
//
// Copyright (C) Microsoft Corporation, 1994 - 1999
//
// File: sct.h
//
//--------------------------------------------------------------------------
/////////////////////////////////////////////////////////////////////////
//
// Filename: sct.h
//
// Description: This file contains routines for Socket I/O
// for use with IPC raw network performance tests.
//
// Authors: Scott Holden (Translator from NT API to win32 API)
// Mahesh Keni (Mahesh wrote this application using mostly
// NT native API calls)
//
/////////////////////////////////////////////////////////////////////////
#define MSIPX (AddrFly == AF_NS)
#define MAXSEQ 8
#define SERV_TCP_PORT 6666
#define SERV_UDP_PORT 6900
#define SERV_HOST_ADDR 11.30.11.20
#define CLINAME 11.30.11.22
#define SRVNAME_LEN 16
#define REQ 0
#define DATA 1
#define ClearSocket(PSOCK) {RtlZeroMemory(PSOCK ,sizeof (SOCKADDR));}
typedef int INTEGER;
typedef struct reqbuf * PREQBUF;
/************************************************************************/
// External variables
/************************************************************************/
extern PCHAR HostName;
extern PCHAR ServerName;
extern int AddrFly;
extern struct client Clients[MAXCLIENTS]; // all the client data
extern USHORT NClients;
/************************************************************************/
// External Function prototypes
/************************************************************************/
INTEGER
TCPSocket_Connect(
IN int AddrFly,
IN USHORT CIndex,
IN PCHAR srvaddr
);
NTSTATUS
SCTCP_Initialize(
IN USHORT NClients,
IN PCHAR ServerName,
IN USHORT SrvCli
);
NTSTATUS
SCTCP_PerClientInit(
IN USHORT CIndex,
IN USHORT SrvCli
);
NTSTATUS
SCTCP_Allocate_Memory(
IN USHORT CIndex
);
NTSTATUS
SCTCP_Deallocate_Memory(
IN USHORT CIndex
);
NTSTATUS
SCTCP_DoHandshake(
IN USHORT CIndex,
IN USHORT SrvCli
);
NTSTATUS
SCTCP_Cleanup(
VOID
);
NTSTATUS
SCTCP_Wait_For_Client(
IN USHORT CIndex
);
NTSTATUS
SCTCP_Disconnect_Client(
IN USHORT CIndex
);
NTSTATUS
SCTCP_ReadFromIPC(
IN USHORT CIndex,
IN OUT PULONG pReadDone,
IN USHORT SrvCli
);
NTSTATUS
SCTCP_WriteToIPC(
IN USHORT CIndex,
IN OUT PULONG pWriteDone,
IN USHORT SrvCli
);
NTSTATUS
SCTCP_XactIO(
IN USHORT CIndex,
IN OUT PULONG pReadDone,
IN OUT PULONG pWriteDone,
IN USHORT SrvCli,
IN BOOLEAN FirstIter
);
NTSTATUS
SCTCP_ThreadCleanUp(
IN USHORT CIndex
);
/************************************************************************/
// External Function prototypes
/************************************************************************/
extern
INTEGER
Socket_Listen(
IN USHORT CliIndx
);
extern
INTEGER
Socket_Accept(
IN USHORT CliIndx
);
extern
INTEGER
Socket_Recv(
IN USHORT CliIndx,
IN OUT PVOID PReadBuf,
IN OUT PULONG rpdatalen
);
extern
INTEGER
Socket_Send(
IN USHORT CliIndx,
IN OUT PVOID PWriteBuf,
IN OUT PULONG spdatalen
);
extern
INTEGER
Socket_Close(
IN USHORT CliIndx
);
/************************************************************************/