IRC prob :(
•
9 Aug 2007, 11:47
•
Journals
when i opened irc ( with nns if that's important? ) but all i get is this:
(12:37:28) * Connecting to server4.bouncer4you.biz (6003)
(12:37:28) Local host: d51A42BAE.access.telenet.be (81.164.43.174)
(12:37:28) -Notice- *** shroudBNC1.1 $Revision: 371 $
(12:37:28) -Notice- *** Looking up your hostname
(12:37:28) -Notice- *** Found your hostname (d51A42BAE.access.telenet.be)
(12:41:21) * Disconnected
(12:41:23) * Connecting to server4.bouncer4you.biz (6003)
(12:41:23) Local host: d51A42BAE.access.telenet.be (81.164.43.174)
(12:41:23) -Notice- *** shroudBNC1.1 $Revision: 371 $
(12:41:23) -Notice- *** Looking up your hostname
(12:41:23) -Notice- *** Found your hostname (d51A42BAE.access.telenet.be)
and my BNC tells me this:
(12:37:28) (-sBNC) You have new messages. Use '/msg -sBNC read' to view them.
(12:39:06) (-sBNC) Disconnected from the server.
(12:41:24) (-sBNC) Scheduled reconnect in 15 seconds.
(12:41:24) (-sBNC) You have new messages. Use '/msg -sBNC read' to view them.
(12:41:35) (``Xeon) read
(12:41:35) (-sBNC) Mi 08 Aug 2007 15:30:43 CEST Disconnected from the server.
(12:41:35) (-sBNC) Mi 08 Aug 2007 18:17:31 CEST Disconnected from the server.
(12:41:35) (-sBNC) End of LOG. Use '/msg -sBNC erase' to remove this log.
(12:41:38) (-sBNC) Scheduled reconnect in 15 seconds.
(12:41:54) (-sBNC) Scheduled reconnect in 15 seconds.
(12:42:09) (-sBNC) Scheduled reconnect in 15 seconds.
(12:42:24) (-sBNC) Trying to reconnect to de.quakenet.org:6667
(12:45:33) (-sBNC) Disconnected from the server.
so i always disconnect :<
any1 got the solution? thx
EDIT: Working again...changed ip and worked again ?
(12:37:28) * Connecting to server4.bouncer4you.biz (6003)
(12:37:28) Local host: d51A42BAE.access.telenet.be (81.164.43.174)
(12:37:28) -Notice- *** shroudBNC1.1 $Revision: 371 $
(12:37:28) -Notice- *** Looking up your hostname
(12:37:28) -Notice- *** Found your hostname (d51A42BAE.access.telenet.be)
(12:41:21) * Disconnected
(12:41:23) * Connecting to server4.bouncer4you.biz (6003)
(12:41:23) Local host: d51A42BAE.access.telenet.be (81.164.43.174)
(12:41:23) -Notice- *** shroudBNC1.1 $Revision: 371 $
(12:41:23) -Notice- *** Looking up your hostname
(12:41:23) -Notice- *** Found your hostname (d51A42BAE.access.telenet.be)
and my BNC tells me this:
(12:37:28) (-sBNC) You have new messages. Use '/msg -sBNC read' to view them.
(12:39:06) (-sBNC) Disconnected from the server.
(12:41:24) (-sBNC) Scheduled reconnect in 15 seconds.
(12:41:24) (-sBNC) You have new messages. Use '/msg -sBNC read' to view them.
(12:41:35) (``Xeon) read
(12:41:35) (-sBNC) Mi 08 Aug 2007 15:30:43 CEST Disconnected from the server.
(12:41:35) (-sBNC) Mi 08 Aug 2007 18:17:31 CEST Disconnected from the server.
(12:41:35) (-sBNC) End of LOG. Use '/msg -sBNC erase' to remove this log.
(12:41:38) (-sBNC) Scheduled reconnect in 15 seconds.
(12:41:54) (-sBNC) Scheduled reconnect in 15 seconds.
(12:42:09) (-sBNC) Scheduled reconnect in 15 seconds.
(12:42:24) (-sBNC) Trying to reconnect to de.quakenet.org:6667
(12:45:33) (-sBNC) Disconnected from the server.
so i always disconnect :<
any1 got the solution? thx
EDIT: Working again...changed ip and worked again ?
*edit: changed but doesn't work :<*
or this can be by your bnc host if that doesent help
#include <stdio.h>
// DLL function signature
typedef double (*importFunction)(double, double);
int main(int argc, char **argv)
{
importFunction addNumbers;
double result;
// Load DLL file
HINSTANCE hinstLib = LoadLibrary("Example.dll");
if (hinstLib == NULL) {
printf("ERROR: unable to load DLL\n");
return 1;
}
// Get function pointer
addNumbers = (importFunction)GetProcAddress(hinstLib, "AddNumbers");
if (addNumbers == NULL) {
printf("ERROR: unable to find DLL function\n");
FreeLibrary(hinstLib);
return 1;
}
// Call function.
result = addNumbers(1, 2);
// Unload DLL file
FreeLibrary(hinstLib);
// Display result
printf("The result was: %f\n", result);
return 0;
}