Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.package
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ayush Tiwari
slapos.package
Commits
f7ff985c
Commit
f7ff985c
authored
Sep 10, 2013
by
Jondy Zhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
netreport: get net drive information even it's not connect
parent
536d90dc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
14 deletions
+34
-14
windows/netreport/src/netuse.c
windows/netreport/src/netuse.c
+34
-14
No files found.
windows/netreport/src/netuse.c
View file @
f7ff985c
...
@@ -132,7 +132,7 @@ netuse_user_info(PyObject *self, PyObject *args)
...
@@ -132,7 +132,7 @@ netuse_user_info(PyObject *self, PyObject *args)
}
}
static
char
static
char
get_free_drive_letter
()
get_free_drive_letter
(
void
)
{
{
DWORD
bitmasks
=
GetLogicalDrives
();
DWORD
bitmasks
=
GetLogicalDrives
();
char
ch
=
'A'
;
char
ch
=
'A'
;
...
@@ -142,7 +142,7 @@ get_free_drive_letter()
...
@@ -142,7 +142,7 @@ get_free_drive_letter()
++
ch
;
++
ch
;
bitmasks
>>=
1
;
bitmasks
>>=
1
;
}
}
return
0
;
return
(
char
)
0
;
}
}
static
PyObject
*
static
PyObject
*
...
@@ -283,18 +283,36 @@ netuse_usage_report(PyObject *self, PyObject *args)
...
@@ -283,18 +283,36 @@ netuse_usage_report(PyObject *self, PyObject *args)
bitmasks
>>=
1
;
bitmasks
>>=
1
;
switch
(
GetDriveType
(
drivepath
))
{
switch
(
GetDriveType
(
drivepath
))
{
case
DRIVE_FIXED
:
case
DRIVE_REMOTE
:
case
DRIVE_REMOTE
:
break
;
break
;
case
DRIVE_FIXED
:
continue
;
default:
default:
continue
;
continue
;
}
}
/* If the network connection was made using the Microsoft LAN
* Manager network, and the calling application is running in a
* different logon session than the application that made the
* connection, a call to the WNetGetConnection function for the
* associated local device will fail. The function fails with
* ERROR_NOT_CONNECTED or ERROR_CONNECTION_UNAVAIL. This is
* because a connection made using Microsoft LAN Manager is
* visible only to applications running in the same logon session
* as the application that made the connection. (To prevent the
* call to WNetGetConnection from failing it is not sufficient for
* the application to be running in the user account that created
* the connection.)
*
* Refer to http://msdn.microsoft.com/en-us/library/windows/desktop/aa385453(v=vs.85).aspx
*
*/
dwResult
=
WNetGetConnection
(
drivename
,
dwResult
=
WNetGetConnection
(
drivename
,
szRemoteName
,
szRemoteName
,
&
cchBuff
&
cchBuff
);
);
if
(
dwResult
==
NO_ERROR
)
{
if
(
dwResult
==
NO_ERROR
||
dwResult
==
ERROR_CONNECTION_UNAVAIL
\
||
dwResult
==
ERROR_NOT_CONNECTED
)
{
if
(
serverlen
)
{
if
(
serverlen
)
{
if
((
cchBuff
<
serverlen
+
3
)
||
if
((
cchBuff
<
serverlen
+
3
)
||
(
strncmp
(
servername
,
szRemoteName
+
2
,
serverlen
)
!=
0
)
||
(
strncmp
(
servername
,
szRemoteName
+
2
,
serverlen
)
!=
0
)
||
...
@@ -304,16 +322,6 @@ netuse_usage_report(PyObject *self, PyObject *args)
...
@@ -304,16 +322,6 @@ netuse_usage_report(PyObject *self, PyObject *args)
}
}
}
}
// The device is not currently connected, but it is a persistent connection.
else
if
(
dwResult
==
ERROR_CONNECTION_UNAVAIL
)
{
continue
;
}
// The device is not a redirected device.
else
if
(
dwResult
==
ERROR_NOT_CONNECTED
)
{
continue
;
}
else
{
else
{
PyErr_Format
(
PyExc_RuntimeError
,
PyErr_Format
(
PyExc_RuntimeError
,
"A system error has occurred in WNetGetConnection: %ld"
,
"A system error has occurred in WNetGetConnection: %ld"
,
...
@@ -349,6 +357,18 @@ netuse_usage_report(PyObject *self, PyObject *args)
...
@@ -349,6 +357,18 @@ netuse_usage_report(PyObject *self, PyObject *args)
return
NULL
;
return
NULL
;
}
}
}
}
else
if
(
dwResult
==
ERROR_CONNECTION_UNAVAIL
||
dwResult
==
ERROR_NOT_CONNECTED
)
{
PyObject
*
pobj
=
Py_BuildValue
(
"ssLL"
,
drivename
,
szRemoteName
,
0L
,
0L
);
if
(
PyList_Append
(
retvalue
,
pobj
)
==
-
1
)
{
Py_XDECREF
(
retvalue
);
return
NULL
;
}
}
else
{
else
{
PyErr_Format
(
PyExc_RuntimeError
,
PyErr_Format
(
PyExc_RuntimeError
,
"A system error has occurred in GetDiskFreeSpaceEx(%s): %ld"
,
"A system error has occurred in GetDiskFreeSpaceEx(%s): %ld"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment