diff --git a/catgconf.c b/catgconf.c index 945815663e8f422da7f5aa948803700e251c05f7..650a0e9a9ce543b81710eab78799e7bd84d9b414 100644 --- a/catgconf.c +++ b/catgconf.c @@ -67,3 +67,7 @@ usage: debug(DBG_ERR, "Usage:\n%s [ -c ] configfile", argv[0]); exit(1); } + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/debug.c b/debug.c index 6943090b1d19b7de87d5b50e8a8c6271a4339572..b8c7ed17f4252a8ab88b3e50b00873e69ac0bb5a 100644 --- a/debug.c +++ b/debug.c @@ -177,3 +177,7 @@ void debugx(int status, uint8_t level, char *format, ...) { } exit(status); } + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/debug.h b/debug.h index a089258d4130af730d91ecdbd6131c9854decc72..be37a54e39407f2ff09f7e05d790f1107d19aee8 100644 --- a/debug.h +++ b/debug.h @@ -23,3 +23,7 @@ void debug(uint8_t level, char *format, ...); void debugx(int status, uint8_t level, char *format, ...); int debug_set_destination(char *dest); void debug_reopen_log(); + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/dtls.c b/dtls.c index ef6c41a936e0789c110297abdec288cf31cb61e4..d99c55de585299adc2a4c696551d4cf900a36fc4 100644 --- a/dtls.c +++ b/dtls.c @@ -709,3 +709,7 @@ const struct protodefs *dtlsinit(uint8_t h) { return NULL; } #endif + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/dtls.h b/dtls.h index 771aaefd092f8f8e464f3f675d906bdf73c833b9..3426e638a7d2b4b1acdf5a9351900427f954eb75 100644 --- a/dtls.h +++ b/dtls.h @@ -7,3 +7,7 @@ */ const struct protodefs *dtlsinit(uint8_t h); + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/gconfig.c b/gconfig.c index 6009386a2ba0134591fa3e69c045a5d70f65a7ab..b7107aa652213a58af500c9c08f1f15314c78608 100644 --- a/gconfig.c +++ b/gconfig.c @@ -545,3 +545,7 @@ errexit: free(val); return 0; } + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/gconfig.h b/gconfig.h index 4861d5f0b086e68352f47bf3674b31d65b6c6d44..463ebdfddca8867804527e55bea1ef5abb6ff8fd 100644 --- a/gconfig.h +++ b/gconfig.h @@ -23,3 +23,7 @@ int popgconf(struct gconffile **cf); void freegconfmstr(char **mstr); void freegconf(struct gconffile **cf); struct gconffile *openconfigfile(const char *file); + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/hash.c b/hash.c index e5d5881d58005bcf85b475c78184061e714fccd0..fd3c04b1464a09b7c98bee3ec670fc2e93c9c93c 100644 --- a/hash.c +++ b/hash.c @@ -130,3 +130,7 @@ struct hash_entry *hash_next(struct hash_entry *entry) { e->next = (struct list_node *)entry->next->next; return e; } + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/hash.h b/hash.h index d45110574782df74b3571473ed5e63c5226e1ccc..48f54a3353deb5e6a5f6358edaba04a7e549e205 100644 --- a/hash.h +++ b/hash.h @@ -42,3 +42,7 @@ struct hash_entry *hash_first(struct hash *hash); /* returns the next entry after the argument */ struct hash_entry *hash_next(struct hash_entry *entry); + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/hostport.c b/hostport.c index d68208a9409e4ff2728d3e64b8b656a80d675e5d..54c1d7465cd5a247a0ae970e3d3a7840fda54680 100644 --- a/hostport.c +++ b/hostport.c @@ -305,3 +305,7 @@ int connecttcphostlist(struct list *hostports, struct addrinfo *src) { debug(DBG_ERR, "connecttcphostlist: failed"); return -1; } + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/hostport.h b/hostport.h index 04add64dafc30862eec6aa9b029bc02a306a6c39..425bb8f5805d193b7584f313b48f4a41314be5cf 100644 --- a/hostport.h +++ b/hostport.h @@ -22,3 +22,7 @@ int resolvehostports(struct list *hostports, int socktype); struct addrinfo *resolvepassiveaddrinfo(char *hostport, char *default_port, int socktype); int addressmatches(struct list *hostports, struct sockaddr *addr, uint8_t checkport); int connecttcphostlist(struct list *hostports, struct addrinfo *src); + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/list.c b/list.c index 5bfea67dce8f72bc638cdbda2399f68c1105562f..58ab7aa43565922c6dfe980173ecc0e9ad17292a 100644 --- a/list.c +++ b/list.c @@ -117,3 +117,7 @@ struct list_node *list_next(struct list_node *node) { uint32_t list_count(struct list *list) { return list->count; } + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/list.h b/list.h index 6b165d33eb8f3e7429a61b8e559dc867cbf502ae..80c0128d8e99fb547cfe179cbc97c28e8572fc88 100644 --- a/list.h +++ b/list.h @@ -45,3 +45,7 @@ struct list_node *list_next(struct list_node *node); /* returns number of nodes */ uint32_t list_count(struct list *list); + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/radmsg.c b/radmsg.c index e2d4cf2f55008059c99307f52edd8e20d0e129c2..0a46e71442d11df77be922851115e2e4b77b7a4e 100644 --- a/radmsg.c +++ b/radmsg.c @@ -312,3 +312,7 @@ struct radmsg *buf2radmsg(uint8_t *buf, uint8_t *secret, uint8_t *rqauth) { } return msg; } + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/radmsg.h b/radmsg.h index 99364dcf5c3a524651d583f2366e154af8731c3d..8219a5cd722897d14b7f4341979cc0b8e91dc775 100644 --- a/radmsg.h +++ b/radmsg.h @@ -39,3 +39,7 @@ int radmsg_add(struct radmsg *, struct tlv *); struct tlv *radmsg_gettype(struct radmsg *, uint8_t); uint8_t *radmsg2buf(struct radmsg *msg, uint8_t *); struct radmsg *buf2radmsg(uint8_t *, uint8_t *, uint8_t *); + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/radsecproxy.c b/radsecproxy.c index 350fcb2441efe5aedfffb0bf4bde532ceeea2c9c..7a8b5e260f18dad2787f6adf90871d9a35acf781 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -3198,3 +3198,7 @@ int main(int argc, char **argv) { for (;;) sleep(1000); } + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/radsecproxy.h b/radsecproxy.h index 314c0004f4b0ef289665b0ac35a1e03f36175082..4601259b43c6eb3f19ec5f9bdd7670d99293b981 100644 --- a/radsecproxy.h +++ b/radsecproxy.h @@ -209,3 +209,7 @@ void freerq(struct request *rq); int radsrv(struct request *rq); void replyh(struct server *server, unsigned char *buf); struct addrinfo *resolve_hostport_addrinfo(uint8_t type, char *hostport); + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/tcp.c b/tcp.c index c04309d1b5a6ce5a994938591561dcaa9503cfb9..8d559414e591a40f5a87d47140e45e82fbd622c7 100644 --- a/tcp.c +++ b/tcp.c @@ -372,3 +372,7 @@ const struct protodefs *tcpinit(uint8_t h) { return NULL; } #endif + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/tcp.h b/tcp.h index c9b653caf5584339257a3ed965b2bb5fbbe4f8f4..c388895a7909955ef44e65e43e61281a35afea7c 100644 --- a/tcp.h +++ b/tcp.h @@ -7,3 +7,7 @@ */ const struct protodefs *tcpinit(uint8_t h); + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/tls.c b/tls.c index 1d8b14c1898e18ca5f0a1ad9cd1f43f1ca838f5b..f79529ff99c3fe5b4316adcf17ebffd375f065f1 100644 --- a/tls.c +++ b/tls.c @@ -473,3 +473,7 @@ const struct protodefs *tlsinit(uint8_t h) { return NULL; } #endif + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/tls.h b/tls.h index 2a8831561cdeba64295ebb7b9e2219110d14e4d3..1a8735ea5d9ed21f200fd11417c4df50beba097c 100644 --- a/tls.h +++ b/tls.h @@ -7,3 +7,7 @@ */ const struct protodefs *tlsinit(uint8_t h); + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/tlscommon.c b/tlscommon.c index 40ea180210e72cac1654ff57ac71807dbec5b03c..6d36ebbb5528fde6534d7865465b7a8baccbfcc3 100644 --- a/tlscommon.c +++ b/tlscommon.c @@ -635,3 +635,7 @@ int addmatchcertattr(struct clsrvconf *conf) { static void tlsdummy() { } #endif + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/tlscommon.h b/tlscommon.h index 97388e4ad6af09a114064f9faab7438cd3966eb5..084cb1c0e6b49e9f405a957115c9a4aa4d31ae83 100644 --- a/tlscommon.h +++ b/tlscommon.h @@ -33,3 +33,7 @@ int verifyconfcert(X509 *cert, struct clsrvconf *conf); int conftls_cb(struct gconffile **cf, void *arg, char *block, char *opt, char *val); int addmatchcertattr(struct clsrvconf *conf); #endif + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/tlv11.c b/tlv11.c index d5d66aa68c18591e18232beda445bba0053b81c0..c609f4eafad9d9e8dc3b80e1d3a737dbee1a7eb7 100644 --- a/tlv11.c +++ b/tlv11.c @@ -120,3 +120,7 @@ uint8_t *tlv2buf(uint8_t *p, struct tlv *tlv) { } return p; } + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/tlv11.h b/tlv11.h index 8a2c601ded982ed1409d125a4d065403ca985206..d85f1fa94a6e06fedec90fef7896dc22276f61b9 100644 --- a/tlv11.h +++ b/tlv11.h @@ -21,3 +21,7 @@ void freetlvlist(struct list *); void rmtlv(struct list *, uint8_t); uint8_t *tlv2str(struct tlv *tlv); uint8_t *tlv2buf(uint8_t *, struct tlv *tlv); + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/udp.c b/udp.c index ce574940dc5269045619abf9dbd00c46e29aa28f..4740fd0830f785fecdb5c864cc264de885329b89 100644 --- a/udp.c +++ b/udp.c @@ -366,3 +366,7 @@ const struct protodefs *udpinit(uint8_t h) { return NULL; } #endif + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/udp.h b/udp.h index 3d4e02d118ef400bfce806a4386f846e5ee705c7..8f26e15a6f40907f48fcc33b93a2c3dd5c9addc3 100644 --- a/udp.h +++ b/udp.h @@ -7,3 +7,7 @@ */ const struct protodefs *udpinit(uint8_t h); + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/util.c b/util.c index 18c79f6a64312a504c2fd871147f43845db90685..5235d8a283823a3c705beecd36221157896860bb 100644 --- a/util.c +++ b/util.c @@ -250,3 +250,7 @@ int connecttcp(struct addrinfo *addrinfo, struct addrinfo *src, uint16_t timeout } return s; } + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */ diff --git a/util.h b/util.h index 68162a46741a24a0942becd4236dd9baa7793061..d8d002c946c266ec1c20c5110ae3d2d47db27bd1 100644 --- a/util.h +++ b/util.h @@ -19,3 +19,7 @@ void disable_DF_bit(int socket, struct addrinfo *res); int bindtoaddr(struct addrinfo *addrinfo, int family, int reuse, int v6only); int connecttcp(struct addrinfo *addrinfo, struct addrinfo *src, uint16_t timeout); + +/* Local Variables: */ +/* c-file-style: "stroustrup" */ +/* End: */