mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-22 20:11:44 +00:00
Fixed some plugin problems.
loading/closing is more verbose (and a tiny bit easier) git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1102 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
abc205c2e5
commit
b172d60b88
1 changed files with 27 additions and 3 deletions
|
@ -968,7 +968,8 @@ int Plug_Net_TCPConnect(void *offset, unsigned int mask, const long *arg)
|
||||||
|
|
||||||
netadr_t a;
|
netadr_t a;
|
||||||
|
|
||||||
NET_StringToAdr(localip, &a);
|
if (!NET_StringToAdr(localip, &a))
|
||||||
|
return -1;
|
||||||
NetadrToSockadr(&a, &to);
|
NetadrToSockadr(&a, &to);
|
||||||
if (((struct sockaddr_in*)&to)->sin_family == AF_INET && !((struct sockaddr_in*)&to)->sin_port)
|
if (((struct sockaddr_in*)&to)->sin_family == AF_INET && !((struct sockaddr_in*)&to)->sin_port)
|
||||||
((struct sockaddr_in*)&to)->sin_port = htons(localport);
|
((struct sockaddr_in*)&to)->sin_port = htons(localport);
|
||||||
|
@ -1082,8 +1083,20 @@ void Plug_List_f(void);
|
||||||
void Plug_Close_f(void);
|
void Plug_Close_f(void);
|
||||||
void Plug_Load_f(void)
|
void Plug_Load_f(void)
|
||||||
{
|
{
|
||||||
if (!Plug_Load(Cmd_Argv(1)))
|
char *plugin;
|
||||||
Con_Printf("Couldn't load plugin %s\n", Cmd_Argv(1));
|
plugin = Cmd_Argv(1);
|
||||||
|
if (!*plugin)
|
||||||
|
{
|
||||||
|
Con_Printf("Loads a plugin\n");
|
||||||
|
Con_Printf("plug_load [pluginpath]\n");
|
||||||
|
Con_Printf("example pluginpath: plugins/blahx86.so\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!Plug_Load(plugin))
|
||||||
|
{
|
||||||
|
if (!Plug_Load(va("plugins/%s", plugin)))
|
||||||
|
Con_Printf("Couldn't load plugin %s\n", Cmd_Argv(1));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Plug_Init(void)
|
void Plug_Init(void)
|
||||||
|
@ -1327,6 +1340,17 @@ void Plug_Close_f(void)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
name = va("plugins/%s", name);
|
||||||
|
for (plug = plugs; plug; plug = plug->next)
|
||||||
|
{
|
||||||
|
if (!strcmp(plug->name, name))
|
||||||
|
{
|
||||||
|
Plug_Close(plug);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Con_Printf("Plugin %s does not appear to be loaded\n", Cmd_Argv(1));
|
||||||
}
|
}
|
||||||
|
|
||||||
void Plug_CloseAll_f(void)
|
void Plug_CloseAll_f(void)
|
||||||
|
|
Loading…
Reference in a new issue