similar to: local IP address for NETWORK SOCKET

Displaying 20 results from an estimated 1200 matches similar to: "local IP address for NETWORK SOCKET"

2006 Dec 27
1
network application problem
Installed BuddyTalk Dialer (VoIP client). It was requested mfc42.dll which I was download and put in system32. After running it could not regiter with server. Probably because it is incorrectly create udp socket. it listen UDP port 8481 on 255.255.255.255 address instead of 0.0.0.0 which linux kernel usually listen. I use kernel 2.6.17-10-386 Ubuntu edgy 6.10 here a netstat output winehost:~$
2002 Mar 21
4
ExitThread won't.
Okay, so with complete lack of any other ideas, I tried to figure out what was wrong with my app (Proxomitron), which is leaving unkillable processes around. So I went into ExitThread, and added something like: DPRINTF("%08lx:Exiting thread...(%d)\n", GetCurrentThreadId(),getpid()); exit(code); right at the top of the function. And, lo and behold, the processId matches the
2005 Sep 28
3
gfortran Makefile for windows
Hi all, (Originally posted to r-help) I'm porting a package that I've worked on for OS X to Windows. The package is written in F95 so I need to compile it with gfortran and link it with gcc4. I've been trying to build an R with gcc4 without luck so far. If there is a binary of such a thing info would be appreciated. This package requires a Makefile. My question is, how can I find
2004 Sep 20
1
problem typcasting return of R_ExternalPtrAddr(SEXP s)
In the odesolve routine lsoda(), I allow the function (named func) that calculates the system of differential equations to be defined in a dll that has been dynamically loaded from the file named in dllname. I use getNativeSymbolInfo(func, dllname)$address to get the address of the function and pass it to a C function called via the .Call interface. Inside that C function, I use
2007 Apr 22
2
ActiveX Controls Not Working
For a month I've been trying to get ActiveX controls working from the ToolkitCMA.com site with IE6. Some serious weirdness going on. So now I check what I look like at http://bellsnwhistles.com/bells.html, and it informs me that: "The Browser you are using is Microsoft Internet Explorer (Mozilla) 4.0 (compatible; MSIE 6.0; Windows 98)" Eh no, I check Help|About IE, and it
2007 Dec 20
2
SHLIB steps on a Makefile
Hi, I need to create a Makefile.win for a given package so as to fiddle slightly with the compilation process. My Makefile works fine in Linux but I am having trouble creating Makefile.win for MinGW. I first looked at the commands that Rcmd SHLIB appeared to be running and copied those onto the Makefile. But one step seems to be missing, the creation of the _res.rc file needed by windres
2001 Dec 11
2
Rcmd SHLIB problem
Dear R-help, I'm having problem creating a dll using Rcmd SHLIB with R-1.3.1 on WinNT4: C:\TEMP>Rcmd SHLIB tryf.o make[1]: `libR.a' is up to date. make: *** No rule to make target `'tryf.o', needed by `tryf.a'. Stop. C:\TEMP>Rcmd SHLIB tryf.f make[1]: `libR.a' is up to date. make: *** No rule to make target `'tryf.o', needed by `tryf.a'. Stop. I
2001 Dec 11
2
Rcmd SHLIB problem
Dear R-help, I'm having problem creating a dll using Rcmd SHLIB with R-1.3.1 on WinNT4: C:\TEMP>Rcmd SHLIB tryf.o make[1]: `libR.a' is up to date. make: *** No rule to make target `'tryf.o', needed by `tryf.a'. Stop. C:\TEMP>Rcmd SHLIB tryf.f make[1]: `libR.a' is up to date. make: *** No rule to make target `'tryf.o', needed by `tryf.a'. Stop. I
2001 May 13
1
Dynamic C Symbols and Embedding Suggestion
Hello, I've been playing around w/ the new dynamic C symbol stuff (thank you for doing that!) in the, um, 5/11/01 R-devel package and, unless I've missed something incredibly obvious, there doesn't appear to be a mechanism for registering functions of an embedding executable. It seems like this would be a Good Thing to have. Since I'm doing most of my work in Windows at the
1998 Jun 06
1
R-beta: makefile command line for recreating dynload demo dll
Hi, I have gnuwin32 (b18) and the rw0613b.zip version of R. With regards to (re)making the dynload dll demo given (zero.dll) could anyone tell me what the command line for the makefile should be. ie, make -f Makefile.in ...? Thanks for any help -- Douglas -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read
2002 Apr 23
1
Can't load native dll
When I try to load winelib dll I get an error message: "err:module:MODULE_LoadLibraryExA Loading of native DLL <dllname> failed (error 193), check this file." The error message is printed for call: DllHandle = LoadLibrary(DllName); This happens even when I try to load standard Wine dlls, like dlls/msisys.ocx.so Did I miss something obvious? Thanks, Andriy Palamarchuk
2002 Jul 31
3
SHLIB
Hi, I'm having a problem using the 'SHLIB' command in R. I keep getting syntax errors. The help gives the following usage for it: Rcmd SHLIB [-o dllname] files 'files' is supposed to be a list of files, but whether I set up a list or a character vector, I still get a syntax error. Does anyone know if they're are supposed to be quotes somewhere in there? If someone has an
2004 Oct 06
1
Foreign code problem
Hello, I wanted to test the odesolve package and tried to use compiled C-code. But when I do: erg <- lsoda(y, times, "mond", parms, rtol, atol, tcrit=NULL, jacfunc=NULL, verbose=FALSE, dllname="mond", hmin=0, hmax=Inf) I get the error message: Error in lsoda(y, times, "mond", parms, rtol, atol, tcrit = NULL, jacfunc =
2001 Jan 05
2
running Rcmd INSTALL, again
Ok, one last try. R1.2.0, WinNT 4.0: [R is installed in: R_HOME=D:\Programme\R\rw1020] Can anyone give a hint what the following error message (when running Rcmd INSTALL) means and what to do about it? cd D:\Programme\R\rw1020\src\library D:\Programme\R\rw1020\bin\rcmd install testfunctions make: Entering directory `/cygdrive/d/Programme/R/rw1020/src/gnuwin32' dlltool -k --as as --dllname
2018 Aug 09
4
SIGSEGV in R_RunWeakRefFinalizer, object allocated with Rcpp
On 9 August 2018 at 20:37, Tomas Kalibera wrote: | So to answer your original question, this could probably be handled in | Rcpp, Hm. Why do you say that / what did you have in mind? Recall that we do not alter SEXPs or introduce additional additional reference counters -- because we do not think that altering the basic R API for such calls would be a wise strategy. So we do more or less what
2017 Jun 14
2
Using LLD to create a .lib from a .def
I'm copying some LLD code into my codebase like this: // workaround for LLD not exposing ability to convert .def to .lib #include <set> namespace lld { namespace coff { class SymbolBody; class StringChunk; struct Symbol; struct Export { StringRef Name; // N in /export:N or /export:E=N StringRef ExtName; // E in /export:E=N SymbolBody *Sym = nullptr; uint16_t Ordinal
2007 Apr 21
4
Ford Tech Serv app does not work
This just an FYI. Yesterday I updated to top of trunk wine and rebuilt and installed. I have a Ford Service CD (for 1999 models) and wine on the exe does not work (on an old Windows ME laptop it all works). The startup.exe sort of seems to work AFAICT, but when it's done and the app exe started the app exe ( installed on disk) cannot seem to find the cd (the app needs the CD, the install
2003 May 08
1
dcom98, ole32=n and CreateProcess
hi, can't change line wrapping, so am attaching plain text file with message. waiting for answer. TIA -------------- next part -------------- I have no-windows wine system. when installing "dcom98.exe" package into clean system I get such msg-box with an alert: "A newer version of DCOM95 or DCOM98 had been installed. To override, you must uninstall the current version
2004 Sep 29
1
[Fwd: Re: Newbie]
-------------- next part -------------- An embedded message was scrubbed... From: Giuseppe Taroni <horsehorse@libero.it> Subject: Re: [Wine] Newbie Date: Wed, 29 Sep 2004 14:00:07 +0200 Size: 5903 Url: http://www.winehq.org/pipermail/wine-users/attachments/20040929/aa9b6754/attachment.mht
2002 Nov 21
3
Tribes 1.x & Wine
Has anyone ever tried to actually get a tribes server running under wine or another emulator? Just the other day i was setting up a linux counter-strike server. My friend asked me if i would setup a Tribes 1.0 or 1.11 server. I thought linux would be a great way to do it. I was trying to run a headless / dedicated starsiege tribes server (1.0/1.11) I Installed the tribes files (including the