Displaying 16 results from an estimated 16 matches similar to: "I need something about the source explain."
2008 Sep 01
1
the field ttl in struct referral doesn't work
In samba source code, the file "source\include\msdfs.h" defines a struct named referral.In this struct, there is a field named ttl which is used to decide how long should client cache referral, and this field uses constant REFERRAL_TTL(#define REFERRAL_TTL 600) as default.My problem is when i set REFERRAL_TTL to be 10, it doesn't work.
2001 Jan 18
1
Announcement: PRNGD 0.9.0 available
Hi!
I have just made the 0.9.0 release of PRNGD available.
PRNGD is the Pseudo Random Number Generator Daemon.
It has an EGD compatible interface and is designed to provide entropy
on systems not having /dev/*random devices.
Software supporting EGD style entropy requests are openssh, Apache/mod_ssl,
Postfix/TLS... Automatic querying of EGD sockets at fixed locations has
been introduced in the
2008 Apr 18
1
smbd in hybrid mode
Quoting Weiser, Johann (johann.weiser@siemens.com):
> There is this really fancy sentence in the smb.conf man page: "It is
> possible to use smbd in a hybrid mode where it is offers both user and
> share level security under different NetBIOS aliases."
>
> There are a number of question here in this mailing list around this
> sentence and the answers are usually to
2009 Feb 19
2
[LLVMdev] Parametric polymorphism
> The same can be said of closures, garbage collection and a dozen other
> features that also cannot feasibly be added to LLVM.
>
> The only logical solution is to build a HLVM on top of LLVM and share that
> between these high-level language implementations.
This is an excellent point. You have convinced me. :-)
BTW, what garbage collector are you using for your HLVM? You
2009 Feb 19
0
[LLVMdev] Parametric polymorphism
On Thursday 19 February 2009 03:31:04 DeLesley Hutchins wrote:
> > The same can be said of closures, garbage collection and a dozen other
> > features that also cannot feasibly be added to LLVM.
> >
> > The only logical solution is to build a HLVM on top of LLVM and share
> > that between these high-level language implementations.
>
> This is an excellent point.
2014 Oct 02
1
Require SMB3 encrypted transport on share level or globally
Hi,
is there an option in samba 4.1.x to have an smbd require SMB3 encrypted transport on share level? I can't seem to find anything like it.
Thanks,
--
Michael Weiser science + computing ag
Senior Systems Engineer Geschaeftsstelle Duesseldorf
Faehrstrasse 1
phone: +49 211 302 708 32 D-40221 Duesseldorf
fax: +49 211 302 708 50
2005 Jul 07
3
separate SSL certificates for pop3s and imaps
Hi,
I'm migrating a uw-imap installation to dovecot. With uw-imap I had
different SSL certificates and keys for ipop3d and imapd. How can I
configure dovecot to do the same with its pop3s and imaps services?
Thanks in advance,
--
_________________________creating IT solutions
Michael Weiser science + computing ag
bei Eisenbahn und Haefen
Postfach 11 02 63 Hagellocher Weg
2015 Feb 20
2
[LLVMdev] Writing LLVM front-end
The path of least effort, as I previously stated, is to use Boehm-GC.
Reference-counted smart pointers will require that you implement the
reference counting in your language, in the generated code. e.g. a
statement such as:
p1 = p2
really compiles into:
p1.refcount--; if (!p1.refcount) free(p1)
p1 = p2
p1.refcount++
If you want your language to be thread-safe, then the increment and
2009 Jan 06
2
smbcontrol smbd ping also answered by nmbd and winbindd
Hello,
with samba-3.0.x an "smbcontrol smbd ping" was answered by all running
smbd processes. With samba-3.2.x it is now *also* answered by nmbd and
winbindd:
[root@cs00 ~]# smbcontrol -V
Version 3.2.5
[root@cs00 ~]# for i in `smbcontrol -t 1 winbindd ping | grep PONG | awk
'{ print $4}'` ; do pstree -p | grep $i ; done
winbindd(29908) - winbindd(29909)
[root@cs00 ~]#
2012 Feb 14
1
[LLVMdev] Static slicer and other useful stuff
On 02/14/2012 07:26 AM, Evan Cheng wrote:
> Hi js,
>
> On Feb 13, 2012, at 8:49 AM, Jiri Slaby <jirislaby at gmail.com> wrote:
>
>> Hello,
>>
>> we, at the Masaryk University, have developed an interprocedural static
>> slicer with other useful stuff. This includes Andersen's points-to
>> analysis, accurate call-graph, modifies relations.
2013 Apr 27
0
[LLVMdev] GSoC Proposal: Inter-Procedure Program Slicing in LLVM
Hi all,
This is a GSoC 2013 proposal for LLVM project. Please see the formatted
version at here:
http://pacman.cs.tsinghua.edu.cn/~liuml07/files/gsoc2013-proposal-program-slicing.pdf
Program slicing has been used in many applications, the criteria of which
is a pair of statement and variables. I would like to write an
inter-procedural program slicing pass in LLVM, which is able to calculate C
2013 Apr 27
1
[LLVMdev] GSoC Proposal: Inter-Procedure Program Slicing in LLVM
Hi all,
This is a GSoC 2013 proposal for LLVM project. Please see the formatted version at here: http://pacman.cs.tsinghua.edu.cn/~liuml07/files/gsoc2013-proposal-program-slicing.pdf
Program slicing has been used in many applications, the criteria of which is a pair of statement and variables. I would like to write an inter-procedural program slicing pass in LLVM, which is able to calculate C
2004 Aug 06
0
ices problem with some mp3s -- update
Hi everyone!
I just did some tests, and hopefully this information
will help someone figure out where the problem lies.
I made mp3s at 32, 40, 48, 56, 64, 80, and 96 kbps.
Each of those was done at 16, 22.05, 24, 32, 44.1, and
48 khz.
Everything worked for 22.5, 24, 44.2, and 48 khz.
16 khz and 32 khz did not work at 40, 48, 56, 80, and
96 kbps, but did work just fine at 32 kbps and 64
kbps.
2013 May 02
2
[LLVMdev] GSoC Proposal: Inter-Procedure Program Slicing in LLVM
Hi all,
I had a second thought of the dynamic slicing, as well as the source code
generating.
Firstly, the dynamic slicing is very useful to software community (I'll
illustrate more in the refined proposal later), but it's already
implemented by Swarup and John Criswell from UIUC. The static slicing code
has been released as Giri project in LLVM, and they would kindly release
the dynamic
2013 Mar 26
0
[LLVMdev] How to slice the source code?
Hi,
maybe you can have a look at the CReduce project:
http://embed.cs.utah.edu/creduce/
This project implements many source-to-source transformations of C
programs, e.g. removing functions, changing variable names, deleting
branches in if-statements, etc. Some of these are purely based on the
source code, other use the Clang frontend.
Hope this helps,
Jonas
On Sun, Mar 17, 2013 at 7:25 PM,
2013 Mar 17
2
[LLVMdev] How to slice the source code?
Hi all,
I'm doing the program slicing [1] in LLVM. Now I implemented the Weiser's
algorithm [2] in a simple way by writing a plugin to analyze the IR. My
final goal is to slice the source code, thus I recorded all the lines of
source code to be sliced. The last step is to delete the lines which are
not in the program slice. However, I met a problem when deleting the source
code directly: