#include <filesys.h>
Collaboration diagram for s_dcc_notify:
Definition at line 279 of file filesys.h.
Public Member Functions | |
s_dcc_notify () | |
Public Attributes | |
bool | incomplete |
string | message |
Notify message. | |
string | name |
Public name of the file. | |
bool | notify_owner |
OWNER should be notified. | |
bool | notify_user |
User should be notified. | |
bool | secure_notify_owner |
OWNER should be notified securely (after authentication). | |
bool | secure_notify_user |
User should be notified securely (after authentication). | |
bool | unpublished |
Has not been this object published yet? |
|
Definition at line 289 of file filesys.h. References incomplete, message, name, notify_owner, notify_user, secure_notify_owner, secure_notify_user, and unpublished. 00290 { 00291 unpublished=false; 00292 incomplete=false; 00293 notify_user=false; 00294 notify_owner=false; 00295 secure_notify_user=false; 00296 secure_notify_owner=false; 00297 name=""; 00298 message=""; 00299 }
|
|
Definition at line 281 of file filesys.h. Referenced by filesys_dcc_check_for_notifies(), and s_dcc_notify(). |
|
Notify message.
Definition at line 287 of file filesys.h. Referenced by filesys_dcc_check_for_notifies(), and s_dcc_notify(). |
|
Public name of the file.
Definition at line 286 of file filesys.h. Referenced by filesys_dcc_check_for_notifies(), and s_dcc_notify(). |
|
OWNER should be notified.
Definition at line 283 of file filesys.h. Referenced by filesys_dcc_check_for_notifies(), and s_dcc_notify(). |
|
User should be notified.
Definition at line 282 of file filesys.h. Referenced by filesys_dcc_check_for_notifies(), and s_dcc_notify(). |
|
OWNER should be notified securely (after authentication).
Definition at line 285 of file filesys.h. Referenced by filesys_dcc_check_for_notifies(), and s_dcc_notify(). |
|
User should be notified securely (after authentication).
Definition at line 284 of file filesys.h. Referenced by filesys_dcc_check_for_notifies(), and s_dcc_notify(). |
|
Has not been this object published yet?
Definition at line 280 of file filesys.h. Referenced by filesys_dcc_check_for_notifies(), and s_dcc_notify(). |