summaryrefslogtreecommitdiffstats
path: root/include/ruby/encoding.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-04-30 06:27:51 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-04-30 06:27:51 +0000
commitc6007a7d8295838e68fd4c83f999130e55d3440b (patch)
treeb3d19132c80b838535cd5126b5a69c4f8546b1ce /include/ruby/encoding.h
parent01c318cd8396bf0ab03bacfe94a7fc4109120f56 (diff)
downloadruby-c6007a7d8295838e68fd4c83f999130e55d3440b.tar.gz
ruby-c6007a7d8295838e68fd4c83f999130e55d3440b.tar.xz
ruby-c6007a7d8295838e68fd4c83f999130e55d3440b.zip
* enc/trans/utf8_mac.trans: get rid of a 1.9 feature for cross
compile. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23309 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby/encoding.h')
0 files changed, 0 insertions, 0 deletions
RANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ #ifndef _SUDOSRV_PRIVATE_H_ #define _SUDOSRV_PRIVATE_H_ #define CONFDB_SUDO_CONF_ENTRY "config/sudo" #ifndef SSS_SUDO_SERVICE_PIPE #define SSS_SUDO_SERVICE_PIPE "unix:path=" PIPE_PATH "/sudo" #endif #ifndef SUDO_SERVER_INTERFACE #define SUDO_SERVER_INTERFACE "org.freedesktop.sssd.sudo" #endif #ifndef SUDO_SERVER_PATH #define SUDO_SERVER_PATH "/org/freedesktop/sssd/sudo" #endif #ifndef SUDO_METHOD_QUERY #define SUDO_METHOD_QUERY "queryService" #endif static int sudo_query_validation(DBusMessage *message, struct sbus_connection *conn); struct sbus_method sudo_methods[] = { { SUDO_METHOD_QUERY, sudo_query_validation }, { NULL, NULL } }; struct sbus_interface sudo_interface = { SUDO_SERVER_INTERFACE, SUDO_SERVER_PATH, SBUS_DEFAULT_VTABLE, sudo_methods, NULL }; struct sudo_ctx { struct tevent_context *ev; struct confdb_ctx *cdb; struct sbus_connection *mon_conn; struct sbus_connection *sbus_srv; size_t check_online_ref_count; }; struct sudo_client { struct sudo_ctx *sudoctx; struct sbus_connection *conn; struct tevent_timer *timeout; bool initialized; }; #endif