Displaying 3 results from an estimated 3 matches for "access_t".
Did you mean:
access_
2007 Jan 06
1
Re: [nut-commits] svn commit r710 - in trunk: . clients server
...==============================================
> --- trunk/server/access.c (original)
> +++ trunk/server/access.c Sat Jan 6 19:39:08 2007
> @@ -25,13 +25,14 @@
> #include "common.h"
> #include "access.h"
>
> -struct acl_t *acl_head = NULL;
> -struct access_t *access_head = NULL;
> + struct acl_t *acl_head = NULL;
> + struct access_t *access_head = NULL;
>
> +#ifdef HAVE_IPV6
> /*
> * Stolen from privoxy code :]
> */
> -int mask_cmp (const struct sockaddr_storage* ip_addr, unsigned int prefix, const struct sockaddr_stora...
2007 Jan 06
3
Re: [nut-commits] svn commit r708 - in trunk: . clients server
...============================================
> --- trunk/server/access.c (original)
> +++ trunk/server/access.c Fri Jan 5 21:06:59 2007
> @@ -25,33 +25,72 @@
> #include "common.h"
> #include "access.h"
>
> - struct acl_t *acl_head = NULL;
> - struct access_t *access_head = NULL;
> +struct acl_t *acl_head = NULL;
> +struct access_t *access_head = NULL;
> +
> +/*
> + * Stolen from privoxy code :]
> + */
> +int mask_cmp (const struct sockaddr_storage* ip_addr, unsigned int prefix, const struct sockaddr_storage* net_addr) {
> + sw...
2016 Feb 10
5
Question about an error we're now starting to get on LLVM 3.8.0rc2since
...vm.o" "Debug/../dt_llvm.cpp" -I ../MarinerIP -O3 -g3 -m64 -march=core2 -MMD -MP -MF "Debug/dt_llvm.d" -MT "Debug/dt_llvm.d"
> Invoking: g++-5.2.0 Compiler
>
> Debug/../dt_llvm.cpp: In static member function âstatic llvm::Function* BREGS::selectBasicBreg(Access_t)â:
> Debug/../dt_llvm.cpp:1772:17: error: cannot convert âllvm::ilist_iterator<llvm::Argument>â to âllvm::Value*â in assignment
> pDS = argIt;
> ^
You probably want `pDS = &*argIt`, which makes the conversion from a
possibly-not-dereferenceable-iter...