similar to: Help with port forwarding

Displaying 20 results from an estimated 8000 matches similar to: "Help with port forwarding"

2016 Mar 30
0
Help with port forwarding
Sounds like if you are testing this in the same place where the server is that your router may not be doing ?loopback?.. ask a friend to test it from their end, or at least reboot the router (some are fussy things) You can also test your ports externally from here: port tests regards From: Jesse McMillan Sent: Wednesday, March 30, 2016 8:17 PM To: icecast at xiph.org Subject: [Icecast] Help
2009 Apr 14
3
[LLVMdev] problems with dwarf/gdb
I'm having trouble debugging x86 code generated by LLVM. GDB does work with the code, but not correctly, for example, the "next" command does not skip over a function call. Here's an example. Source program gdb1.c: int x; void foo(){ x++; } void bar(){ x--; } int main(){ foo(); bar(); return 0; } commands: $ llvm-gcc -g -emit-llvm -c gdb1.c -o gdb1.bc $ llc
2010 Mar 25
2
netlabR package in English
Dear R users, Is documentation for the netlabR package available in English? If not does anyone know if or when it will be? Regards, Keith ****************************************************************************This e-mail and any files transmitted with it are confidential and are intended solely for the use of the individual or entity to whom it is addressed. If you are not
2009 Apr 15
2
[LLVMdev] problems with dwarf/gdb
I see. Here's another interesting issue: (gdb) b gdb1.c:4 No line 4 in file "gdb1.c". (gdb) step foo () at /home/mcmillan/projects/impact2/test//gdb1.c:4 4 x++; (gdb) You can see that I can step to line 4, but I can't set a breakpoint there. (I used -disable-fp-elim in the compilation). Have you seen this before? Thanks -- Ken Dale Johannesen wrote: > > > On
2009 Apr 21
2
[LLVMdev] problems with dwarf/gdb
Well... $ ~/software/llvm-gcc4.2-2.5-x86-linux-RHEL4/bin/llvm-gcc -g gdb1.c -o gdb1 /tmp/ccbAj8x9.s: Assembler messages: /tmp/ccbAj8x9.s:35: Error: suffix or operands invalid for `push' /tmp/ccbAj8x9.s:44: Error: suffix or operands invalid for `pop' /tmp/ccbAj8x9.s:56: Error: suffix or operands invalid for `push' /tmp/ccbAj8x9.s:65: Error: suffix or operands invalid for `pop'
2007 May 03
7
How to create a drop-down list with Markaby?
Hi I couldn''t figure out, how to create a drop-down list with Markaby. How would I create something like this: <select name="character"> <option value="marvin">Marvin the paranoid Android</option> <option value="arthur">Arthur Dent</option> <option value="zaphod">Zaphod
2009 Apr 14
2
[LLVMdev] problems with dwarf/gdb
Argiris Kirtzidis wrote: > > ... > > Try > llc -disable-fp-elim gdb1.bc > > Thanks, I would never have guessed that :-). Are there any other optimizations that are harmful to debug info that I should know about? Thanks -- Ken -- View this message in context: http://www.nabble.com/problems-with-dwarf-gdb-tp23033690p23049871.html Sent from the LLVM - Dev mailing list
2009 Apr 15
0
[LLVMdev] problems with dwarf/gdb
Ken McMillan wrote: > I see. Here's another interesting issue: > > (gdb) b gdb1.c:4 > No line 4 in file "gdb1.c". > (gdb) step > foo () at /home/mcmillan/projects/impact2/test//gdb1.c:4 > 4 x++; > (gdb) > > You can see that I can step to line 4, but I can't set a breakpoint there. > Works fine here (llvm 2.5, 32 bit, gdb 6.8) Try llc
2020 Jan 31
2
Status of java interface
Hello, I am embarking on a project using NUT on a Raspberry pi talking to a Cyberpower UPS for storm event (e.g. hurricane) power management at a remote location. I would prefer to use Java as a programming platform for this application, but I see the NUT Java project has not been updated in a long time (7 years?!). Is it being tested with new NUT releases or has been abandoned? If the later, I
2009 Apr 15
0
[LLVMdev] problems with dwarf/gdb
On Apr 14, 2009, at 4:19 PMPDT, Ken McMillan wrote: > > > > Argiris Kirtzidis wrote: >> >> ... >> >> Try >> llc -disable-fp-elim gdb1.bc >> >> > > Thanks, I would never have guessed that :-). > > Are there any other optimizations that are harmful to > debug info that I should know about? Lots of them. Partly this is because
2019 May 31
1
[mail-crypt-plugin] Password Query for Folder Keys questions
> Can you try > > doveadm -o plugin/mail_crypt_private_password=desired_password mailbox > cryptokey generate -u user -UR > > Aki I tried that and got the following: user at host:~$ doveadm -o plugin/mail_crypt_private_password=desired_password mailbox > cryptokey generate -u user -UR Folder Public ID user at host:~$ Then I sent a new email to the mail server, and I
2014 Jul 08
2
Dovecot not changing SSL key and certificate as in config file
I am trying to use my (decrypted) SSL key and certificate in Dovecot. I have changed /etc/dovecot/conf.d/10-ssl.conf like so: ssl_cert = </etc/ssl/private/ssl-chain-mail-mydomain.com.pem ssl_key = </etc/ssl/private/ssl-key-decrypted-mail-mydomain.com.key However, after running service dovecot restart, dovecot -n still says that the files /etc/dovecot/dovecot.pem and
2016 Jul 04
3
Updating release docs and minimal tools
Folks, I'm in the process of updating this page: http://llvm.org/docs/HowToReleaseLLVM.html which had its last review in the middle ages. In particular, I'm removing "dragonegg" from the list of requirements, changing the "build" instructions to use the test-release script (by pointing it to the right doc [1]), and updating the list of requirements. CMake is now
2011 Aug 15
2
Tripplite Smart1200LCD and Debian
Hey all, I am trying to use NUT for a Tripplite Smart1200 LCD on a fresh copy of Debian 6.0.2.1. I installed NUT version 2.4.3 and I have pored through pages and pages of other posts, but for the life of me I can not get it to recognize the Tripplite. I know its an 09ae:2009 device and I've tried to add a rule in /lib/udev/rules.d/52-nut-usbups.rules as according to some posts, but to no
2009 Apr 21
0
[LLVMdev] problems with dwarf/gdb
On Apr 20, 2009, at 5:06 PMPDT, Ken McMillan wrote: > > Well... > > $ ~/software/llvm-gcc4.2-2.5-x86-linux-RHEL4/bin/llvm-gcc -g gdb1.c - > o gdb1 > /tmp/ccbAj8x9.s: Assembler messages: > /tmp/ccbAj8x9.s:35: Error: suffix or operands invalid for `push' > /tmp/ccbAj8x9.s:44: Error: suffix or operands invalid for `pop' > /tmp/ccbAj8x9.s:56: Error: suffix or
2003 Aug 25
1
Key authenticity warning suggestion
Until recently I was unaware of how to get the key fingerprint of a host using ssh-keygen. Finding that out took asking several security-minded people. In other words, I don't think it's public knowledge. This made me think that the warning could be changed to something along these lines: The authenticity of host '192.168.0.123' can't be established. RSA key fingerprint in
2006 May 22
4
Sys.setlocale upsets windows graphics device (PR#8887)
Full_Name: Edward McNeil Version: 2.3.0 OS: Widows XP Submission from: (NULL) (203.170.234.5) Type the following: > Sys.setlocale("LC_ALL","C") > hist(1:10) CRASH
2009 Sep 14
3
installation problem
Hello All I have some problem for installing XML_2.6-0.tar . I am working in widows and R version is R-2.9.1 >*install.packages("XML")* After selecting a CRAN mirror ** *Error :-* Warning: unable to access index for repository http://cran.pt.r-project.org/bin/windows/contrib/2.9 Warning: unable to access index for repository
2009 Sep 19
3
Creating histograms from factors using a for loop
# I have a dataframe with data and factors similar to the following: a <- rep(c("a", "b"), c(6,6)) df <- data.frame(f=a, d=rnorm(12)) df # I am trying to write a 'for' loop which will produce a jpeg histogram for each factor. I can individually isolate the data from a factor and produce a jpeg histogram like so: fnc <- function(x){ x <-
2001 Aug 27
2
How to use wine, pls documentation pointers needed.
hello: I have successfully compiled (no problems at all) Wine release 20010824 on Suse 7.2. I have created the config file as mentioned in the README and man files, but so far have figured out how to go much farther. How do I really run a widows application? It must be some HOWTO or some like this.... What are the documentation/*.sgml files (tried konqueror browser... no success)? Some