Displaying 7 results from an estimated 7 matches for "session_setup".
2008 Nov 03
1
need some help
Hi ,
> df
Session_Setup DCT FwdDataVols_bin counts Comp
1 User_Initiated NoRLL 1 5058 User_Initiated+NoRLL+1
2 User_Initiated NoRLL 2 584 User_Initiated+NoRLL+2
3 User_Initiated NoRLL 3 191 User_Initiated+NoRLL+3
4 User_Initiated NoRLL...
2008 Nov 06
2
need help in plotting barchart
Df contains
Session_Setup DCT RevDataVols_bin counts
comp
1 Session_Setup RLL 1 NA
Session_Setup+RLL+1
2 Session_Setup RLL 2 NA
Session_Setup+RLL+2
3 Session_Setup RLL 3 NA
Session_Setup+RLL+3
4 Session_Setup RLL 4...
2008 Nov 05
1
FW: need some help
Hi ,
> df
Session_Setup DCT FwdDataVols_bin counts Comp
1 User_Initiated NoRLL 1 5058 User_Initiated+NoRLL+1
2 User_Initiated NoRLL 2 584 User_Initiated+NoRLL+2
3 User_Initiated NoRLL 3 191 User_Initiated+NoRLL+3
4 User_Initiated NoRLL...
2008 Nov 13
2
(no subject)
Hi,
Browse[1]> d4
EVDO_Rev Session_Setup FCA bin counts
50 NA 0 5 1 1
51 NA 0 5 2 1
52 NA 0 5 3 1
53 NA 0 5 4 1
54 NA 0 5 5 1
55 NA 0 5 6 1
56 NA 0 5...
2008 Nov 10
1
is there any way to apply mulitiple conditions in subset function
Hi All,
Let say
> df
Session_Setup DCT FwdDataVols_bin counts
761 0 1 1 87162
762 0 1 2 11495
763 0 1 3 3986
764 0 1 4 1583
765 0 1 5 920
766 0 1 6...
2004 Apr 01
3
[Bug 830] Check immediate EOF coming on stdin
http://bugzilla.mindrot.org/show_bug.cgi?id=830
Summary: Check immediate EOF coming on stdin
Product: Portable OpenSSH
Version: 3.8p1
Platform: Other
OS/Version: other
Status: NEW
Severity: minor
Priority: P2
Component: ssh
AssignedTo: openssh-bugs at mindrot.org
ReportedBy: ignasi.roca at
2003 May 21
1
python bindings api
...he python binding api in the samba-3.0alpha24
snapshot. In trying to get the security descriptor of a file, I have the
following bit of code:
from samba import smb
creds = {...} # domain,username,password
cnn = smb.connect("svr1")
cnn.session_request("svr1")
cnn.negprot()
cnn.session_setup(creds)
cnn.tconx("c$")
fnum = cnn.nt_create_andx("boot.ini", FLAGS) # FLAGS = 1
secdesc = cnn.query_secdesc(fnum)
Which raises the error:
prs_mem_get: reading data of size 2 would overrun buffer.
Failed to parse secdesc
Traceback (most recent call last):
File "<stdin...