diff options
author | Mike Buland <eichlan@xagasoft.com> | 2023-07-31 15:17:52 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2023-07-31 15:17:52 -0700 |
commit | a49af97abf091a32f6ec2c3985aa0890ded65d9c (patch) | |
tree | 9332acb37ccaa1552bf273d2383d4a0292deea14 /src/stable/serverinterface.cpp | |
parent | 9a7dde29dc1bc1f699508ad9c0335f4d7abf319f (diff) | |
download | libbu++-a49af97abf091a32f6ec2c3985aa0890ded65d9c.tar.gz libbu++-a49af97abf091a32f6ec2c3985aa0890ded65d9c.tar.bz2 libbu++-a49af97abf091a32f6ec2c3985aa0890ded65d9c.tar.xz libbu++-a49af97abf091a32f6ec2c3985aa0890ded65d9c.zip |
Debugging yet, but the new server works.
It at least seems to!
Diffstat (limited to '')
-rw-r--r-- | src/stable/serverinterface.cpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/stable/serverinterface.cpp b/src/stable/serverinterface.cpp new file mode 100644 index 0000000..0e3122e --- /dev/null +++ b/src/stable/serverinterface.cpp | |||
@@ -0,0 +1,29 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2019 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libbu++ library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
8 | #include "bu/serverinterface.h" | ||
9 | #include "bu/server.h" | ||
10 | |||
11 | Bu::ServerInterface::ServerInterface( Server &rSrv ) : | ||
12 | rSrv( rSrv ) | ||
13 | { | ||
14 | } | ||
15 | |||
16 | Bu::ServerInterface::ServerInterface( const ServerInterface &rSrc ) : | ||
17 | rSrv( rSrc.rSrv ) | ||
18 | { | ||
19 | } | ||
20 | |||
21 | Bu::ServerInterface::~ServerInterface() | ||
22 | { | ||
23 | } | ||
24 | |||
25 | void Bu::ServerInterface::outputReady( int iClientId ) | ||
26 | { | ||
27 | rSrv.clientWriteReady( iClientId ); | ||
28 | } | ||
29 | |||