summaryrefslogtreecommitdiff
path: root/roaming_dummy.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2009-06-21 18:53:53 +1000
committerDarren Tucker <dtucker@zip.com.au>2009-06-21 18:53:53 +1000
commitc5564e1c4c41ae9af96973e2996e2a4285acbae8 (patch)
treef9fae51c40975704cc73af6073914b00821e3009 /roaming_dummy.c
parent1cc55d7a607455d75db0204b5acebce47667b0f8 (diff)
- andreas@cvs.openbsd.org 2009/05/28 16:50:16
[sshd.c packet.c serverloop.c monitor_wrap.c clientloop.c sshconnect.c monitor.c Added roaming.h roaming_common.c roaming_dummy.c] Keep track of number of bytes read and written. Needed for upcoming changes. Most code from Martin Forssen, maf at appgate dot com. ok markus@ Also, applied appropriate changes to Makefile.in
Diffstat (limited to 'roaming_dummy.c')
-rw-r--r--roaming_dummy.c55
1 files changed, 55 insertions, 0 deletions
diff --git a/roaming_dummy.c b/roaming_dummy.c
new file mode 100644
index 000000000..cd1d20257
--- /dev/null
+++ b/roaming_dummy.c
@@ -0,0 +1,55 @@
1/*
2 * Copyright (c) 2004-2009 AppGate Network Security AB
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17/*
18 * This file is included in the client programs which should not
19 * support roaming.
20 */
21
22#include <sys/types.h>
23#include <unistd.h>
24
25int resume_in_progress = 0;
26
27u_int64_t get_recv_bytes()
28{
29 return 0;
30}
31
32ssize_t
33roaming_write(int fd, const void *buf, size_t count, int *cont)
34{
35 return write(fd, buf, count);
36}
37
38ssize_t
39roaming_read(int fd, void *buf, size_t count, int *cont)
40{
41 if (cont)
42 *cont = 0;
43 return read(fd, buf, count);
44}
45
46void
47add_recv_bytes(u_int64_t num)
48{
49}
50
51int
52resume_kex()
53{
54 return 1;
55}