87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
*/
#define MAX_SCP_BUFSIZE 16384
void logevent(char *string)
{
}
void ldisc_send(char *buf, int len)
{
/*
* This is only here because of the calls to ldisc_send(NULL,
* 0) in ssh.c. Nothing in PSCP actually needs to use the ldisc
* as an ldisc. So if we get called with any real data, I want
* to know about it.
*/
|
|
|
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
*/
#define MAX_SCP_BUFSIZE 16384
void logevent(char *string)
{
}
void ldisc_send(char *buf, int len, int interactive)
{
/*
* This is only here because of the calls to ldisc_send(NULL,
* 0) in ssh.c. Nothing in PSCP actually needs to use the ldisc
* as an ldisc. So if we get called with any real data, I want
* to know about it.
*/
|