Displaying 3 results from an estimated 3 matches for "cp_add_dot".
2016 Jan 07
2
Domain name search path use during PXE booting
...st completed domain string */
+ const uint8_t *cpp; /* copy pointer used to follow pointers */
+ int pcount; /* number of pointers visited in current point copy */
+ int len;
+ enum { START, LABEL, ADD_LABEL, ADD_DOT, CP_LEN_1, CP_LABEL, CP_ADD_LABEL,
+ CP_ADD_DOT, CP_LEN_2, FINISH, END } state, postcpstate;
+
+ state = START;
+ while (state != END) {
+ switch (state) {
+ case START:
+ cpp = udata;
+ state = LABEL;
+ break;
+
+ case LABEL:
+ len = *inp++;
+ if ((len & 0...
2016 Jan 07
0
Domain name search path use during PXE booting
...+ const uint8_t *cpp; /* copy pointer used to follow pointers */
> + int pcount; /* number of pointers visited in current
> point copy */
> + int len;
> + enum { START, LABEL, ADD_LABEL, ADD_DOT, CP_LEN_1, CP_LABEL,
> CP_ADD_LABEL,
> + CP_ADD_DOT, CP_LEN_2, FINISH, END } state, postcpstate;
> +
> + state = START;
> + while (state != END) {
> + switch (state) {
> + case START:
> + cpp = udata;
> + state = LABEL;
> + break;
> +
> + case LABEL:
> +...
2016 Jan 08
1
Domain name search path use during PXE booting
.../* copy pointer used to follow pointers */
>> + int pcount; /* number of pointers visited in current
>> point copy */
>> + int len;
>> + enum { START, LABEL, ADD_LABEL, ADD_DOT, CP_LEN_1, CP_LABEL,
>> CP_ADD_LABEL,
>> + CP_ADD_DOT, CP_LEN_2, FINISH, END } state, postcpstate;
>> +
>> + state = START;
>> + while (state != END) {
>> + switch (state) {
>> + case START:
>> + cpp = udata;
>> + state = LABEL;
>> + break;
>> +...