mirror of
https://github.com/ChronosX88/psyced.git
synced 2024-11-12 13:31:00 +00:00
restart from working psyc codebase and look at new code later
This commit is contained in:
parent
3709792118
commit
ecda9d906c
@ -5,7 +5,7 @@ vim:nosmarttab:syntax=diff
|
|||||||
| - marks bugs & fixes, + marks new features, ? marks issues, * marks big stuff
|
| - marks bugs & fixes, + marks new features, ? marks issues, * marks big stuff
|
||||||
|
|
|
|
||||||
| This file is mostly being used by lynX. The public bug tracker for psyced
|
| This file is mostly being used by lynX. The public bug tracker for psyced
|
||||||
| resides at https://projects.x-net.hu/projects/psyced/ and contains the
|
| resides at https://projects.tgbit.net/projects/psyced/ and contains the
|
||||||
| same stuff in a more multiuser accessible fashion.
|
| same stuff in a more multiuser accessible fashion.
|
||||||
________________________________________________________________________
|
________________________________________________________________________
|
||||||
== SERIOUS!!! ==========================================================
|
== SERIOUS!!! ==========================================================
|
||||||
|
@ -99,6 +99,7 @@ private connect2(ip, port, host, extra) {
|
|||||||
if (sscanf(extra, "%s:%d;%s", host, port, extra) == 3) {
|
if (sscanf(extra, "%s:%d;%s", host, port, extra) == 3) {
|
||||||
P3(("fallback: %s:%d, other %O\n", host, port, extra))
|
P3(("fallback: %s:%d, other %O\n", host, port, extra))
|
||||||
is_connecting = 0;
|
is_connecting = 0;
|
||||||
|
// why 10 seconds here? this can be improved
|
||||||
call_out(#'connect, 10, host, port, 1, extra == "" ? 0 : extra);
|
call_out(#'connect, 10, host, port, 1, extra == "" ? 0 : extra);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,10 @@
|
|||||||
// $Id: circuit.c,v 1.38 2008/10/14 19:02:29 lynx Exp $
|
// $Id: circuit.c,v 1.38 2008/10/14 19:02:29 lynx Exp $
|
||||||
|
|
||||||
#include "psyc.h"
|
#include "psyc.h"
|
||||||
|
#include "../psyc/circuit.c"
|
||||||
|
|
||||||
|
#if 0 // first we get the syntax running, then we'll think of new features:
|
||||||
|
|
||||||
#include <net.h>
|
#include <net.h>
|
||||||
#include <uniform.h>
|
#include <uniform.h>
|
||||||
#include <tls.h>
|
#include <tls.h>
|
||||||
@ -324,3 +328,5 @@ varargs int msg(string source, string mc, string data,
|
|||||||
#endif
|
#endif
|
||||||
return emit(buf);
|
return emit(buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif // 0
|
||||||
|
2
world/net/spyc/common.h
Normal file
2
world/net/spyc/common.h
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
#include "../psyc/common.h"
|
||||||
|
|
@ -1,3 +1,5 @@
|
|||||||
|
#if 0 // first we get the syntax running, then we'll think of new features:
|
||||||
|
|
||||||
// included by TCP circuit *and* UDP daemon // vim:syntax=lpc
|
// included by TCP circuit *and* UDP daemon // vim:syntax=lpc
|
||||||
|
|
||||||
void dispatch(mixed header_vars, mixed varops, mixed method, mixed body) {
|
void dispatch(mixed header_vars, mixed varops, mixed method, mixed body) {
|
||||||
@ -242,3 +244,4 @@ void dispatch(mixed header_vars, mixed varops, mixed method, mixed body) {
|
|||||||
::dispatch(header_vars, varops, method, body);
|
::dispatch(header_vars, varops, method, body);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif // 0
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
#if 0 // first we get the syntax running, then we'll think of new features:
|
||||||
|
|
||||||
// vim:foldmethod=marker:syntax=lpc:noexpandtab
|
// vim:foldmethod=marker:syntax=lpc:noexpandtab
|
||||||
// $Id: parse.c,v 1.30 2008/12/18 18:16:14 lynx Exp $
|
// $Id: parse.c,v 1.30 2008/12/18 18:16:14 lynx Exp $
|
||||||
//
|
//
|
||||||
@ -449,3 +451,4 @@ void resume_parse() {
|
|||||||
state = PSYCPARSE_STATE_HEADER;
|
state = PSYCPARSE_STATE_HEADER;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif // 0
|
||||||
|
3
world/net/spyc/parse.i
Normal file
3
world/net/spyc/parse.i
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#include "psyc.h"
|
||||||
|
#include "../psyc/parse.i"
|
||||||
|
|
@ -23,7 +23,15 @@
|
|||||||
* the first byte.
|
* the first byte.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define SPYC
|
#ifndef SPYC
|
||||||
|
# define SPYC
|
||||||
|
|
||||||
|
# include <psyc.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// EOF
|
||||||
|
|
||||||
|
#if 0 // first we get the syntax running, then we'll think of new features:
|
||||||
|
|
||||||
#define PSYCPARSE_STATE_HEADER 0
|
#define PSYCPARSE_STATE_HEADER 0
|
||||||
#define PSYCPARSE_STATE_CONTENT 1
|
#define PSYCPARSE_STATE_CONTENT 1
|
||||||
@ -37,4 +45,4 @@
|
|||||||
return; \
|
return; \
|
||||||
}
|
}
|
||||||
|
|
||||||
#include <psyc.h>
|
#endif // 0
|
||||||
|
@ -4,6 +4,10 @@
|
|||||||
// the thing that answers on port 4404 of psyced.
|
// the thing that answers on port 4404 of psyced.
|
||||||
|
|
||||||
#include "psyc.h"
|
#include "psyc.h"
|
||||||
|
#include "../psyc/server.c"
|
||||||
|
|
||||||
|
#if 0 // first we get the syntax running, then we'll think of new features:
|
||||||
|
|
||||||
#include <net.h>
|
#include <net.h>
|
||||||
#include <services.h>
|
#include <services.h>
|
||||||
#define NO_INHERIT
|
#define NO_INHERIT
|
||||||
@ -189,3 +193,5 @@ void circuit_msg(string mc, mapping vars, string data) {
|
|||||||
return ::circuit_msg(mc, vars, data);
|
return ::circuit_msg(mc, vars, data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif // 0
|
||||||
|
@ -2,6 +2,10 @@
|
|||||||
// $Id: udp.c,v 1.7 2008/07/17 15:07:59 lynx Exp $
|
// $Id: udp.c,v 1.7 2008/07/17 15:07:59 lynx Exp $
|
||||||
|
|
||||||
#include "psyc.h"
|
#include "psyc.h"
|
||||||
|
#include "../psyc/udp.c"
|
||||||
|
|
||||||
|
#if 0 // first we get the syntax running, then we'll think of new features:
|
||||||
|
|
||||||
#include <net.h>
|
#include <net.h>
|
||||||
#include <uniform.h>
|
#include <uniform.h>
|
||||||
#include <text.h>
|
#include <text.h>
|
||||||
@ -36,3 +40,5 @@ parseUDP(ip, port, msg) {
|
|||||||
// ignoring the routing vars.. TODO FIXME
|
// ignoring the routing vars.. TODO FIXME
|
||||||
#define PSYC_UDP
|
#define PSYC_UDP
|
||||||
#include "dispatch.i"
|
#include "dispatch.i"
|
||||||
|
|
||||||
|
#endif // 0
|
||||||
|
Loading…
Reference in New Issue
Block a user