search for: acc1

Displaying 20 results from an estimated 28 matches for "acc1".

Did you mean: acc
2008 Jan 31
3
Controling vpn access
...accounting because y want to control the remote vpn access(pptpd) throught shorewall. Which is the way to control vpn /ip/access in /etc/shorewall/accounting? Is my example correct? and if i have diferents vpn wil be with ppp1, ppp2 .. ? or i have to control throght shorewall zone vpn1,vpn2,... acc1-out:COUNT    account-ip    -    ppp0:192.168.1.100 acc1-in:COUNT    account-ip    ppp0:192.168.1.100    - DONE    acc1 # #acc2-in:COUNT    account-ip    eth0    195.8.169.2 #acc2-out:COUNT    account-ip    195.8.169.2    eth0 #DONE    acc2 -- Javier Martínez Technical Manager ----------...
2015 Mar 13
1
[RFC PATCH v3] Intrinsics/RTCD related fixes. Mostly x86.
...ot; -#if defined(OPUS_X86_MAY_HAVE_SSE4_1) -#include <smmintrin.h> -#include "x86cpu.h" - -opus_val32 celt_inner_prod_sse4_1(const opus_val16 *x, const opus_val16 *y, - int N) -{ - opus_int i, dataSize16; - opus_int32 sum; - __m128i inVec1_76543210, inVec1_FEDCBA98, acc1; - __m128i inVec2_76543210, inVec2_FEDCBA98, acc2; - __m128i inVec1_3210, inVec2_3210; - - sum = 0; - dataSize16 = N & ~15; - - acc1 = _mm_setzero_si128(); - acc2 = _mm_setzero_si128(); - - for (i=0;i<dataSize16;i+=16) { - inVec1_76543210 = _mm_loadu_si128((__m128...
2015 Mar 12
1
[RFC PATCHv2] Intrinsics/RTCD related fixes. Mostly x86.
...ot; -#if defined(OPUS_X86_MAY_HAVE_SSE4_1) -#include <smmintrin.h> -#include "x86cpu.h" - -opus_val32 celt_inner_prod_sse4_1(const opus_val16 *x, const opus_val16 *y, - int N) -{ - opus_int i, dataSize16; - opus_int32 sum; - __m128i inVec1_76543210, inVec1_FEDCBA98, acc1; - __m128i inVec2_76543210, inVec2_FEDCBA98, acc2; - __m128i inVec1_3210, inVec2_3210; - - sum = 0; - dataSize16 = N & ~15; - - acc1 = _mm_setzero_si128(); - acc2 = _mm_setzero_si128(); - - for (i=0;i<dataSize16;i+=16) { - inVec1_76543210 = _mm_loadu_si128((__m128...
2009 Aug 24
0
SIP doesn't recognize hangup
...problem and I don't know how to solve it. My configuration is the following: ISDN LINE ---> PATTON (SIP) ---> ASTERISK in asterisk my sip.conf for sip patton account is the following: [general] port=5060 bindaddr=0.0.0.0 context=default language=it limitonpeers=yes notifyringing=yes [acc1] context=fromPSTN_Ext1 type=friend qualifiy=yes host=dynamic username=acc1 secret=1234 qualify=yes Now I want to receive a call on acc1 and then redirect it again on acc1 through PSTN, in the following way: [fromPSTN_Ext1] exten => _X.,1,Noop(start call and redirect call through PSTN) exten =&...
2015 Mar 02
13
Patch cleaning up Opus x86 intrinsics configury
The attached patch cleans up Opus's x86 intrinsics configury. It: * Makes ?enable-intrinsics work with clang and other non-GCC compilers * Enables RTCD for the floating-point-mode SSE code in Celt. * Disables use of RTCD in cases where the compiler targets an instruction set by default. * Enables the SSE4.1 Silk optimizations that apply to the common parts of Silk when Opus is built in
2023 Feb 26
1
Cannot reach documentation site
...;> doc.dovecot.org does not have a DNS entry. It worked a few days ago, but not now. > [chris at newpop ~]$ host doc.dovecot.org > doc.dovecot.org is an alias for talvi.dovecot.org. > talvi.dovecot.org has address 94.237.105.223 > talvi.dovecot.org has IPv6 address 2a04:3545:1000:720:acc1:5bff:fe5e:459 $ host doc.dovecot.org doc.dovecot.org is an alias for talvi.dovecot.org. talvi.dovecot.org has address 94.237.105.223 talvi.dovecot.org has IPv6 address 2a04:3545:1000:720:acc1:5bff:fe5e:459
2015 Mar 18
5
[RFC PATCH v1 0/4] Enable aarch64 intrinsics/Ne10
Hi All, Since I continue to base my work on top of Jonathan's patch, and my previous Ne10 fft/ifft/mdct_forward/backward patches, I thought it would be better to just post all new patches as a patch series. Please let me know if anyone disagrees with this approach. You can see wip branch of all latest patches at https://git.linaro.org/people/viswanath.puttagunta/opus.git Branch:
2015 Mar 31
6
[RFC PATCH v1 0/5] aarch64: celt_pitch_xcorr: Fixed point series
Hi Timothy, As I mentioned earlier [1], I now fixed compile issues with fixed point and resubmitting the patch. I also have new patch that does intrinsics optimizations for celt_pitch_xcorr targetting aarch64. You can find my latest work-in-progress branch at [2] For reference, you can use the Ne10 pre-built libraries at [3] Note that I am working with Phil at ARM to get my patch at [4]
2015 May 08
8
[RFC PATCH v2]: Ne10 fft fixed and previous 0/8]
Hi All, As per Timothy's suggestion, disabling mdct_forward for fixed point. Only effects armv7,armv8: Extend fixed fft NE10 optimizations to mdct Rest of patches are same as in [1] For reference, latest wip code for opus is at [2] Still working with NE10 team at ARM to get corner cases of mdct_forward. Will update with another patch when issue in NE10 gets fixed. Regards, Vish [1]:
2015 May 15
11
[RFC V3 0/8] Ne10 fft fixed and previous
Hi All, Changes from RFC v2 [1] armv7,armv8: Extend fixed fft NE10 optimizations to mdct - Overflow issue fixed by Phil at ARM. Ne10 wip at [2]. Should be upstream soon. - So, re-enabled using fixed fft for mdct_forward which was disabled in RFCv2 armv7,armv8: Optimize fixed point fft using NE10 library - Thanks to Jonathan Lennox, fixed some build fixes on iOS and some copy-paste errors Rest
2015 Apr 28
10
[RFC PATCH v1 0/8] Ne10 fft fixed and previous
Hello Timothy / Jean-Marc / opus-dev, This patch series is follow up on work I posted on [1]. In addition to what was posted on [1], this patch series mainly integrates Fixed point FFT implementations in NE10 library into opus. You can view my opus wip code at [2]. Note that while I found some issues both with the NE10 library(fixed fft) and with Linaro toolchain (armv8 intrinsics), the work
2017 Aug 14
2
Metrics service
Hi! All of you running dovecot v2.2.27 or later, are now able to take advantage of our free metrics service at https://metrics.dovecot.org. To use it, set auth_stats=yes mail_plugins = $mail_plugins stats stats_carbon_server = 94.237.81.63 # or stats_carbon_server = [2a04:3542:1000:910:acc1:5bff:fe5e:8c2] stats_carbon_name = some-fancy-identifier-without-a-dot plugin { stats_refresh = 30s } And your server should become listed once someone logs in. Note that it will only work from backends today, it will not work from proxies or directors. This service is provided for free, and w...
2019 Dec 04
2
some error about dovecot when compile
when i build dovecot in my computer, something has occured like below: root at 2030c8624e88:/dovecot-2.3.9# ./autogen.sh --2019-12-04 10:49:53-- https://www.dovecot.org/tmp/wiki2-export.tar.gz Resolving www.dovecot.org (www.dovecot.org)... 94.237.12.234, 2a04:3545:1000:720:acc1:5bff:fe5e:4e9 Connecting to www.dovecot.org (www.dovecot.org)|94.237.12.234|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 446263 (436K) [application/x-gzip] Saving to: 'wiki2-export.tar.gz' wiki2-export.tar.gz 100%[===============================>] 435.80...
2020 Feb 12
2
Dovecot v2.3.9.3 released
We are pleased to release v2.3.9.3 of Dovecot. Please find it from locations below https://dovecot.org/releases/2.3/dovecot-2.3.9.3.tar.gz https://dovecot.org/releases/2.3/dovecot-2.3.9.3.tar.gz.sig Binary packages in https://repo.dovecot.org/ Docker images in https://hub.docker.com/r/dovecot/dovecot --- v2.3.9.3 2019-02-12? Aki Tuomi <aki.tuomi at open-xchange.com> ??? * CVE-2020-7046:
2020 Feb 12
2
Dovecot v2.3.9.3 released
We are pleased to release v2.3.9.3 of Dovecot. Please find it from locations below https://dovecot.org/releases/2.3/dovecot-2.3.9.3.tar.gz https://dovecot.org/releases/2.3/dovecot-2.3.9.3.tar.gz.sig Binary packages in https://repo.dovecot.org/ Docker images in https://hub.docker.com/r/dovecot/dovecot --- v2.3.9.3 2019-02-12? Aki Tuomi <aki.tuomi at open-xchange.com> ??? * CVE-2020-7046:
2017 Aug 14
0
Metrics service
...g dovecot.conf ends with !include conf.d/*.conf !include_try local.conf I didn?t have a local.conf, so I decided that would be a good place to put this. I created it with auth_stats=yes mail_plugins = $mail_plugins stats stats_carbon_server = 94.237.81.63 stats_carbon_server = [2a04:3542:1000:910:acc1:5bff:fe5e:8c2] stats_carbon_name = RedHorseMail plugin { stats_refresh = 30s } At startup, I get error (warning?) Aug 14 10:50:38 v1 dovecot: config: Warning: /usr/local/etc/dovecot/local.conf line 2: Global setting mail_plugins won't change the setting inside an earlier filter at /usr/lo...
2008 Jan 27
18
Reporting Analisysing program
Anybody knows some graphic reporting/analysing program for shorewall 4.0.7 or i have to do it by accounting? -- Javier Martínez Technical Manager ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
2007 Dec 02
2
Optimised qmf_synth and iir_mem16
...@ sp doesn't point to the end of the stack frame from here on, but we're not @ calling anything so it shouldn't matter @ Main loop, register usage: @ r0 = xx1, r1 = xx2, r2 = a, r3 = y, r4 = M, r5 = x10, r6 = x11, r7 = x20 @ r8 = x21, r9 = [a1, a0], r10 = acc0, r11 = acc1, r12 = acc2, r14 = acc3 0: @ Outerloop mov r10, #16384 @ Init acccumulators to rounding const mov r11, #16384 mov r12, #16384 mov r14, #16384 ldrsh r5, [r0, #-4]! @ r5 = x10, r0 = &xx1[N2 - 2] ldrsh r7, [r1, #-4]! @ r7...
2019 Sep 27
2
Website Down? Not down.
Its not down, its most likely your providers DNS resolution. www.dovecot.org resolves to: ipv4 : 94.237.85.39 ipv6: 2a04:3542:1000:910:acc1:5bff:fe5e:3b83 Best Regards, D.
2020 Feb 12
0
Dovecot v2.3.9.3 released
# wget https://dovecot.org/releases/2.3/dovecot-2.3.9.3.tar.gz --2020-02-12 05:09:26-- https://dovecot.org/releases/2.3/dovecot-2.3.9.3.tar.gz Resolving dovecot.org (dovecot.org)... 94.237.12.234, 2a04:3545:1000:720:acc1:5bff:fe5e:4e9 Connecting to dovecot.org (dovecot.org)|94.237.12.234|:443... connected. HTTP request sent, awaiting response... 403 Forbidden 2020-02-12 05:09:26 ERROR 403: Forbidden. -- Best regards, Martynas Bendorius > On 2020-02-12, at 14:04, Aki Tuomi <aki.tuomi at dovecot.fi> wrote...