Displaying 1 result from an estimated 1 matches for "childarg".
2004 Jan 01
1
[PATCH] Add winbind-backed NTLMSSP support to Cyrus-SASL
...unsigned clientinlen,
+ const char **serverout,
+ unsigned *serveroutlen,
+ sasl_out_params_t *oparams)
+{
+ struct gssspnego_context *context =
+ (struct gssspnego_context *)conn_context;
+
+ unsigned char childbuf[1025];
+ unsigned childbuflen;
+
+ unsigned char *childarg;
+ unsigned base64len;
+
+ static unsigned char bin[1025];
+
+ int result;
+
+ if (clientinlen == 0) {
+
+ /* This should only happen on the first request, we
+ need the initial mechanism offer from the child. */
+
+ strncpy(childbuf, "YR", sizeof(childbuf)-1);
+ chil...