HomeSort by relevance Sort by last modified time
    Searched full:spistr (Results 1 - 5 of 5) sorted by null

  /external/iptables/extensions/
libip6t_ah.c 31 parse_ah_spi(const char *spistr, const char *typestr)
36 spi = strtoul(spistr, &ep, 0);
38 if ( spistr == ep )
40 "AH no valid digits in %s `%s'", typestr, spistr);
45 typestr, spistr);
47 if ( *spistr != '\0' && *ep != '\0' )
49 "AH error parsing %s `%s'", typestr, spistr);
libip6t_esp.c 27 parse_esp_spi(const char *spistr)
32 spi = strtoul(spistr, &ep, 0);
34 if ( spistr == ep ) {
36 "ESP no valid digits in spi `%s'", spistr);
40 "spi `%s' specified too big: would overflow", spistr);
42 if ( *spistr != '\0' && *ep != '\0' ) {
44 "ESP error parsing spi `%s'", spistr);
libipt_ah.c 28 parse_ah_spi(const char *spistr)
33 spi = strtoul(spistr,&ep,0) ;
35 if ( spistr == ep ) {
37 "AH no valid digits in spi `%s'", spistr);
41 "spi `%s' specified too big: would overflow", spistr);
43 if ( *spistr != '\0' && *ep != '\0' ) {
45 "AH error parsing spi `%s'", spistr);
libipt_esp.c 28 parse_esp_spi(const char *spistr)
33 spi = strtoul(spistr,&ep,0) ;
35 if ( spistr == ep ) {
37 "ESP no valid digits in spi `%s'", spistr);
41 "spi `%s' specified too big: would overflow", spistr);
43 if ( *spistr != '\0' && *ep != '\0' ) {
45 "ESP error parsing spi `%s'", spistr);
  /external/tcpdump/
print-esp.c 182 char *spistr, *foo; local
189 spistr = strsep(&spikey, "@");
191 spino = strtoul(spistr, &foo, 0);
192 if (spistr == foo || !spikey) {

Completed in 260 milliseconds