Changeset 740 for vendor/current/source4/lib/com
- Timestamp:
- Nov 14, 2012, 12:59:34 PM (13 years ago)
- Location:
- vendor/current/source4/lib/com
- Files:
-
- 1 added
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source4/lib/com/dcom/main.c
r414 r740 172 172 return dcerpc_pipe_connect(ctx->event_ctx, p, "ncalrpc", 173 173 &ndr_table_IRemoteActivation, 174 174 dcom_get_server_credentials(ctx, NULL), ctx->event_ctx, ctx->lp_ctx); 175 175 } 176 176 loc_ctx = talloc_new(ctx); … … 183 183 status = dcerpc_pipe_connect_b(ctx->event_ctx, p, bd, 184 184 &ndr_table_IRemoteActivation, 185 185 dcom_get_server_credentials(ctx, bd->host), ctx->event_ctx, ctx->lp_ctx); 186 186 goto end; 187 187 } … … 705 705 return; 706 706 } 707 707 /*TODO: FIXME - for now this unused anyway */ 708 708 req = dcerpc_ndr_request_send(p, &s->d->obj.u_objref.u_standard.std.ipid, s->table, s->opnum, s, s->r); 709 709 composite_continue_rpc(c, req, s->continuation, c); -
vendor/current/source4/lib/com/main.c
r414 r740 53 53 54 54 /* Run IClassFactory::CreateInstance() */ 55 error = IClassFactory_CreateInstance(factory, ctx, NULL, &classfact_iid, &iunk);55 error = IClassFactory_CreateInstance(factory, ctx, NULL, &classfact_iid, (struct MInterfacePointer *) &iunk); 56 56 if (!W_ERROR_IS_OK(error)) { 57 57 DEBUG(3, ("Error while calling IClassFactory::CreateInstance : %s\n", win_errstr(error))); -
vendor/current/source4/lib/com/pycom.c
r414 r740 18 18 */ 19 19 20 #include <Python.h> 20 21 #include "includes.h" 21 #include <Python.h>22 22 #include "lib/com/com.h" 23 23 #include "librpc/ndr/libndr.h" 24 24 #include "libcli/util/pyerrors.h" 25 26 #ifndef Py_RETURN_NONE27 #define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None28 #endif29 25 30 26 static struct com_context *py_com_ctx = NULL; /* FIXME: evil global */
Note:
See TracChangeset
for help on using the changeset viewer.