Processing Module Parameters (Cont.) Here is an example of processing module parameters. We want to accept two parameters, both of which serve as boolean flags, and thus accept integer values of 0 or 1. /* these variables will host the values of tour parameters. */ static int hijack_sys_unlink = 0; static int hijack_sys_open = 0; /* define the parameters we support. */ MODULE_PARM(hijack_sys_open,"0-1i"); MODULE_PARM(hijack_sys_unlink,"0-1i"); Note that we must supply default values for our variables, as the module parameters are optional, and do not have to be supplied by the user of the module.