Skip to content
Permalink
1.9.2-mpi
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
/* Copyright (c) 2019, SWITCH */
/* See LICENSE for licensing information. */
#ifndef _REWRITE_H
#define _REWRITE_H
#include <regex.h>
#include "list.h"
#include "radmsg.h"
struct modattr {
uint8_t t;
uint32_t vendor;
char *replacement;
regex_t *regex;
};
struct rewrite {
uint8_t whitelist_mode;
uint8_t *removeattrs; /*NULL terminated*/
uint32_t *removevendorattrs; /*NULL terminated*/
struct list *addattrs; /*struct tlv*/
struct list *modattrs; /*struct modattr*/
struct list *modvattrs; /*struct modattr*/
struct list *supattrs; /*struct tlv*/
};
void addrewrite(char *value, uint8_t whitelist_mode, char **rmattrs, char **rmvattrs, char **addattrs,
char **addvattrs, char **modattrs, char **modvattrs, char **supattrs, char** supvattrs);
int dorewrite(struct radmsg *msg, struct rewrite *rewrite);
struct modattr *extractmodattr(char *nameval);
struct rewrite *getrewrite(char *alt1, char *alt2);
int dorewritemodattr(struct tlv *attr, struct modattr *modattr);
int addvendorattr(struct radmsg *msg, uint32_t vendor, struct tlv *attr);
#endif /*_REWRITE_H*/
/* Local Variables: */
/* c-file-style: "stroustrup" */
/* End: */