search for: aip

Displaying 20 results from an estimated 21 matches for "aip".

Did you mean: aim
2018 Jan 22
3
tinc 1.1: freeaddrinfo(NULL) crash on windows
On Windows, freeaddrinfo(NULL) will result in a segv. In get_recent_address(), there is the following block of code: if(cache->aip) { sockaddr_t *sa = (sockaddr_t *)cache->aip->ai_addr; cache->aip = cache->aip->ai_next; if(!cache->aip) { freeaddrinfo(cache->aip); cache->aip = NULL; }...
2018 Jan 22
0
tinc 1.1: freeaddrinfo(NULL) crash on windows
On Mon, Jan 22, 2018 at 09:51:33AM -0700, Todd C. Miller wrote: > On Windows, freeaddrinfo(NULL) will result in a segv. In > get_recent_address(), there is the following block of code: > > if(cache->aip) { > sockaddr_t *sa = (sockaddr_t *)cache->aip->ai_addr; > cache->aip = cache->aip->ai_next; > > if(!cache->aip) { > freeaddrinfo(cache->aip); > cache->aip = NU...
2003 Jul 15
2
Windows 98 logon server problem
...ing message in the nmbd.log file: =-=-= [2003/07/15 12:15:05, 1] nmbd/nmbd_processlogon.c:process_logon_packet(69) process_logon_packet: Logon from 192.168.13.189: code = 0x0 =-=-= I have the following lines (among others) in my smb.conf: logon home = \\%L\home\%U\.profiles netbios name = AIP-KY workgroup = AIP-KY security = user encrypt passwords = yes password level = 8 domain master = yes preferred master = yes domain logons = yes logon script = logon.bat logon path = \\%L\profiles\%U logon home = \\%L\home\%U\.profiles Please let me know if you need any more information! Louis...
2005 Feb 26
1
Determine IP addres of a AIP/IAX user
Hello all! Is there any possibility to determine the IP address of a caller in my dialplan? I would like to have a predefined channel variable like ${CALLER_IP} but it seems it doesn't exist (http://www.voip-info.org/wiki-Asterisk+Variables) .. is this list complete? Are there any other possibility to store the SIP/IAX caller's IP address on every call? Thanks Niels
2003 Jun 13
1
Workgroup/Domain Browsing
...Redhat 8.0 server, and it is working great. Keep up the good work guys! My question involves a VPN connection to the server on a different network segment. I have the following setup: Internal Network - 192.168.13.0/24 | | Red Hat Samba Server - 192.168.13.3 - aip-ky | VPN | Windows XP Client - 192.168.10.2 On the XP client, I am able to manually specify shares on the samba server using the IP addres: \\192.168.13.3\data If I add an entry to my hosts file, I can do the following: \\aip-ky\data (lmhos...
2006 Oct 10
3
eps embedded fonts again
Dear friends, I am sorry, I again rise that boring question about font embedding in EPS figure. I found some discussions on this topic but there were no strait solution. The publisher (AIP) demands submission of separate EPS file for each figure with all fonts embedded in it (even the standard 14 Adobe fonts). As I understand the R does not do this embedding. It inserts only comments what font resources are needed. Then I should use some other software to do this task. Is there a so...
2012 Jul 06
8
[Bug 51798] New: Cannot enable second video card on nvidia quadro NVS420
...t: xorg Version: 7.7 (2011) Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: major Priority: medium Component: Driver/nouveau AssignedTo: nouveau at lists.freedesktop.org ReportedBy: ilyin at aip.de QAContact: xorg-team at lists.x.org Created attachment 63903 --> https://bugs.freedesktop.org/attachment.cgi?id=63903 lspci With nouveau module I can only see two monitors working which are connected to the first video card out of two cards of NVS420, connected via PCI bridge pc...
2018 Feb 16
2
tinc 1.1: freeaddrinfo(NULL) crash on windows
On Mon, 22 Jan 2018 18:08:22 +0100, Guus Sliepen wrote: > Thanks for reporting this bug! Indeed, that code is wrong. It should > free cache->ai instead of cache->aip. Even if it didn't crash on Linux, > it was a memory leak. A fix is now in the git repository. The fix leads to a use after free bug which is visible on macOS. It doesn't seem to be much of a problem on most platforms since a copy of freed memory is made almost immediately but on macOS...
2013 Jan 03
0
redhat 6.2 "libguestfs" for help
On Mon, Dec 31, 2012 at 09:56:51AM +0800, Aiping Liu wrote: > Dear Mr rjones, > My name is aiping.liu ,nice to meet you. I am from china. > Yesterday,i am build a libguestfs package with the OS > RHEL6.2(32bit),like this : rpmbuild -ba libguestfs.spec .I use a common > user.But then i get some errors fol...
2002 Nov 04
0
uncertainty principle is untenable !!!
.... Key words : uncertainty principle; experiment of Heisenberg Gamma-Ray Microscope; ideal experiment Ideal Experiment 1 Experiment of Heisenberg Gamma-Ray Microscope A free electron sits directly beneath the center of the microscope's lens (see the picture below or AIP page: http://www.aip.org/history/heisenberg/p08b.htm). The circular lens forms a cone of angle 2A from the electron. The electron is then illuminated from the left by gamma rays--high energy light which has the shortest wavelength. These yield the highest resolution, for according to a principle of...
2002 Oct 16
0
uncertainty principle is untenable !!! (new)
.... Key words : uncertainty principle; experiment of Heisenberg Gamma-Ray Microscope; ideal experiment Ideal Experiment 1 Experiment of Heisenberg Gamma-Ray Microscope A free electron sits directly beneath the center of the microscope's lens (see the picture below or AIP page: http://www.aip.org/history/heisenberg/p08b.htm). The circular lens forms a cone of angle 2A from the electron. The electron is then illuminated from the left by gamma rays--high energy light which has the shortest wavelength. These yield the highest resolution, for according to a principle of...
2015 Jul 02
0
[PATCH 2/2] setup_outgoing_connection: log to LOG_DEBUG on if no known address
...src/net_socket.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net_socket.c b/src/net_socket.c index 526d382..97d6c44 100644 --- a/src/net_socket.c +++ b/src/net_socket.c @@ -617,7 +617,7 @@ void setup_outgoing_connection(outgoing_t *outgoing) { if(n) outgoing->aip = outgoing->ai = get_known_addresses(n); if(!outgoing->ai) { - logger(DEBUG_ALWAYS, LOG_ERR, "No address known for %s", outgoing->name); + logger(DEBUG_ALWAYS, LOG_DEBUG, "No address known for %s", outgoing->name); return; } } -- 2.4.4
2015 Jul 02
1
[PATCH 1/2] (read|append)_config_file: log open errors as LOG_DEBUG
In a "decentrally managed vpn" it is very likely that host config files for some reachable nodes do not exist. Currently, tinc fills the logs with "Cannot open config file" messages. This commit changes the log level to LOG_DEBUG so syslog doesn't get filled by default. --- src/conf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/conf.c
2018 Feb 17
0
tinc 1.1: freeaddrinfo(NULL) crash on windows
On Fri, Feb 16, 2018 at 02:26:36PM -0700, Todd C. Miller wrote: > > Thanks for reporting this bug! Indeed, that code is wrong. It should > > free cache->ai instead of cache->aip. Even if it didn't crash on Linux, > > it was a memory leak. A fix is now in the git repository. > > The fix leads to a use after free bug which is visible on macOS. > It doesn't seem to be much of a problem on most platforms since a > copy of freed memory is made almost...
2007 Dec 13
0
New version of MBESS released
...nd standardized effect sizes (e.g., the standardized mean and mean difference, R^2 for random or fixed effects, the coefficient of variation, the root mean square error of approximation, standardized regression coefficients) as well as sample size planning from the accuracy in parameter estimation (AIPE) approach, where the width of the observed confidence intervals is of interest (in addition to or instead of the power analytic approach to sample size planning). This is the 10th release of MBESS and it is version number is now 1.0.0. Detailed information about MBESS is available in the current...
2007 Dec 13
0
New version of MBESS released
...nd standardized effect sizes (e.g., the standardized mean and mean difference, R^2 for random or fixed effects, the coefficient of variation, the root mean square error of approximation, standardized regression coefficients) as well as sample size planning from the accuracy in parameter estimation (AIPE) approach, where the width of the observed confidence intervals is of interest (in addition to or instead of the power analytic approach to sample size planning). This is the 10th release of MBESS and it is version number is now 1.0.0. Detailed information about MBESS is available in the current...
2005 Oct 06
1
Small question on the snmp-ups module
Hi, Our research group is planning to buy an MGE Pulsar Evolution 3000 to protect our operational computers against power failures with an SNMP network management card. We would like to connect the UPS only through its network card (and not via USB or serial cable to another computer) and install the NUT software (client+server) on each machine to catch the shutdown SNMP signal from the UPS
2012 May 26
4
[Bug 50374] New: nouveau fails to obtain EDID from NV11 (nforce IGP)
https://bugs.freedesktop.org/show_bug.cgi?id=50374 Bug #: 50374 Summary: nouveau fails to obtain EDID from NV11 (nforce IGP) Classification: Unclassified Product: xorg Version: unspecified Platform: x86 (IA32) OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium Component:
2003 Jul 14
2
Creating domain users - how?
The problem is - how do I do it? It seems to be such an easy question but I've failed to find it in the documentation. (I'm trying to follow "How to Configure Samba 2.2 as a Primary Domain Controller" which I was pointed to by SWAT.) I'm guessing the solution's obvious, but if so, I hope somebody can help easily. I've used samba for a few years (so I'm not a
2010 Nov 13
3
[PATCH 1/4] Experimental IFF_ONE_QUEUE support for Linux
--- doc/tinc.conf.5.in | 3 +++ src/linux/device.c | 7 +++++++ 2 files changed, 10 insertions(+), 0 deletions(-) diff --git a/doc/tinc.conf.5.in b/doc/tinc.conf.5.in index 2bfd5fe..01f7f81 100644 --- a/doc/tinc.conf.5.in +++ b/doc/tinc.conf.5.in @@ -255,6 +255,9 @@ a lookup if your DNS server is not responding. This does not affect resolving hostnames to IP addresses from the host